/* ============================================
   CATÓLICO BLINDADO — Mobile-First Design System
   Premium Dark Catholic Aesthetic
   Optimized for 99% mobile traffic
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary – Deep Navy (matches mockup backgrounds) */
  --navy: #0F1B30;
  --navy-light: #162742;
  --navy-card: #1A2E4D;
  --navy-surface: #1F3558;

  /* Gold – warm liturgical gold, richer & warmer for conversion */
  --gold: #DAB740;
  --gold-light: #F5D86A;
  --gold-dark: #B8952E;
  --gold-glow: rgba(218, 183, 64, 0.35);

  /* Accent colors – refined cardinal red (more Catholic, less alarming) */
  --bordeaux: #7A2031;
  --bordeaux-deep: #401018;
  --scarlet: #C12A2A;
  --scarlet-bright: #E8423E;

  /* Neutrals */
  --white: #FFFFFF;
  --pearl: #F5F0E8;
  --text-primary: #F5F0E8;
  --text-secondary: rgba(245, 240, 232, 0.94);
  --text-muted: rgba(245, 240, 232, 0.72);

  /* CTA Green – slightly warmer for trust */
  --green-cta: #2BD96E;
  --green-dark: #1FAF55;

  /* Typography */
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing – mobile values */
  --section-padding: 48px;
  --container-padding: 18px;
  --container-max: 1100px;

  /* Borders & Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow-gold: 0 0 30px rgba(218, 183, 64, 0.28), 0 0 60px rgba(218, 183, 64, 0.14);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 700ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-padding {
  padding: var(--section-padding) 0;
  contain: layout style;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-scarlet { color: var(--scarlet-bright); }

/* ---------- Typography – Mobile-First ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
  color: var(--pearl);
}

h1 { font-size: 2rem; letter-spacing: 0.02em; }
h2 { font-size: 1.45rem; }
h3 { font-size: 1.15rem; }

p {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ---------- Particles Canvas ---------- */
#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

section { position: relative; z-index: 1; }

/* ---------- Section Divider ---------- */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--bordeaux));
  margin: 0 auto 24px;
  border-radius: 100px;
}

/* ============================================
   SECTION 1: URGENCY BAR + HERO
   ============================================ */

.urgency-bar {
  background: linear-gradient(90deg, #A82525, #7A1A1A, #A82525);
  padding: 10px 14px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 100;
  border-bottom: 2px solid rgba(255,255,255,0.12);
  line-height: 1.5;
}

.hero {
  padding: 32px 0 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #132238 0%, #172A45 35%, #152640 70%, var(--navy) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 25%, rgba(218,183,64,0.09) 0%, rgba(218,183,64,0.03) 35%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.hero h1 {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 span {
  display: block;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-text-fill-color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 12px;
  letter-spacing: 0;
}

.hero h1 span .text-scarlet {
  -webkit-text-fill-color: var(--scarlet-bright);
  font-weight: 700;
}

/* Hero mockup — clean, no frame, with glow to pop off dark bg */
.hero-mockup-frame {
  width: calc(100% + var(--container-padding) * 2 - 12px);
  margin-left: calc(var(--container-padding) * -1 + 6px);
  margin-right: calc(var(--container-padding) * -1 + 6px);
  position: relative;
}

.hero-mockup-frame::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(218,183,64,0.08) 0%, rgba(218,183,64,0.03) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-mockup {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.4)) drop-shadow(0 0 40px rgba(218,183,64,0.10));
  position: relative;
  z-index: 1;
}

/* ============================================
   CTA BUTTONS – Large touch targets for mobile
   ============================================ */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.4;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  max-width: 400px;
}

.cta-button:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(212,175,55,0.3);
}

.cta-pulse {
  position: relative;
}

.cta-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 4px 40px rgba(218,183,64,0.55), 0 0 60px rgba(218,183,64,0.18);
  opacity: 0;
  animation: ctaPulse 2.5s ease-in-out infinite;
  pointer-events: none;
  will-change: opacity;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.cta-green {
  background: linear-gradient(135deg, #2ECC71, var(--green-cta), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.cta-green:active {
  box-shadow: 0 2px 10px rgba(37,211,102,0.3);
}

.cta-green.cta-pulse::after {
  box-shadow: 0 4px 40px rgba(43,217,110,0.55), 0 0 60px rgba(43,217,110,0.18);
}

/* ============================================
   SECTION 2: PROBLEMA
   ============================================ */

.problem-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  position: relative;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}

.problem-image-container {
  margin-bottom: 28px;
}

.problem-image {
  width: 180px;
  height: 180px;
  max-width: 50vw;
  max-height: 50vw;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(212,175,55,0.3);
  box-shadow: 0 0 20px rgba(212,175,55,0.15);
}

