/* ================================================================
   JANASCAKES — PAGE STYLES
   Estilos de layout e seções — usa tokens do design-system.css
   ================================================================ */

/* ══ HEADER ══════════════════════════════════════════════════════ */
header {
  position: fixed; top: 0; width: 100%; z-index: var(--z-header);
  background: rgba(255,250,243,.97);
  backdrop-filter: blur(8px);
  padding: 14px var(--section-px);
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 12px rgba(61,26,30,.08);
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img {
  height: 40px; width: auto;
  object-fit: contain; display: block;
  border-radius: var(--r-sm);
}
.header-cta {
  background: var(--gold);
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  padding: 10px var(--sp-5);
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background var(--t-fast);
}
.header-cta:hover { background: var(--gold-lt); }


/* ══ HERO ════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding: 130px var(--section-px) var(--sp-20);
  background: linear-gradient(145deg, var(--peach) 0%, var(--cream) 60%, #fff 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  max-width: var(--mw-hero);
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--dark); color: var(--gold);
  font-size: var(--fs-xs); font-weight: var(--fw-bold);
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--r-pill);
  margin-bottom: var(--sp-5);
  animation: pulse-badge 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--sp-5);
}
.hero h1 span { color: var(--gold); }

.hero p {
  font-size: var(--fs-lg);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

/* Botão Hero */
.btn-hero {
  display: inline-block;
  font-size: 1.1rem;
  padding: 18px 40px;
}

.hero-sub {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  margin-top: var(--sp-4);
}

/* Imagens flutuantes */
.hero-imgs { position: relative; height: 460px; }

.hero-card {
  position: absolute;
  width: 180px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-card:nth-child(1) { width: 200px; height: 200px; top: 0;        left: 20%;    animation: float1 3.5s ease-in-out infinite; }
.hero-card:nth-child(2) { width: 170px; height: 220px; top: 60px;     right: 0;     animation: float2 4s   ease-in-out infinite; }
.hero-card:nth-child(3) { width: 220px; height: 180px; bottom: 40px;  left: 0;      animation: float3 3.8s ease-in-out infinite; }
.hero-card:nth-child(4) { width: 160px; height: 160px; bottom: 20px;  right: 30px;  animation: float1 4.2s ease-in-out infinite reverse; }
.hero-card:nth-child(5) { width: 155px; height: 155px; top: 195px;    left: 40%;    animation: float3 3.2s ease-in-out infinite; }


/* ══ PHOTO GRID ═════════════════════════════════════════════════ */
#photos { background: var(--peach); padding: var(--section-py) var(--section-px); }

.photo-grid {
  max-width: var(--mw-wide); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: var(--sp-3);
}
.photo-grid .big { grid-column: span 2; grid-row: span 2; }
.photo-grid figure {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base);
}
.photo-grid figure:hover { transform: scale(1.03); }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Torta Pudim — foto em destaque */
.photo-grid figure.big.destaque {
  position: relative;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(243,171,86,.18);
}
.photo-grid figure.big.destaque::after {
  content: '⭐ Destaque';
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold); color: #fff;
  font-size: var(--fs-xs); font-weight: var(--fw-bold);
  letter-spacing: .5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill);
  pointer-events: none;
}


/* ══ MÓDULOS (O que você vai aprender) ══════════════════════════ */
#modulos { padding: var(--section-py) var(--section-px); background: var(--white); }

.modulos-grid {
  max-width: var(--mw-narrow); margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.modulos-grid::before {
  content: '';
  position: absolute; left: 31px; top: 16px; bottom: 16px;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--terra));
  border-radius: 4px;
}

.modulo-item {
  display: flex; gap: var(--sp-7); align-items: flex-start;
  padding: var(--sp-6) 0;
}

.mod-num {
  flex-shrink: 0;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--dark); color: var(--gold);
  font-family: var(--font-display); font-size: var(--fs-3xl); font-weight: var(--fw-black);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--gold);
  position: relative; z-index: 1;
}

