/* ============================================================
   ZeroBooks — Global Stylesheet
   Cobre: index.html · páginas de produto (linkedin-estrategico…)
   ============================================================ */

/* ── VARIÁVEIS: Index / Vitrine ── */
:root {
  --zb-cream:    #f5efe0;
  --zb-sand:     #e8dcc8;
  --zb-warm:     #d4c4a0;
  --zb-brown:    #8b6f47;
  --zb-dark:     #4a3728;
  --zb-espresso: #2c1e14;
  --zb-terra:    #a0785a;
  --zb-sage:     #7a8c6e;
  --zb-rust:     #b5633a;
  --zb-gold:     #c4973a;
  --zb-text:     #2c1e14;
  --zb-muted:    #7a6552;
}

/* ── VARIÁVEIS: Páginas de Produto ── */
:root {
  --cream:    #F5EFE0;
  --sand:     #E8DCC8;
  --warm:     #D4C4A0;
  --brown:    #8B6F47;
  --dark:     #4A3728;
  --espresso: #2C1E14;
  --terra:    #A0785A;
  --gold:     #C4973A;
  --gold-lt:  #E8C060;
  --sage:     #7A8C6E;
  --muted:    #7A6552;
  --white:    #FFFDF8;
}

/* ── BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--zb-cream);
  color: var(--zb-text);
  overflow-x: hidden;
}


/* ============================================================
   INDEX — Vitrine de produtos
   ============================================================ */

/* ── HEADER ── */
.zb-header {
  background: var(--zb-espresso);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}
.zb-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.zb-logo-zero {
  font-size: 32px;
  font-weight: 500;
  color: var(--zb-gold);
  letter-spacing: -0.02em;
}
.zb-logo-books {
  font-size: 32px;
  font-weight: 400;
  color: #f5efe0;
  letter-spacing: 0.02em;
}
.zb-tagline {
  font-size: 12px;
  color: rgba(245,239,224,0.55);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-top: 6px;
}
.zb-module-badge {
  display: inline-block;
  margin-top: 14px;
  background: var(--zb-brown);
  color: var(--zb-cream);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.zb-module-badge b {
  color: var(--zb-gold);
  font-weight: 500;
}

/* ── NAV VITRINE ── */
.zb-nav {
  background: var(--zb-dark);
}
.zb-nav .navbar-toggler {
  border-color: rgba(196, 151, 58, 0.4);
}
.zb-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(196, 151, 58, 0.2);
  outline: none;
}
.zb-nav a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.55);
  text-decoration: none;
  padding: 12px 18px;
  cursor: pointer;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.zb-nav a:hover { color: var(--zb-cream); }
.zb-nav a.active {
  color: var(--zb-gold);
  border-bottom: 2px solid var(--zb-gold);
}

/* ── GRID ── */
.zb-wrap {
  padding: 1.5rem 1rem 3rem;
  max-width: 920px;
  margin: 0 auto;
}
.zb-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

/* ── CARD ── */
.card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  background: var(--zb-sand);
}
.card.large { grid-column: span 2; grid-row: span 2; }
.card.tall  { grid-row: span 2; }
.card.wide  { grid-column: span 2; }

.card-bg {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.5s ease;
}
.card:hover .card-bg { transform: scale(1.04); }
.card.large .card-bg { min-height: 330px; }
.card.tall  .card-bg { min-height: 330px; }

.card-icon { font-size: 44px; line-height: 1; }
.card.large .card-icon { font-size: 64px; }

.card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.8rem;
  background: linear-gradient(to top, rgba(44,30,20,0.75) 0%, transparent 100%);
  color: var(--zb-cream);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.card:hover .card-label { opacity: 0; }

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,30,20,0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1.1rem;
  transition: background 0.35s ease;
}
.card:hover .overlay { background: rgba(44,30,20,0.82); }