.problem-question {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--pearl);
  margin-bottom: 28px;
  line-height: 1.4;
}

.objection-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.objection-item {
  background: rgba(178,34,34,0.1);
  border: 1px solid rgba(178,34,34,0.25);
  border-left: 4px solid var(--scarlet);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--pearl);
  text-align: left;
  backdrop-filter: blur(4px);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

.objection-item::before {
  content: '"';
  position: absolute;
  top: -2px;
  left: 10px;
  font-size: 2.2rem;
  color: rgba(178,34,34,0.35);
  font-family: Georgia, serif;
  line-height: 1;
}

.problem-pain {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 14px;
}

.problem-pain strong {
  color: var(--scarlet-bright);
  font-weight: 700;
}

/* ============================================
   SECTION 3: SOLUÇÃO + 12 OBJEÇÕES
   ============================================ */

.solution-section {
  position: relative;
}

.solution-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,175,55,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.solution-intro {
  max-width: 700px;
  margin: 0 auto 36px;
}

.solution-intro h2 { margin-bottom: 16px; }
.solution-intro p { margin-bottom: 12px; }

.objections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 28px 0;
}

.objection-card {
  background: linear-gradient(145deg, var(--navy-card), var(--navy-surface));
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.objection-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--bordeaux));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.objection-card:hover::before { transform: scaleX(1); }

.objection-card .number {
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.5;
}

.objection-card .text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.solution-verse {
  background: rgba(212,175,55,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 22px;
  margin: 32px auto;
  max-width: 600px;
  font-style: italic;
}

.solution-verse p { color: var(--pearl); font-size: 1rem; }

.solution-verse cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
}

.attack-defense {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.attack-defense-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.attack-defense-item .icon { font-size: 1.3em; }

/* ============================================
   SECTION 4: PARA QUEM É
   ============================================ */

.target-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

.target-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.target-mockup-container {
  width: 100%;
}

.target-mockup {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow-gold);
  transition: transform var(--duration-slow) var(--ease-out);
  filter: drop-shadow(0 0 30px rgba(218,183,64,0.08));
}

.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.08);
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-out);
}

.target-item .check {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.target-item span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================
   SECTION 5: ENTREGÁVEIS
   ============================================ */

.deliverables-section { position: relative; }

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 36px 0;
}

.deliverable-card {
  background: linear-gradient(145deg, var(--navy-card), var(--navy-surface));
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.deliverable-card .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.deliverable-card .card-icon {
  display: none;
}

.deliverable-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.deliverable-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.deliverable-img {
  width: 100%;
  max-width: 100%;
  margin: 12px auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  filter: drop-shadow(0 0 20px rgba(218,183,64,0.06));
}

.deliverable-img-small {
  width: 60%;
  max-width: 60%;
}

/* ============================================
   SECTION 6: PROVA SOCIAL
   ============================================ */

.social-proof-section {
  background: linear-gradient(180deg, var(--navy) 0%, rgba(64, 16, 24, 0.35) 50%, var(--navy) 100%);
}

.counter-number {
  font-family: var(--font-heading);
  font-weight: 900;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testimonial-card {
  background: rgba(13,25,41,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card::before {
  content: '★★★★★';
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pearl);
}

/* ============================================
   SECTION 7: OFERTA
   ============================================ */

.offer-section {
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(218,183,64,0.10) 0%, rgba(218,183,64,0.03) 35%, transparent 65%);
  pointer-events: none;
}

.offer-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1A2E4D, #1F3A5C);
  border: 2px solid rgba(218,183,64,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 40px rgba(218,183,64,0.12), 0 0 80px rgba(218,183,64,0.06);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(218,183,64,0.05), transparent, rgba(218,183,64,0.05));
  animation: offerRotate 10s linear infinite;
  pointer-events: none;
}

@keyframes offerRotate { 100% { transform: rotate(360deg); } }

.offer-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.offer-header h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.offer-mockup {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.offer-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.offer-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(245,240,232,0.05);
}

.offer-items li .icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.offer-pricing {
  text-align: center;
  margin: 24px 0;
  position: relative;
  z-index: 2;
}

.price-original {
  font-size: 1.2rem;
  color: var(--text-muted);
  position: relative;
  display: inline-block;
}

.price-original .strike {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 1.5px;
  background: var(--scarlet);
  transform: rotate(-5deg) scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.price-original .strike.animate {
  animation: strikeThrough 0.6s var(--ease-out) forwards;
}

@keyframes strikeThrough {
  from { transform: rotate(-5deg) scaleX(0); }
  to { transform: rotate(-5deg) scaleX(1); }
}

.price-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 12px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-current {
  font-family: var(--font-body);
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-current small {
  font-size: 0.4em;
  -webkit-text-fill-color: var(--gold);
}

.offer-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.offer-cta .cta-button {
  width: 100%;
  max-width: 450px;
  padding: 18px 28px;
  font-size: 1.05rem;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.trust-badge .icon { font-size: 1rem; }

.urgency-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--scarlet-bright);
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
  animation: urgencyPulse 2s ease-in-out infinite;
  will-change: opacity;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ============================================
   SECTION 8: GARANTIA
   ============================================ */

.guarantee-section { background: var(--navy); }

.guarantee-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(37,99,55,0.06), rgba(37,99,55,0.02));
  border: 2px solid rgba(37,211,102,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}

.guarantee-seal-img {
  width: 120px;
  height: auto;
  margin: 0 auto 20px;
  animation: sealFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(37,211,102,0.25));
  will-change: transform;
}

@keyframes sealFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.guarantee-card h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.guarantee-card p {
  margin-bottom: 14px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

.guarantee-card .highlight {
  color: var(--green-cta);
  font-weight: 700;
}

.guarantee-card .bold-line {
  font-weight: 700;
  color: var(--pearl);
  font-size: 1.05rem;
  margin-top: 20px;
}

/* ============================================
   SECTION 9: FAQ
   ============================================ */

.faq-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.faq-list {
  max-width: 750px;
  margin: 28px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(13,25,41,0.5);
  border: 1px solid rgba(212,175,55,0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--duration-normal);
}

.faq-item.active {
  border-color: rgba(212,175,55,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pearl);
  -webkit-tap-highlight-color: transparent;
  min-height: 52px;
}

.faq-question .faq-icon { font-size: 1.1rem; }

.faq-question .faq-chevron {
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-normal) var(--ease-out);
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-answer-inner {
  padding: 0 18px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   SECTION 10: SOBRE + FOOTER
   ============================================ */

.about-section { position: relative; }

.about-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  color: var(--gold);
  margin-bottom: 20px;
}

.about-content p { margin-bottom: 14px; font-size: 0.95rem; }

.about-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold) !important;
  font-weight: 600;
  margin-top: 24px !important;
  font-style: italic;
}