.mod-content h3 {
  font-size: 1.15rem; font-weight: var(--fw-bold);
  color: var(--dark); margin-bottom: var(--sp-2);
}
.mod-content p { font-size: var(--fs-base); color: var(--text-body); line-height: 1.65; }

.skill-chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-3); }


/* ══ BÔNUS ══════════════════════════════════════════════════════ */
#bonus { background: var(--peach-alt); padding: var(--section-py) var(--section-px); }

.bonus-cards {
  max-width: var(--mw-wide); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6);
}

.bonus-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base);
}
.bonus-card:hover { transform: translateY(-6px); }

/* Bônus 4 — destaque com borda dourada */
.bonus-card--destaque {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(243,171,86,.15);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 220px 1fr;
}
.bonus-card--destaque .bonus-card-img {
  height: 100%;
  min-height: 200px;
  background: linear-gradient(145deg, var(--petal-pink) 0%, var(--cream) 100%);
  font-size: 6rem;
}

.bonus-card-img {
  height: 200px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}

.bonus-card-body { padding: var(--sp-6); }
.bonus-card-body .label {
  font-size: var(--fs-2xs); font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold); margin-bottom: var(--sp-2);
}
.bonus-card-body .label--gold {
  display: inline-block;
  background: var(--gold); color: #fff;
  padding: 4px 12px; border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
}
.bonus-card-body h3 {
  font-family: var(--font-display); font-size: var(--fs-2xl);
  color: var(--dark); margin-bottom: var(--sp-2);
}
.bonus-card-body p  { font-size: var(--fs-base); color: var(--text-body); line-height: 1.6; }
.bonus-card-body .val {
  font-size: var(--fs-sm); font-weight: var(--fw-bold);
  color: var(--green-lt); margin-top: var(--sp-3);
}
.bonus-card-body .val--gold { color: var(--gold); font-size: var(--fs-md); }

.bonus-features {
  list-style: none;
  margin: var(--sp-4) 0 var(--sp-2);
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.bonus-features li {
  font-size: var(--fs-sm);
  color: var(--text-body);
}


/* ══ OBJEÇÕES ═══════════════════════════════════════════════════ */
#objecoes { padding: var(--section-py) var(--section-px); background: var(--white); }

.obj-cards {
  max-width: 1000px; margin: var(--sp-10) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6);
}

.obj-card {
  background: var(--peach);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: transform var(--t-base);
}
.obj-card:hover { transform: translateY(-6px); }
.obj-icon { font-size: 2.8rem; margin-bottom: var(--sp-4); }
.obj-card h3 { font-size: 1rem; font-weight: var(--fw-bold); color: var(--dark); margin-bottom: var(--sp-3); }
.obj-card p  { font-size: var(--fs-base); color: var(--text-body); line-height: 1.65; }


/* ══ ROI (Faça as contas) ═══════════════════════════════════════ */
#roi { padding: var(--section-py) var(--section-px); background: var(--peach); }

.roi-intro {
  text-align: center; color: var(--text-body);
  max-width: 500px; margin: 0 auto;
  font-size: var(--fs-md);
}

.roi-cards {
  max-width: var(--mw-narrow); margin: var(--sp-10) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5);
}

.roi-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-xs);
  border-top: 4px solid var(--gold);
  transition: transform var(--t-base);
}
.roi-card:hover { transform: translateY(-6px); }
.roi-card .period { font-size: var(--fs-sm); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 1px; color: var(--terra); margin-bottom: var(--sp-2); }
.roi-card .amount { font-family: var(--font-display); font-size: var(--fs-4xl); font-weight: var(--fw-black); color: var(--dark); }
.roi-card .desc   { font-size: var(--fs-sm); color: var(--text-muted); margin-top: var(--sp-2); line-height: 1.5; }

.roi-note {
  text-align: center; max-width: var(--mw-tight);
  margin: var(--sp-8) auto 0;
  font-size: var(--fs-base); color: var(--text-body); line-height: 1.7;
}


/* ══ COMPARAÇÃO (Sem vs. Com) ════════════════════════════════════ */
#comparacao { padding: var(--section-py) var(--section-px); background: var(--white); }