.card-info {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.card:hover .card-info { opacity: 1; transform: translateY(0); }

.info-cat {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--zb-gold);
  margin-bottom: 5px;
}
.info-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--zb-cream);
  line-height: 1.3;
  margin-bottom: 7px;
}
.card.large .info-title { font-size: 20px; }
.info-desc {
  font-size: 11.5px;
  color: rgba(245,239,224,0.78);
  line-height: 1.6;
  margin-bottom: 14px;
}
.info-module {
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zb-gold);
  background: rgba(196,151,58,0.18);
  display: inline-block;
  padding: 3px 9px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.info-price {
  font-size: 17px;
  font-weight: 500;
  color: var(--zb-cream);
}
.info-price s {
  font-size: 12px;
  font-weight: 400;
  color: rgba(245,239,224,0.45);
  margin-right: 5px;
}
.btn-ver {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0.5px solid rgba(196,151,58,0.7);
  color: var(--zb-gold);
  padding: 6px 13px;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ver:hover {
  background: rgba(196,151,58,0.2);
  border-color: var(--zb-gold);
}

/* ── BADGES ── */
.badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 10px;
}
.badge-new  { background: var(--zb-sage); color: #f5efe0; }
.badge-hot  { background: var(--zb-rust); color: #f5efe0; }
.badge-sale { background: var(--zb-gold); color: var(--zb-espresso); }

/* ── CARD BACKGROUND VARIANTS ── */
.card-bg-linkedin {
  background: linear-gradient(145deg, rgba(60,56,88,0.55) 0%, rgba(48,48,80,0.72) 100%),
              url('../images/linkedin-estrategico.jpg') center/cover no-repeat;
}
.card-bg-glp1 {
  background: linear-gradient(145deg, rgba(30,60,44,0.55) 0%, rgba(20,50,35,0.72) 100%),
              url('../images/emagreca-rapido-glp1.jpg') center/cover no-repeat;
}
.card-bg-investimentos { background: linear-gradient(145deg, #b8c4a8 0%, #8a9e78 100%); }
.card-bg-trafego       { background: linear-gradient(145deg, #c4a07a 0%, #9a6840 100%); }
.card-bg-python        { background: linear-gradient(180deg, #8a7060 0%, #5c4030 60%, #3a2418 100%); }
.card-bg-produtividade { background: linear-gradient(135deg, #c4b090 0%, #9a7e5a 50%, #705a3a 100%); }
.card-bg-planilha      { background: linear-gradient(145deg, #b8a888 0%, #8a7858 100%); }
.card-bg-copywriting   { background: linear-gradient(145deg, #c4987a 0%, #9a6848 100%); }

/* ── CARD CATEGORY LABEL ── */
.card-category {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── FOOTER VITRINE ── */
.zb-footer {
  background: var(--zb-espresso);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.zb-footer-logo {
  color: var(--zb-gold);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.zb-footer-logo span {
  color: rgba(245,239,224,0.7);
  font-weight: 400;
}
.zb-footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 11px;
  color: rgba(245,239,224,0.45);
  letter-spacing: 0.07em;
}
.zb-trust {
  font-size: 10px;
  color: rgba(245,239,224,0.35);
  letter-spacing: 0.07em;
  margin-top: 4px;
}

@media (max-width: 580px) {
  .zb-grid { grid-template-columns: repeat(2, 1fr); }
  .card.large { grid-column: span 2; }
  .card.wide  { grid-column: span 2; }
  .card.tall  { grid-row: span 1; }
  .card.tall  .card-bg  { min-height: 160px; }
  .card.large .card-bg  { min-height: 220px; }
}

/* ── FAQ ACCORDION (Index) ── */
.faq-accordion {
  margin-top: 1.5rem;
}
.faq-accordion .faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--zb-warm);
}
.faq-accordion .faq-item:first-child {
  border-top: 1px solid var(--zb-warm);
}
.faq-accordion .faq-btn {
  background: transparent;
  color: var(--zb-text);
  font-size: 15px;
  font-weight: 500;
  padding: 1rem 0;
  box-shadow: none;
  gap: 12px;
}
.faq-accordion .faq-btn:not(.collapsed) {
  background: transparent;
  color: var(--zb-brown);
  box-shadow: none;
}
.faq-accordion .faq-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238b6f47' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  flex-shrink: 0;
}
.faq-accordion .faq-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c4973a' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-accordion .faq-btn:focus {
  box-shadow: none;
  outline: none;
}
.faq-accordion .faq-body {
  padding: 0 0 1rem;
  font-size: 14px;
  color: var(--zb-muted);
  line-height: 1.7;
}


/* ============================================================
   PÁGINAS DE PRODUTO (landing pages)
   ============================================================ */

/* ── NOISE TEXTURE OVERLAY ── */
body.product-page::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── NAV PRODUTO ── */
nav.product-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--espresso);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo .z { color: var(--gold); }
.nav-logo .b { color: var(--cream); font-weight: 300; }
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 8px 18px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-lt); }

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--espresso);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -6%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/linkedin-estrategico.jpg') center/cover no-repeat;
  animation: heroBgZoom 22s ease-in-out infinite alternate;
  z-index: 0;
  will-change: transform;
}
.glp1-page .hero::before {
  background: linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.48)), url('../images/emagreca-rapido-glp1.jpg') center/cover no-repeat;
}
.hero-deco {
  position: absolute; inset: 0;
  background:
    rgba(28, 18, 10, 0.62),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(139,111,71,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(196,151,58,0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-lines {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 60px,
    rgba(196,151,58,0.04) 60px,
    rgba(196,151,58,0.04) 61px
  );
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 5rem 3rem 5rem 4rem;
  animation: fadeUp 0.9s ease both;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(196,151,58,0.4);
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 16px;
  color: rgba(245,239,224,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.2rem;
  font-weight: 300;
}
.hero-problem {
  background: rgba(196,151,58,0.1);
  border-left: 2px solid var(--gold);
  padding: 1rem 1.2rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 2.2rem;
  font-size: 14px;
  color: rgba(245,239,224,0.8);
  line-height: 1.7;
  max-width: 500px;
}
.hero-problem strong { color: var(--gold-lt); font-weight: 500; }
.hero-cta-group { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--espresso);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.hero-price {
  font-size: 13px;
  color: rgba(245,239,224,0.5);
}
.hero-price strong { color: var(--cream); font-size: 22px; font-weight: 500; }
.hero-price s { color: rgba(245,239,224,0.3); font-size: 13px; }

.hero-visual {
  position: relative; z-index: 2;
  padding: 4rem 2rem 4rem 0;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  animation: fadeUp 0.9s ease 0.2s both;
}
.book-cover {
  width: 260px;
  background: linear-gradient(145deg, #C4A882 0%, #8B6440 60%, #5C3E22 100%);
  border-radius: 4px 12px 12px 4px;
  padding: 2.5rem 2rem;
  box-shadow:
    -6px 0 0 rgba(0,0,0,0.35),
    -12px 4px 24px rgba(0,0,0,0.4),
    0 20px 60px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.book-cover::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 18px;
  background: linear-gradient(to right, rgba(0,0,0,0.25), transparent);
}
.book-cover-brand {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,239,224,0.5); margin-bottom: 1.5rem;
}
.book-cover-icon { font-size: 40px; margin-bottom: 1.2rem; display: block; }
.book-cover-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 600;
  color: var(--cream); line-height: 1.3;
  margin-bottom: 0.5rem;
}
.book-cover-sub {
  font-size: 10px; letter-spacing: 0.08em;
  color: rgba(245,239,224,0.55); text-transform: uppercase;
  line-height: 1.5;
}
.book-cover-badge {
  position: absolute; bottom: 1.5rem; right: 1.2rem;
  background: var(--gold);
  color: var(--espresso);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 10px;
}
.hero-guarantee {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(245,239,224,0.45);
  letter-spacing: 0.05em;
}
.hero-guarantee span { font-size: 16px; }

/* ── SEÇÕES GENÉRICAS ── */
section { position: relative; z-index: 1; }
.section-inner { max-width: 860px; margin: 0 auto; padding: 5rem 2rem; }
.section-tag {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 1rem;
  color: var(--espresso);
}
h2 em { font-style: italic; color: var(--brown); }
.section-lead {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  font-weight: 300; max-width: 560px;
}

/* ── PROBLEMA ── */
.problem-section { background: var(--white); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
}
.problem-item {
  background: var(--white);
  padding: 1.8rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.problem-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(160,120,90,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.problem-text { font-size: 14px; color: var(--dark); line-height: 1.6; }

/* ── MÓDULOS ── */
.modules-section { background: var(--espresso); }
.modules-section h2 { color: var(--cream); }
.modules-section .section-lead { color: rgba(245,239,224,0.55); }
.modules-section .section-tag { color: var(--gold); }
.modules-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.module-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-top: 0.5px solid rgba(245,239,224,0.08);
  padding: 1.8rem 0;
  gap: 1.5rem;
  align-items: start;
  transition: background 0.2s;
  cursor: default;
}
.module-item:last-child { border-bottom: 0.5px solid rgba(245,239,224,0.08); }
.module-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 400; font-style: italic;
  color: rgba(196,151,58,0.35);
  line-height: 1;
  padding-top: 4px;
}
.module-item.zero .module-num { color: var(--gold); }
.module-item.zero {
  background: rgba(196,151,58,0.06);
  padding-left: 1rem; padding-right: 1rem;
  border-radius: 6px; border-color: transparent;
}
.module-badge {
  display: inline-block;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(196,151,58,0.2); color: var(--gold);
  padding: 3px 9px; border-radius: 10px;
  margin-bottom: 6px;
}
.module-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 600;
  color: var(--cream); margin-bottom: 6px; line-height: 1.3;
}
.module-desc {
  font-size: 13.5px; color: rgba(245,239,224,0.55); line-height: 1.65;
}

/* ── PARA QUEM ── */
.forwhom-section { background: var(--sand); }
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 3rem;
}
.forwhom-card {
  background: var(--cream);
  border: 0.5px solid var(--warm);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 12px;
}
.forwhom-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: white; margin-top: 1px;
}
.forwhom-text { font-size: 14px; color: var(--dark); line-height: 1.5; }

/* ── RESULTADOS ── */
.results-section { background: var(--white); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 3rem;
}
.result-card {
  border: 0.5px solid var(--warm);
  border-radius: 8px;
  padding: 1.5rem 1.2rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--terra));
}
.result-icon { font-size: 26px; margin-bottom: 10px; display: block; }
.result-text { font-size: 14px; color: var(--dark); line-height: 1.5; font-weight: 400; }

/* ── DEPOIMENTOS ── */
.testimonials-section { background: var(--sand); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--cream);
  border: 0.5px solid var(--warm);
  border-radius: 8px;
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--terra), var(--gold));
  border-radius: 8px 8px 0 0;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: -8px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding-top: 1.25rem;
  border-top: 0.5px solid var(--warm);
}
.testimonial-avatar {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--terra);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; color: var(--cream);
  letter-spacing: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--espresso);
}
.testimonial-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

