/* ==========================================================================
   DESIGN SYSTEM — PÁGINA DE VENDAS 150 MARCADORES CATÓLICOS
   Estilo: Papelaria Catolica Premium & Editorial Religioso Contemporaneo
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
  /* Paleta de Cores */
  --bg-parchment: #FAF7F2;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F4EFE6;
  --bg-dark-sacred: #141E28;
  --bg-dark-card: #1D2B3A;

  --text-main: #2C3036;
  --text-muted: #626A74;
  --text-light: #EBF1F5;
  --text-dark-navy: #141E28;

  --accent-gold: #C5A059;
  --accent-gold-light: #E8D4A8;
  --accent-gold-dark: #9A7B39;
  
  --primary-green: #247A46;
  --primary-green-hover: #1C6137;
  --primary-green-glow: rgba(36, 122, 70, 0.25);

  --border-cream: #E8E2D7;
  --border-gold-subtle: rgba(197, 160, 89, 0.3);

  /* Tipografia */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sombras e Elevação */
  --shadow-sm: 0 2px 8px rgba(20, 30, 40, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 30, 40, 0.08);
  --shadow-lg: 0 16px 40px rgba(20, 30, 40, 0.12);
  --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.2);

  /* Transições e Animações */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Arredondamento */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* Reset Global & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-parchment);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Containers Layout */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 840px;
}

/* Typography Utility Classes */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark-navy);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-full);
  color: var(--accent-gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  text-align: center;
  color: var(--text-dark-navy);
}

.section-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.text-gold {
  color: var(--accent-gold);
}

.text-center {
  text-align: center;
}

/* Botões Primários e Secundários (CRO Optimized) */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #2DB562 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px var(--primary-green-glow), inset 0 1px 0 rgba(255,255,255,0.3);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(36, 122, 70, 0.4), inset 0 1px 0 rgba(255,255,255,0.4);
  background: linear-gradient(135deg, #206D3E 0%, #28A257 100%);
}

.btn-cta-primary:active {
  transform: translateY(0);
}

.btn-cta-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: rotate(30deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  20% { transform: translateX(100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

.badge-price {
  display: inline-block;
  background: rgba(36, 122, 70, 0.1);
  color: var(--primary-green);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

/* Badges de Confiança */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-green);
}