.comp-wrap {
  max-width: var(--mw-narrow); margin: var(--sp-10) auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6);
}

.comp-card { border-radius: var(--r-lg); padding: 36px 28px; }
.comp-card.sem { background: var(--error-bg);   border: 2px solid var(--error-border); }
.comp-card.com { background: var(--success-bg); border: 2px solid var(--success-border); }

.comp-card h3 { font-size: 1.1rem; font-weight: var(--fw-extra); margin-bottom: var(--sp-5); }
.comp-card.sem h3 { color: var(--error); }
.comp-card.com h3 { color: var(--green); }

.comp-list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.comp-list li { font-size: var(--fs-base); line-height: 1.5; display: flex; gap: 10px; align-items: flex-start; }
.comp-list li::before { flex-shrink: 0; margin-top: 2px; }
.comp-card.sem .comp-list li::before { content: '✗'; color: var(--error); font-weight: var(--fw-bold); }
.comp-card.com .comp-list li::before { content: '✓'; color: var(--green); font-weight: var(--fw-bold); }


/* ══ DEPOIMENTOS ════════════════════════════════════════════════ */
#depoimentos { padding: var(--section-py) var(--section-px); background: var(--peach); }

.carousel-wrap {
  max-width: var(--mw-card); margin: var(--sp-10) auto 0;
  position: relative; overflow: hidden;
}
.carousel-track { display: flex; gap: var(--sp-6); flex-wrap: nowrap; }

.dep-card {
  flex-shrink: 0; width: 100%;
  background: #fff; border-radius: var(--r-lg);
  padding: 36px; box-shadow: var(--shadow-md);
  border-left: 5px solid var(--gold);
}

.dep-quote {
  font-size: var(--fs-lg); line-height: 1.75;
  color: var(--dark); font-style: italic; margin-bottom: var(--sp-5);
}
.dep-author { display: flex; align-items: center; gap: 14px; }
.dep-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.dep-name  { font-weight: var(--fw-bold); font-size: var(--fs-md); color: var(--dark); }
.dep-city  { font-size: var(--fs-sm); color: var(--text-soft); }
.dep-stars { color: var(--gold); font-size: var(--fs-lg); margin-bottom: var(--sp-1); }

.carousel-nav {
  display: flex; justify-content: center;
  gap: 14px; margin-top: var(--sp-7);
}
.carousel-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--gold); background: transparent;
  color: var(--gold); font-size: 1.2rem; cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.carousel-btn:hover { background: var(--gold); color: #fff; }

.carousel-dots { display: flex; gap: var(--sp-2); align-items: center; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; transition: background var(--t-base); cursor: pointer; }
.dot.active { background: var(--gold); width: 24px; border-radius: 6px; }


/* ══ PRICING ════════════════════════════════════════════════════ */
#pricing {
  padding: var(--section-py) var(--section-px);
  background: linear-gradient(160deg, var(--blush) 0%, var(--petal-pink) 100%);
}
#pricing .section-title         { color: var(--dark); }
#pricing .section-title span    { color: var(--gold); }

.pricing-wrap { max-width: var(--mw-cta); margin: var(--sp-10) auto 0; }

.price-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--r-2xl);
  padding: 44px 36px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.price-card::before {
  content: '';
  position: absolute; inset: -4px;
  background: conic-gradient(var(--gold), var(--gold-lt), transparent, var(--gold));
  border-radius: 32px;
  z-index: -1;
  animation: orbit 3s linear infinite;
}

.price-badge {
  display: inline-block;
  background: var(--gold); color: #fff;
  font-size: var(--fs-xs); font-weight: var(--fw-extra);
  text-transform: uppercase; letter-spacing: 1px;
  padding: 6px 18px; border-radius: var(--r-pill); margin-bottom: var(--sp-5);
}

