/* ==========================================================================
   SEXO DE CALIDAD - V2 STYLESHEET (ELEGANT WARM PARCHMENT & GOLD THEME)
   Inspirado na estética clássica, editorial e acolhedora de "Código Divino"
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Warm Parchment & Rich Gold/Navy */
  --bg-primary: #fbf9f4;
  --bg-secondary: #e8dee1;
  --bg-parchment: #e8dee1;
  --bg-parchment-card: #f2e9db;
  --bg-dark-card: #1f1b24;

  /* Accent Colors */
  --color-gold-dark: #b8860b;
  --color-gold-accent: #d4af37;
  --color-navy: #151c28;
  --color-text-dark: #222222;
  --color-text-subtle: #4b5563;
  --color-border-parchment: #d6caaf;
  --color-success: #16a34a;

  /* Typography */
  --font-heading: 'Cinzel', serif, Georgia;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout Standards */
  --container-max: 1100px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  background: var(--bg-primary);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  padding: 80px 20px;
  position: relative;
}

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

/* --- Section Titles --- */
.section-title-v2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-subtitle-v2 {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-text-subtle);
  max-width: 750px;
  margin: 0 auto 44px auto;
}

/* --- Warm Header Announcement Bar --- */
.announcement-bar {
  background: var(--color-navy);
  color: #fefefe;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--color-gold-accent);
}

/* --- Badges / Tarjas --- */
.badge-wrapper-v2 {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(184, 134, 11, 0.08);
  border: 1px solid var(--color-gold-dark);
  color: var(--color-navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.badge-dot-v2 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold-dark);
}

.brand-header-v2 {
  padding: 30px 0;
  display: flex;
  justify-content: center;
  background: var(--bg-primary);
}

.brand-logo-v2 {
  height: 70px;
  width: auto;
}

/* --- Buttons (Style Inspired by Codigo Divino Warm CTA) --- */
.btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 520px;
  padding: 20px 32px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-subtext-v2 {
  font-size: 0.88rem;
  color: var(--color-text-subtle);
  margin-top: 10px;
  text-align: center;
}

/* ==========================================================================
   1. HERO SECTION (Warm Parchment Hero)
   ========================================================================== */
.hero-v2 {
  background: linear-gradient(180deg, #f5ecd8 0%, var(--bg-primary) 100%);
  padding-top: 40px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--color-border-parchment);
}

.hero-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-headline-v2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.hero-subheadline-v2 {
  font-size: 1.15rem;
  color: var(--color-text-subtle);
  line-height: 1.65;
  margin-bottom: 30px;
}

.hero-mockup-img-v2 {
  max-width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  border-radius: 12px;
}

.trust-badges-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-badge-v2 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--color-border-parchment);
}

/* ==========================================================================
   2. IDENTIFICAÇÃO DO PROBLEMA (Parchment Styled Cards)
   ========================================================================== */
.problem-section-v2 {
  background: #f4ebd9;
  border-bottom: 1px solid var(--color-border-parchment);
}

.problem-cards-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.problem-card-v2 {
  background: #ffffff;
  border: 1px solid var(--color-border-parchment);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.problem-card-v2:hover {
  transform: translateY(-4px);
}

.problem-icon-v2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-title-v2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.problem-desc-v2 {
  font-size: 0.95rem;
  color: var(--color-text-subtle);
}

/* ==========================================================================
   3. APRESENTAÇÃO & O QUE VOCÊ VAI APRENDER (Parchment List Cards)
   ========================================================================== */
.learn-section-v2 {
  background: var(--bg-primary);
}

.learn-list-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.learn-item-v2 {
  background: #f4ebd9;
  border: 1px solid var(--color-border-parchment);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.learn-check-v2 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.learn-text-v2 h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
}

.learn-text-v2 p {
  font-size: 0.95rem;
  color: var(--color-text-subtle);
}

/* ==========================================================================
   4. A COLEÇÃO PREMIUM (CARDS EM DESTAQUE)
   ========================================================================== */
.collection-section-v2 {
  background: #f4ebd9;
  border-top: 1px solid var(--color-border-parchment);
  border-bottom: 1px solid var(--color-border-parchment);
}

.collection-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.collection-card-v2 {
  background: #ffffff;
  border: 1px solid var(--color-border-parchment);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.collection-img-v2 {
  height: 200px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.12));
}