.footer {
  padding: 32px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   MODALS (Privacy & Terms)
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--navy-card);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 28px 22px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--pearl);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.modal-close:hover {
  background: rgba(255,255,255,0.15);
}

.modal-box h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-right: 40px;
}

.modal-body h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pearl);
  margin: 20px 0 8px;
}

.modal-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.modal-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}

.modal-body li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Scrollbar do modal */
.modal-box::-webkit-scrollbar { width: 6px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,0.25);
  border-radius: 3px;
}



/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-spring);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.stagger-children.revealed > *:nth-child(1)  { transition-delay: 0ms;   opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(2)  { transition-delay: 60ms;  opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(3)  { transition-delay: 120ms; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(4)  { transition-delay: 180ms; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(5)  { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(6)  { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(7)  { transition-delay: 360ms; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(8)  { transition-delay: 420ms; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(9)  { transition-delay: 480ms; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(10) { transition-delay: 540ms; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(11) { transition-delay: 600ms; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(12) { transition-delay: 660ms; opacity: 1; transform: translateY(0); }

/* ============================================
   DESKTOP ENHANCEMENTS (min-width: 768px)
   ============================================ */

@media (min-width: 768px) {
  :root {
    --section-padding: 80px;
    --container-padding: 32px;
  }

  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.5rem; }

  .urgency-bar { font-size: 0.9rem; padding: 12px 16px; }

  .hero { padding: 60px 0 80px; }

  .hero-content {
    gap: 36px;
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-mockup-frame {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 span { font-size: 1.1rem; }

  .problem-image { width: 220px; height: 220px; max-width: 40vw; max-height: 40vw; }

  .objections-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .attack-defense { flex-direction: row; gap: 40px; }

  .target-grid {
    flex-direction: row;
    gap: 50px;
  }

  .target-mockup-container { max-width: 400px; }
  .target-mockup { width: 100%; }

  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .offer-card { padding: 40px 36px; }

  .trust-badges { flex-direction: row; gap: 16px; }

  .cta-button {
    width: auto;
    max-width: none;
    padding: 18px 36px;
  }

  .cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow-gold);
  }


}

/* Large desktop */
@media (min-width: 1100px) {
  .objections-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   EXTRA SMALL (iPhone SE, etc)
   ============================================ */

@media (max-width: 360px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  .urgency-bar { font-size: 0.7rem; }
  .hero-mockup { width: 200px; }
  .cta-button { font-size: 0.9rem; padding: 14px 20px; }
  .price-current { font-size: 2.6rem; }
}

/* ============================================
   SAFE AREA (iPhone notch)
   ============================================ */

@supports (padding: env(safe-area-inset-bottom)) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .stagger-children > * { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