.price-name { font-family: var(--font-display); font-size: var(--fs-3xl); color: var(--dark); margin-bottom: var(--sp-1); }
.price-orig { font-size: var(--fs-base); color: var(--text-soft); text-decoration: line-through; margin-bottom: var(--sp-2); }
.price-main {
  font-family: var(--font-display); font-size: 3.8rem;
  font-weight: var(--fw-black); color: var(--gold); line-height: 1;
}
.price-main sup { font-size: 1.6rem; vertical-align: top; margin-top: 12px; }
.price-or   { font-size: var(--fs-sm); color: var(--text-soft); margin: 10px 0 4px; }
.price-inst { font-size: 1.1rem; font-weight: var(--fw-bold); color: var(--dark); margin-bottom: var(--sp-7); }

.price-list {
  list-style: none; text-align: left;
  display: flex; flex-direction: column; gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.price-list li { font-size: var(--fs-base); color: var(--text-body); display: flex; gap: 10px; align-items: flex-start; }
.price-list li span { color: var(--green); flex-shrink: 0; }

/* Botão de compra */
.btn-buy {
  display: block; width: 100%; text-align: center;
  font-size: 1.15rem;
  padding: 20px;
}

.price-security {
  display: flex; gap: var(--sp-5); justify-content: center; flex-wrap: wrap;
  margin-top: var(--sp-5);
}
.price-security span {
  font-size: var(--fs-xs); color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}


/* ══ BIO ════════════════════════════════════════════════════════ */
#bio { padding: var(--section-py) var(--section-px); background: var(--white); }

.bio-wrap {
  max-width: var(--mw-narrow); margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: var(--sp-14); align-items: center;
}

.bio-photo {
  width: 280px; height: 370px; border-radius: var(--r-xl);
  background: var(--cream); overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.bio-text .badge {
  display: inline-block;
  background: var(--cream); color: var(--terra);
  font-size: var(--fs-2xs); font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: 1px;
  padding: 6px 16px; border-radius: var(--r-pill);
  margin-bottom: var(--sp-4);
}
.bio-text h2 { font-family: var(--font-display); font-size: 2rem; color: var(--dark); margin-bottom: var(--sp-4); }
.bio-text p  { font-size: var(--fs-md); color: var(--text-body); line-height: 1.75; margin-bottom: 14px; }

.bio-stats { display: flex; gap: var(--sp-8); margin-top: var(--sp-6); }
.bio-stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--gold); font-weight: var(--fw-black); }
.bio-stat-lbl { font-size: var(--fs-xs); color: var(--text-soft); }


/* ══ FAQ ════════════════════════════════════════════════════════ */
#faq { padding: var(--section-py) var(--section-px); background: var(--peach); }

.faq-list {
  max-width: var(--mw-card); margin: var(--sp-10) auto 0;
  display: flex; flex-direction: column; gap: 14px;
}

.faq-item {
  background: #fff; border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-xs);
}

.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px var(--sp-6); cursor: pointer; border: none; background: transparent;
  font-family: var(--font-body); font-size: var(--fs-md); font-weight: var(--fw-semi);
  color: var(--dark); text-align: left;
}

.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--cream); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: var(--fw-bold);
  transition: transform var(--t-base);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 var(--sp-6) 22px; font-size: var(--fs-base); color: var(--text-body); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }


/* ══ FINAL CTA ══════════════════════════════════════════════════ */
#final {
  padding: var(--sp-25) var(--section-px);
  background: linear-gradient(135deg, var(--petal-pink) 0%, var(--blush) 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#final h2 {
  font-family: var(--font-display);
  font-size: var(--fs-final);
  color: var(--dark); margin-bottom: var(--sp-8); line-height: 1.3;
}
#final h2 span { color: var(--gold); }

#final p {
  font-size: var(--fs-lg); color: var(--text-body);
  max-width: 500px; margin: 0 auto var(--sp-12); line-height: 1.7;
}

.btn-final {
  display: inline-block;
  font-size: 1.2rem;
  padding: 22px 56px;
}

/* margin-bottom no botão (ID > class, então usamos #final .btn-final) */
#final .btn-final   { margin-bottom: var(--sp-14); }
.final-guarantee    { font-size: var(--fs-sm); color: var(--text-muted); }