/* ── CTA FINAL ── */
.cta-section { background: var(--espresso); text-align: center; }
.cta-section h2 { color: var(--cream); }
.cta-closing {
  font-size: 15px;
  color: rgba(245,239,224,0.55);
  line-height: 1.75;
  max-width: 560px;
  margin: 1rem auto 0;
  font-weight: 300;
}
.cta-box {
  background: rgba(245,239,224,0.05);
  border: 0.5px solid rgba(196,151,58,0.3);
  border-radius: 12px;
  padding: 3rem 2rem;
  max-width: 520px;
  margin: 3rem auto 0;
}
.cta-price-old {
  font-size: 14px; color: rgba(245,239,224,0.35);
  text-decoration: line-through; margin-bottom: 4px;
}
.cta-price-new {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 600;
  color: var(--cream); line-height: 1;
  margin-bottom: 6px;
}
.cta-price-new sup { font-size: 22px; vertical-align: super; color: var(--gold); }
.cta-price-note {
  font-size: 12px; color: rgba(245,239,224,0.4);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.btn-cta-big {
  display: block;
  background: var(--gold);
  color: var(--espresso);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta-big:hover { background: var(--gold-lt); transform: translateY(-2px); }
.cta-guarantee {
  font-size: 12px; color: rgba(245,239,224,0.4);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ── FOOTER PRODUTO ── */
footer {
  background: #1A120C;
  padding: 2rem;
  text-align: center;
}
.footer-logo { font-size: 18px; font-weight: 500; margin-bottom: 6px; }
.footer-logo .z { color: var(--gold); }
.footer-logo .b { color: rgba(245,239,224,0.5); font-weight: 300; }
.footer-links {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  font-size: 11px; color: rgba(245,239,224,0.3);
  margin-bottom: 6px; letter-spacing: 0.06em;
}
.footer-copy { font-size: 11px; color: rgba(245,239,224,0.2); }

/* ── ANIMATIONS ── */
@keyframes heroBgZoom {
  from { transform: scale(1)    translate(0,    0); }
  to   { transform: scale(1.12) translate(-2%, -1%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE PRODUTO ── */
@media (max-width: 700px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 3rem 1.5rem 2rem; }
  .hero-visual { padding: 0 1.5rem 3rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .module-item { grid-template-columns: 56px 1fr; }
  .module-num { font-size: 32px; }
  nav.product-nav { padding: 0 1rem; }
  .section-inner { padding: 4rem 1.2rem; }
}


/* ============================================================
   POLÍTICA DE PRIVACIDADE
   ============================================================ */

/* ── NAV PRIVACIDADE ── */
.privacy-page nav:not(.toc) {
  background: var(--espresso);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
  position: sticky; top: 0; z-index: 100;
}

/* ── HERO PRIVACIDADE ── */
.privacy-page .hero {
  background: var(--espresso);
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.privacy-page .hero-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  border: 0.5px solid rgba(196,151,58,0.4);
  padding: 5px 16px; border-radius: 20px;
  margin-bottom: 1.2rem;
}
.privacy-page .hero-tag::before { display: none; }
.privacy-page .hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600; color: var(--cream);
  line-height: 1.15; margin-bottom: 1rem;
}
.hero-meta {
  font-size: 13px;
  color: rgba(245,239,224,0.4);
  letter-spacing: 0.05em;
}

/* ── CONTEÚDO ── */
.content { max-width: 740px; margin: 0 auto; padding: 4rem 2rem 5rem; }

/* ── TIPOGRAFIA PRIVACIDADE ── */
.privacy-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600; color: var(--espresso);
  line-height: 1.25; margin-bottom: 1rem;
}
.privacy-page p {
  font-size: 15px; color: var(--dark);
  line-height: 1.85; font-weight: 300;
  margin-bottom: 0.9rem;
}
.privacy-page p strong { font-weight: 500; color: var(--espresso); }
.privacy-page ul { padding-left: 1.4rem; margin-bottom: 0.9rem; }
.privacy-page ul li {
  font-size: 15px; color: var(--dark);
  line-height: 1.75; font-weight: 300;
  margin-bottom: 4px;
}

/* ── ÍNDICE ── */
.toc {
  background: var(--sand); border-radius: 8px;
  padding: 1.5rem 2rem; margin-bottom: 3rem;
  border: 0.5px solid var(--warm);
}
.toc-title {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.toc ol { padding-left: 1.2rem; }
.toc li { margin-bottom: 6px; }
.toc a {
  font-size: 13.5px; color: var(--brown);
  text-decoration: none; font-weight: 300;
  transition: color 0.2s;
}
.toc a:hover { color: var(--espresso); }

/* ── SEÇÕES DE POLÍTICA ── */
.policy-section { margin-bottom: 3rem; scroll-margin-top: 72px; }
.section-num {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.4rem;
}

/* ── ELEMENTOS ── */
.divider { border: none; border-top: 0.5px solid var(--warm); margin: 3rem 0; }

.highlight-box {
  background: var(--sand); border-radius: 8px;
  padding: 1.4rem 1.6rem; margin: 1.2rem 0;
  border: 0.5px solid var(--warm);
}
.highlight-box p { margin-bottom: 0; font-size: 14px; }

.disclaimer-box {
  background: var(--sand);
  border-left: 3px solid var(--terra);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.8rem; margin: 2rem 0;
}
.disclaimer-label {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 0.6rem;
  display: block; font-weight: 500;
}
.disclaimer-box p { font-size: 13.5px; color: var(--dark); margin-bottom: 0.5rem; }
.disclaimer-box p:last-child { margin-bottom: 0; }

.contact-box {
  background: var(--espresso); border-radius: 10px;
  padding: 2rem 2.5rem; margin-top: 2rem;
  text-align: center;
}
.contact-box p { color: rgba(245,239,224,0.65); font-size: 14px; margin-bottom: 0.5rem; }
.contact-box a {
  color: var(--gold); font-size: 15px;
  font-weight: 500; text-decoration: none;
}

/* ── FOOTER PRIVACIDADE ── */
.privacy-page footer { background: var(--espresso); padding: 2rem; text-align: center; }
.privacy-page .footer-logo { margin-bottom: 8px; }
.privacy-page .footer-links { color: rgba(245,239,224,0.3); margin-bottom: 8px; }

/* ── RESPONSIVE PRIVACIDADE ── */
@media (max-width: 600px) {
  .privacy-page .hero { padding: 3rem 1.2rem 2.5rem; }
  .content { padding: 3rem 1.2rem 4rem; }
  .privacy-page nav:not(.toc) { padding: 0 1rem; }
}

/* ── COOKIE CONSENT BANNER ── */
#zb-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(420px, calc(100vw - 2rem));
  background: var(--zb-espresso);
  border: 1px solid rgba(196, 151, 58, 0.3);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.25);
  padding: 1.25rem 1.4rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  animation: zbCookieIn 0.3s ease both;
}
@keyframes zbCookieIn {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#zb-cookie-banner .zb-cookie-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zb-gold);
  margin-bottom: 0.45rem;
}
#zb-cookie-banner p {
  margin: 0 0 1rem;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(245, 239, 224, 0.7);
}
#zb-cookie-banner p a {
  color: var(--zb-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 151, 58, 0.4);
  transition: border-color 0.2s;
}
#zb-cookie-banner p a:hover {
  border-color: var(--zb-gold);
}
.zb-cookie-actions {
  display: flex;
  gap: 0.5rem;
}
.zb-cookie-accept,
.zb-cookie-decline {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 0;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex: 1;
  text-align: center;
}
.zb-cookie-accept {
  background: var(--zb-gold);
  color: var(--zb-espresso);
  border: none;
}
.zb-cookie-accept:hover {
  background: #d4a840;
  transform: translateY(-1px);
}
.zb-cookie-decline {
  background: transparent;
  color: rgba(245, 239, 224, 0.5);
  border: 0.5px solid rgba(245, 239, 224, 0.2);
}
.zb-cookie-decline:hover {
  color: rgba(245, 239, 224, 0.8);
  border-color: rgba(245, 239, 224, 0.4);
}
#zb-cookie-banner.zb-cookie-hidden {
  display: none;
}