.collection-title-v2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.collection-desc-v2 {
  font-size: 0.9rem;
  color: var(--color-text-subtle);
  flex-grow: 1;
}

/* ==========================================================================
   5. TRANSFORMAÇÃO (ANTES VS DEPOIS)
   ========================================================================== */
.transformation-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.trans-col-v2 {
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--color-border-parchment);
}

.trans-col-v2.before {
  background: #fdf2f2;
  border-color: #fca5a5;
}

.trans-col-v2.after {
  background: #f0fdf4;
  border-color: #86efac;
}

.trans-header-v2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.trans-col-v2.before .trans-header-v2 { color: #dc2626; }
.trans-col-v2.after .trans-header-v2 { color: #16a34a; }

.trans-list-v2 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

/* ==========================================================================
   6. BÔNUS EXCLUSIVOS
   ========================================================================== */
.bonus-section-v2 {
  background: #f4ebd9;
}

.bonus-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.bonus-card-v2 {
  background: #ffffff;
  border: 1px solid var(--color-border-parchment);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-tag-v2 {
  background: var(--color-navy);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
}

.bonus-img-v2 {
  height: 240px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.bonus-img-v2:hover {
  transform: translateY(-4px) scale(1.03);
}

.bonus-card-v2 h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.bonus-desc-v2 {
  font-size: 0.92rem;
  color: var(--color-text-subtle);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.bonus-price-v2 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--color-border-parchment);
  width: 100%;
}

.old-price-red-v2 {
  color: #dc2626;
  text-decoration: line-through;
  font-weight: 700;
}

.free-green-v2 {
  color: #16a34a;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-total-box-v2 {
  background: #ffffff;
  border: 2px dashed var(--color-gold-dark);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.bonus-total-text-v2 {
  font-size: 1.1rem;
  color: var(--color-text-subtle);
  line-height: 1.6;
}

.bonus-btn-v2 {
  max-width: 440px;
  font-size: 1.1rem;
  padding: 18px 28px;
}

/* ==========================================================================
   6.5. PONTE EMOCIONAL (ESTILO CÓDIGO DIVINO)
   ========================================================================== */
.bridge-section-v2 {
  background: var(--bg-primary);
  padding: 70px 20px;
}

.bridge-box-v2 {
  max-width: 820px;
  margin: 0 auto;
}

.bridge-text-v2 {
  font-size: 1.15rem;
  color: var(--color-text-subtle);
  line-height: 1.7;
  margin-bottom: 30px;
}

.bridge-highlight-v2 {
  background: #f4ebd9;
  border: 1px solid var(--color-border-parchment);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.bridge-highlight-v2 p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.bridge-badge-v2 {
  font-size: 0.95rem;
  color: var(--color-text-subtle);
}

/* ==========================================================================
   7. OFERTA ESPECIAL (STYLE INSPIRED BY CODIGO DIVINO CHECKOUT CARD)
   ========================================================================== */
.offer-section-v2 {
  padding: 90px 20px;
  background: var(--bg-primary);
}

.offer-black-card-v2 {
  max-width: 760px;
  margin: 0 auto;
  background: #111111;
  color: #ffffff;
  border: 2px solid var(--color-gold-dark);
  border-radius: 24px;
  padding: 50px 36px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* --- Compact 4-Book Offer Showcase --- */
.offer-mockups-compact-v2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.offer-mini-cover-v2 {
  height: 175px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease;
}

.offer-mini-cover-v2.main {
  height: 215px;
  filter: drop-shadow(0 15px 30px rgba(212, 175, 55, 0.35));
}

.offer-mini-cover-v2:hover {
  transform: translateY(-5px) scale(1.06);
}

.gold-title-v2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 900;
  color: var(--color-gold-accent);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* --- Block de Preço Destacado na Oferta --- */
.offer-price-highlight-box-v2 {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--color-gold-accent);
  border-radius: 18px;
  padding: 24px 20px;
  margin-bottom: 24px;
}

.offer-sub-call-v2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.offer-giant-price-v2 {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 8vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin: 10px 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.offer-price-symbol-v2 {
  font-size: 2.2rem;
  color: var(--color-gold-accent);
  vertical-align: super;
}

.offer-price-code-v2 {
  font-size: 1.6rem;
  color: var(--color-gold-accent);
  font-weight: 800;
}

.offer-currency-note-v2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f3e5ab;
  margin-top: 4px;
}

.offer-heading-list-v2 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 18px;
  text-align: left;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.offer-bullets-black-v2 {
  text-align: left;
  max-width: 540px;
  margin: 0 auto 28px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(0, 0, 0, 0.4);
  padding: 26px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-item-row {
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.5;
}

.offer-item-bonus-row {
  color: var(--color-gold-accent);
  font-weight: 600;
}

.offer-stamps-v2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.offer-scarcity-v2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #facc15;
  margin-bottom: 28px;
  line-height: 1.7;
}

.offer-btn-v2 {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.15rem;
  padding: 22px 28px;
}

/* ==========================================================================
   9. CTA FINAL (BLACK HIGHLIGHT SECTION - INSPIRADO EM CÓDIGO DIVINO)
   ========================================================================== */
.final-cta-v2 {
  background: linear-gradient(180deg, #18151d 0%, #0d0b10 100%);
  color: #ffffff;
  padding: 110px 20px;
  border-top: 3px solid var(--color-gold-accent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.9);
}

.final-cta-title-v2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.5px;
}

.gold-highlight-v2 {
  color: var(--color-gold-accent);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.final-cta-subheadline-v2 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: #e4e4e7;
  max-width: 780px;
  margin: 0 auto 36px auto;
  line-height: 1.65;
}

/* --- Block de Preço Destacado no CTA Final --- */
.final-cta-price-box-v2 {
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed var(--color-gold-accent);
  border-radius: 20px;
  padding: 30px 24px;
  max-width: 540px;
  margin: 0 auto 36px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.final-price-label-v2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #f4e9d7;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.final-price-amount-v2 {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 4.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin: 10px 0;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.final-price-amount-v2 .currency-v2 {
  font-size: 2.2rem;
  color: var(--color-gold-accent);
  vertical-align: super;
}

.final-price-note-v2 {
  font-size: 0.95rem;
  color: #a1a1aa;
}

.final-cta-btn-v2 {
  max-width: 580px;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  padding: 24px 36px;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.final-cta-seals-v2 {
  font-size: 0.95rem;
  color: #a1a1aa;
  margin-top: 24px;
  font-weight: 600;
  line-height: 1.8;
}
.guarantee-box-v2 {
  max-width: 800px;
  margin: 0 auto;
  background: #f4ebd9;
  border: 1px solid var(--color-border-parchment);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.guarantee-img-v2 {
  width: 130px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.1));
}

.faq-list-v2 {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item-v2 {
  background: #ffffff;
  border: 1px solid var(--color-border-parchment);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question-v2 {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer-v2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--color-text-subtle);
  font-size: 0.95rem;
}

.faq-item-v2.active .faq-answer-v2 {
  max-height: 250px;
  padding: 0 24px 20px 24px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-v2 {
  background: var(--color-navy);
  color: #a0aec0;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero-grid-v2,
  .transformation-grid-v2,
  .guarantee-box-v2 {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .offer-mockups-compact-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 380px;
    margin: 0 auto 30px auto;
    justify-items: center;
    align-items: center;
  }

  .offer-mini-cover-v2 {
    height: 200px;
  }

  .offer-mini-cover-v2.main {
    height: 225px;
  }
}