/* ══ FOOTER ═════════════════════════════════════════════════════ */
footer {
  background: var(--blush); color: var(--text-muted);
  text-align: center;
  padding: 28px var(--section-px);
  font-size: var(--fs-sm);
  border-top: 1px solid rgba(61,26,30,.10);
}
footer a { color: var(--gold); text-decoration: none; }
footer p + p { margin-top: var(--sp-2); }


/* ══ FLOATING BAR (mobile) ══════════════════════════════════════ */
#float-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-float);
  background: var(--white); border-top: 2px solid var(--gold);
  padding: 12px var(--sp-5); flex-direction: column; align-items: center; gap: var(--sp-1);
  box-shadow: 0 -4px 20px rgba(61,26,30,.15);
}
#float-bar.visible { display: flex; }

.float-price { color: var(--dark); font-weight: var(--fw-extra); font-size: 1.1rem; }
.float-price s { color: var(--text-soft); font-weight: var(--fw-regular); font-size: var(--fs-sm); margin-right: var(--sp-2); }

.btn-float {
  display: block; width: 100%; text-align: center;
  font-size: var(--fs-lg);
  padding: 14px;
}


/* ══ RESPONSIVO ═════════════════════════════════════════════════ */
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    padding-top: 110px;
    text-align: center;
  }
  .hero-imgs { display: none; }

  /* Fix 1 — badge centralizado */
  .hero-badge {
    display: block;
    width: fit-content;
    margin: 0 auto var(--sp-5);
  }

  /* Fix 2 — espaçamento hero (usa #hero porque não existe classe .hero no HTML) */
  #hero h1                        { margin-bottom: var(--sp-6); }
  #hero .hero-text p:not(.hero-sub) { margin-bottom: var(--sp-12); }
  .btn-hero  {
    display: block;
    width: fit-content;
    margin: 0 auto var(--sp-8);
  }
  .hero-sub  { margin-top: var(--sp-3); line-height: 1.9; }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 180px 180px;
  }
  .photo-grid .big { grid-column: span 2; }

  .bonus-cards,
  .roi-cards,
  .obj-cards  { grid-template-columns: 1fr; }
  .bonus-card--destaque { grid-template-columns: 1fr; }
  .bonus-card--destaque .bonus-card-img { min-height: 140px; }

  .comp-wrap  { grid-template-columns: 1fr; }

  /* Fix 3 — números centralizados nos círculos */
  .mod-num {
    flex-shrink: 0;
    line-height: 64px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Fix 5 — bio da instrutora centralizada */
  .bio-wrap  {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .bio-text,
  .bio-text h2,
  .bio-text p,
  .bio-text .badge { text-align: center; }
  .bio-stats       { justify-content: center; }
}

/* ══ HERO — espaçamento desktop ════════════════════════════════ */
@media (min-width: 901px) {
  .hero-badge       { margin-bottom: var(--sp-7); }
  .hero h1          { margin-bottom: var(--sp-10); line-height: 1.25; }
  .hero p:not(.hero-sub) { margin-bottom: var(--sp-12); }
  .btn-hero         { margin-bottom: var(--sp-6); }
  .hero-sub         { margin-top: var(--sp-5); line-height: 1.85; }
}

@media (max-width: 600px) {
  #float-bar.visible { display: flex; }
  .header-cta        { display: none; }

  /* Fix 4 — texto cortado no carousel */
  .carousel-wrap  { overflow: hidden; }
  .carousel-track { gap: 0; }
  .dep-card       {
    min-width: 100%;
    width: 100%;
    padding: 28px 20px;
    box-sizing: border-box;
  }

  /* Fix 6 — CTA final: botão menor + mais respiro */
  #final {
    padding: var(--sp-16) var(--sp-6);
    gap: 0;
  }
  #final h2        { font-size: clamp(1.4rem, 5vw, 2rem); margin-bottom: var(--sp-8); }
  #final > p       { font-size: var(--fs-base); max-width: 100%; margin-bottom: var(--sp-10); }
  #final .btn-final {
    font-size: var(--fs-base);
    padding: 14px 28px;
    width: auto;
    align-self: center;
    margin-bottom: var(--sp-8);
  }
  .final-guarantee { font-size: var(--fs-2xs); line-height: 1.8; }
}
