/* =============================================================
   We Love Business — Site WeAgency
   Stylesheet completo. Vanilla. Sem build.
   ============================================================= */

/* ---- Fontes ---- */
@font-face {
  font-family: 'Lufga';
  src: url('assets/fonts/lufga-regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Lufga';
  src: url('assets/fonts/lufga-medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Lufga';
  src: url('assets/fonts/lufga-bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Lufga';
  src: url('assets/fonts/lufga-black.otf') format('opentype');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Chalkiez';
  src: url('assets/fonts/chalkiez-regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

/* ---- Variáveis de marca ---- */
:root {
  --wlb-orange: #D97559;
  --wlb-orange-deep: #B85C42;
  --wlb-orange-light: #F2B39A;
  --wlb-lilac: #C7A5F3;
  --wlb-lilac-soft: #E4D4FA;
  --wlb-purple-dark: #3D3654;
  --wlb-dark: #1E1B2E;
  --wlb-beige: #F5EFE8;
  --wlb-white: #FFFCF8;
  --shadow-soft: 0 10px 30px rgba(30, 27, 46, .15);
  --shadow-deep: 0 20px 60px rgba(30, 27, 46, .35);
  --radius-card: 18px;
  --radius-pill: 999px;
  --maxw: 1280px;

  /* Filtros do toggle dia/noite/golden */
  --photo-filter: brightness(1) saturate(1.05) contrast(1);
}

[data-theme="night"] {
  --photo-filter: brightness(0.55) saturate(0.85) contrast(1.05) hue-rotate(-10deg);
}
[data-theme="golden"] {
  --photo-filter: brightness(1.05) saturate(1.25) contrast(1.02) sepia(0.18) hue-rotate(-8deg);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; font-family: 'Lufga', system-ui, -apple-system, sans-serif; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--wlb-beige);
  color: var(--wlb-dark);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }

/* Acessibilidade — focus visible */
a:focus-visible, button:focus-visible, .room-card:focus-visible, .map-zone:focus-visible {
  outline: 3px solid var(--wlb-lilac);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 239, 232, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 27, 46, 0.06);
  transition: transform .4s ease, background .3s ease;
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { height: 32px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--wlb-purple-dark);
  transition: color .2s;
}
.nav-links a:hover { color: var(--wlb-orange); }
.nav-cta {
  background: var(--wlb-orange);
  color: var(--wlb-dark);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--wlb-orange-deep); transform: translateY(-2px); }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 28px 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--wlb-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
  transition: filter 1.2s ease;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.12) translateY(-2%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Overlay leve: foto domina, vinheta nas bordas + sombra na base pra tagline ler */
  background:
    radial-gradient(ellipse at 50% 40%, rgba(30,27,46,0) 45%, rgba(30,27,46,.30) 100%),
    linear-gradient(180deg, rgba(30,27,46,0) 50%, rgba(30,27,46,.60) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  color: var(--wlb-white);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 180px);
  padding-bottom: 80px;
}
.hero-tagline {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 5.6vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--wlb-white);
  text-shadow: 0 6px 28px rgba(0,0,0,.65), 0 2px 8px rgba(0,0,0,.55);
  max-width: 900px;
  padding: 0 16px;
  animation: fadeUp 1.2s .4s both;
}
.hero-kicker {
  font-family: 'Chalkiez', serif;
  color: var(--wlb-orange-light);
  font-size: 22px;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  animation: fadeUp 1s .1s both;
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s .7s both;
}
.btn-primary {
  background: var(--wlb-orange);
  color: var(--wlb-dark);
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 12px 36px rgba(217,117,89,.42);
  transition: transform .2s, box-shadow .2s, background .2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover {
  background: var(--wlb-orange-deep);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(217,117,89,.55);
}
.btn-secondary {
  background: rgba(199,165,243,.18);
  color: var(--wlb-white);
  padding: 18px 30px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(199,165,243,.5);
  transition: background .2s, transform .2s;
}
.btn-secondary:hover { background: rgba(199,165,243,.28); transform: translateY(-2px); }

.hero-micro {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 252, 248, 0.7);
  animation: fadeUp 1s .9s both;
}

/* ============================================================
   HERO 2 — PROMESSA
   ============================================================ */
.promise {
  position: relative;
  min-height: 100vh;
  padding: 120px 28px 100px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(199,165,243,.10) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(217,117,89,.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--wlb-dark) 0%, var(--wlb-purple-dark) 100%);
  color: var(--wlb-white);
  overflow: hidden;
}
/* Costura visual hero 1 → hero 2 */
.promise-seam {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(30,27,46,.85) 0%, rgba(30,27,46,0) 100%);
  z-index: 1;
}
.promise-seam::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: clamp(140px, 22%, 320px);
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--wlb-orange) 50%, transparent 100%);
  opacity: .55;
}
.promise-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.promise-text { max-width: 720px; }
.promise-h2 {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  animation: fadeUp 1s .3s both;
}
.promise-h2 .accent { color: var(--wlb-orange-light); }
.promise-sub {
  margin-top: 22px;
  max-width: 600px;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 400;
  color: rgba(255, 252, 248, 0.88);
  animation: fadeUp 1s .5s both;
}

/* Selo flutuante (agora vive no hero 2) */
.promise-seal {
  position: relative;
  z-index: 2;
  background: rgba(199,165,243,.22);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(199,165,243,.5);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--wlb-white);
  font-family: 'Chalkiez', serif;
  transform: rotate(-8deg);
  animation: float 5s ease-in-out infinite, pulse 3s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(199,165,243,.3);
  flex-shrink: 0;
}
.promise-seal-title { font-size: 46px; line-height: .95; }
.promise-seal-sub { font-size: 18px; margin-top: 8px; font-family: 'Lufga', sans-serif; font-weight: 500; }
@keyframes float {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 20px 50px rgba(199,165,243,.3); }
  50% { box-shadow: 0 20px 60px rgba(199,165,243,.55); }
}

@media (max-width: 980px) {
  .promise-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .promise-text { margin: 0 auto; }
  .promise-sub { margin-left: auto; margin-right: auto; }
  .promise .hero-ctas { justify-content: center; }
  .promise-right { order: -1; }
  .promise-seal {
    width: 170px;
    height: 170px;
  }
  .promise-seal-title { font-size: 36px; }
  .promise-seal-sub { font-size: 15px; }
}
@media (max-width: 640px) {
  .promise { padding: 90px 22px 80px; }
  .promise .hero-ctas .btn-primary,
  .promise .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .promise .hero-ctas { gap: 12px; }
}

/* Hero 1 — tagline cinema responsiva */
@media (max-width: 820px) {
  .hero { padding: 100px 22px 80px; }
  .hero-tagline {
    font-size: clamp(40px, 11vw, 72px);
    line-height: 1.04;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,252,248,.7);
  font-family: 'Chalkiez', serif;
  font-size: 18px;
  text-align: center;
  animation: bounce 2.6s ease-in-out infinite;
}
.scroll-cue::after {
  content: "↓";
  display: block;
  font-size: 26px;
  margin-top: 6px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MAPA ISOMÉTRICO
   ============================================================ */
.section-map {
  padding: 100px 28px;
  background: linear-gradient(180deg, var(--wlb-beige) 0%, #ECE3D6 100%);
}
.section-head {
  max-width: var(--maxw);
  margin: 0 auto 50px;
  text-align: center;
}
.section-tag {
  font-family: 'Chalkiez', serif;
  color: var(--wlb-purple-dark);
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 14px;
}
.section-title {
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--wlb-purple-dark);
}
.section-title .accent { color: var(--wlb-orange-deep); }
.section-sub {
  margin-top: 18px;
  font-size: 18px;
  color: var(--wlb-purple-dark);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.map-wrap {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  background: var(--wlb-white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.map-svg {
  width: 100%;
  height: auto;
  display: block;
}
.map-zone {
  cursor: pointer;
  transition: filter .25s, transform .25s;
  transform-origin: center;
}
.map-zone rect, .map-zone polygon {
  transition: fill .25s, stroke .25s;
}
.map-zone:hover {
  filter: drop-shadow(0 0 12px rgba(199,165,243,.7));
}
.map-zone:hover rect, .map-zone:hover polygon {
  fill: var(--wlb-lilac-soft);
  stroke: var(--wlb-lilac);
}
.map-zone text { pointer-events: none; user-select: none; }
.map-zone .zone-num { font-family: 'Lufga', sans-serif; font-weight: 700; font-size: 13px; fill: var(--wlb-orange); }
.map-zone .zone-name { font-family: 'Lufga', sans-serif; font-size: 11px; font-weight: 700; fill: var(--wlb-purple-dark); }

.map-legend {
  margin-top: 30px;
  text-align: center;
  font-family: 'Chalkiez', serif;
  font-size: 18px;
  color: var(--wlb-orange-deep);
}

@media (max-width: 820px) {
  .map-wrap { padding: 16px; }
}

/* ============================================================
   SALAS (15 sections)
   ============================================================ */
.room {
  position: relative;
  min-height: 100vh;
  padding: 100px 28px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.room-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: var(--photo-filter);
  transition: filter 1.2s ease;
}
.room::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(30,27,46,.55) 0%, rgba(30,27,46,.88) 60%, rgba(30,27,46,.95) 100%);
}
.room-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  color: var(--wlb-white);
}
.room-text { max-width: 580px; }
.room-tag {
  font-family: 'Chalkiez', serif;
  color: var(--wlb-orange-light);
  font-size: 22px;
  margin-bottom: 14px;
  display: inline-block;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
.room-title {
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.room-sub {
  font-size: 19px;
  font-weight: 400;
  color: rgba(255, 252, 248, 0.92);
  margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.micro-scene {
  background: rgba(30, 27, 46, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-left: 4px solid var(--wlb-orange);
  padding: 18px 22px;
  border-radius: 4px 8px 8px 4px;
  font-family: 'Chalkiez', serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--wlb-white);
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.hotspots {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hotspot {
  background: rgba(30, 27, 46, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(199, 165, 243, 0.45);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14.5px;
  line-height: 1.45;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  width: 100%;
  transition: background .2s, transform .2s, border-color .2s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.hotspot:hover {
  background: rgba(61, 54, 84, 0.88);
  border-color: var(--wlb-lilac);
  transform: translateX(4px);
}
.hotspot-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--wlb-lilac);
  color: var(--wlb-purple-dark);
  font-family: 'Lufga', sans-serif;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  margin-top: 1px;
}
.hotspot-body strong { color: var(--wlb-white); display: block; margin-bottom: 2px; font-weight: 700; font-size: 14px; }
.hotspot-body span { color: rgba(255, 252, 248, 0.88); font-size: 13.5px; }

/* Agentes da sala (cards) */
.room-agents {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 18px;
  align-content: start;
}
.agent-card {
  background: rgba(30, 27, 46, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(199, 165, 243, 0.35);
  border-radius: var(--radius-card);
  padding: 16px 14px;
  text-align: center;
  cursor: pointer;
  transition: transform .25s, background .25s, border-color .25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.agent-card:hover {
  transform: translateY(-6px);
  background: rgba(61, 54, 84, 0.88);
  border-color: var(--wlb-lilac);
}
.agent-card::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199,165,243,.18), transparent);
  transition: left .6s ease;
}
.agent-card:hover::after { left: 100%; }
.agent-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 10px;
  overflow: hidden;
  border: 2px solid var(--wlb-orange-light);
  background: var(--wlb-purple-dark);
  box-shadow: 0 0 0 1px rgba(199, 165, 243, 0.35), 0 0 18px rgba(199, 165, 243, 0.35);
}
.agent-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.agent-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--wlb-white);
}
.agent-role {
  font-size: 13px;
  color: var(--wlb-orange-light);
  line-height: 1.35;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  display: block;
}

@media (max-width: 820px) {
  .room-content { grid-template-columns: 1fr; gap: 40px; }
  .room-bg { background-attachment: scroll; }
}

/* ============================================================
   PAINEL AO VIVO (ticker)
   ============================================================ */
.live-panel {
  background: var(--wlb-dark);
  color: var(--wlb-white);
  padding: 90px 28px;
  position: relative;
  overflow: hidden;
}
.live-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(217,117,89,.15), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(199,165,243,.15), transparent 40%);
}
.live-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.live-header {
  font-family: 'Chalkiez', serif;
  font-size: 22px;
  color: var(--wlb-orange-light);
  margin-bottom: 8px;
}
.live-h2 {
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.live-disclaimer {
  font-size: 13px;
  color: rgba(255,252,248,.55);
  margin-bottom: 40px;
}
.dot-live {
  display: inline-block;
  width: 10px; height: 10px;
  background: #4ADE80;
  border-radius: 50%;
  margin-right: 8px;
  animation: blink 1.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px #4ADE80; }
  50% { opacity: 0.3; box-shadow: 0 0 0 #4ADE80; }
}
.ticker-window {
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,252,248,.1);
  border-radius: 14px;
  height: 260px;
  overflow: hidden;
  position: relative;
  margin-bottom: 36px;
}
.ticker-track {
  position: absolute;
  width: 100%;
  animation: ticker-roll 30s linear infinite;
  display: flex;
  flex-direction: column;
}
.ticker-window:hover .ticker-track { animation-play-state: paused; }
.ticker-line {
  padding: 14px 24px;
  border-bottom: 1px dashed rgba(255,252,248,.08);
  font-size: 16px;
  color: rgba(255,252,248,.92);
  text-align: left;
  font-family: 'Lufga', sans-serif;
  font-feature-settings: "tnum";
}
.ticker-line .time {
  color: var(--wlb-orange-light);
  font-weight: 700;
  margin-right: 12px;
  font-family: 'Lufga', sans-serif;
  font-size: 15px;
  letter-spacing: .02em;
}
.ticker-line .agent {
  color: var(--wlb-lilac);
  font-weight: 700;
  margin-right: 10px;
}
@keyframes ticker-roll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.live-counter {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--wlb-orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.live-counter-sub {
  font-size: 14px;
  color: rgba(255,252,248,.6);
}

/* ============================================================
   TIMELINE v2 — cards cinematográficos com foto landscape
   ============================================================ */
.section-timeline {
  padding: 100px 28px;
  background: var(--wlb-beige);
}
.timeline-wrap {
  max-width: 1100px;
  margin: 60px auto 0;
  position: relative;
}

/* Linha vertical pontilhada (estática) + barra de preenchimento que cresce com scroll */
.timeline-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-image: linear-gradient(
    to bottom,
    var(--wlb-orange) 0,
    var(--wlb-orange) 8px,
    transparent 8px,
    transparent 16px
  );
  background-size: 2px 16px;
  background-repeat: repeat-y;
  opacity: .45;
  z-index: 1;
}
.timeline-line-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(
    to bottom,
    var(--wlb-orange) 0%,
    var(--wlb-orange-deep) 100%
  );
  box-shadow: 0 0 14px rgba(217, 117, 89, .55);
  transition: height .15s linear;
}

.timeline-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 2;
}

/* Cada marco: grid de 3 colunas [card-esquerdo | dot central | card-direito] */
.timeline-step {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: 24px;
  position: relative;

  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: calc(var(--step-i, 0) * 60ms);
}
.timeline-step.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Dot central (substitui o avatar antigo) */
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--wlb-orange);
  grid-column: 2;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  box-shadow:
    0 0 0 4px var(--wlb-beige),
    0 0 0 6px rgba(217, 117, 89, .35),
    0 0 16px rgba(217, 117, 89, .55);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Connector: linha curva sutil do dot até o card */
.timeline-connector {
  position: absolute;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(217,117,89,.55), rgba(217,117,89,.15));
  z-index: 2;
  pointer-events: none;
  transform: translateY(-50%);
}
.timeline-step.side-left .timeline-connector {
  right: 50%;
  left: auto;
  width: 28px;
  margin-right: 7px;
  background: linear-gradient(270deg, rgba(217,117,89,.55), rgba(217,117,89,.15));
}
.timeline-step.side-right .timeline-connector {
  left: 50%;
  right: auto;
  width: 28px;
  margin-left: 7px;
}

/* Card cinematográfico — foto landscape em destaque */
.timeline-card {
  display: block;
  background: var(--wlb-white);
  border: none;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  box-shadow:
    0 8px 24px rgba(30, 27, 46, .12),
    0 2px 6px rgba(30, 27, 46, .06);
  width: 100%;
  max-width: 480px;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  font-family: inherit;
  color: inherit;
}
.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 36px rgba(30, 27, 46, .22),
    0 4px 10px rgba(30, 27, 46, .08);
}
.timeline-card:focus-visible {
  outline: 3px solid var(--wlb-lilac);
  outline-offset: 4px;
}
.timeline-step.side-left .timeline-card {
  grid-column: 1;
  justify-self: end;
}
.timeline-step.side-right .timeline-card {
  grid-column: 3;
  justify-self: start;
}

/* Foto landscape */
.timeline-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--wlb-purple-dark);
}
.timeline-photo picture,
.timeline-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.timeline-card:hover .timeline-photo img {
  transform: scale(1.05);
}

/* CTA "abrir perfil →" — aparece no hover */
.timeline-card-cta {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(30, 27, 46, .82);
  color: var(--wlb-orange-light);
  font-family: 'Lufga', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  z-index: 2;
}
.timeline-card:hover .timeline-card-cta,
.timeline-card:focus-visible .timeline-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Bloco de metadata abaixo da foto */
.timeline-meta {
  padding: 18px 22px 20px;
  border-top: 3px solid var(--wlb-orange-light);
}
.timeline-step.side-left .timeline-meta { border-top-color: var(--wlb-orange); }
.timeline-step.side-right .timeline-meta { border-top-color: var(--wlb-lilac); }

.timeline-meta-top {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.timeline-hour {
  font-family: 'Chalkiez', serif;
  font-size: 30px;
  color: var(--wlb-orange);
  line-height: 1;
}
.timeline-agent {
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wlb-purple-dark);
}
.timeline-role {
  font-family: 'Lufga', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(61, 54, 84, .68);
  line-height: 1.35;
  margin-bottom: 8px;
}
.timeline-action {
  font-family: 'Lufga', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--wlb-purple-dark);
  line-height: 1.45;
}

.timeline-note {
  margin-top: 80px;
  text-align: center;
  font-style: normal;
  font-family: 'Chalkiez', serif;
  font-size: 18px;
  color: var(--wlb-purple-dark);
}

/* Mobile: stack todos à direita, sem dot central, sem connector */
@media (max-width: 820px) {
  .timeline-wrap { max-width: 100%; padding-left: 4px; }
  .timeline-line { left: 18px; transform: none; }
  .timeline-grid { gap: 36px; }
  .timeline-step {
    grid-template-columns: 36px 1fr;
    gap: 8px;
    align-items: flex-start;
  }
  .timeline-dot {
    grid-column: 1;
    margin: 18px auto 0;
  }
  .timeline-connector { display: none; }
  .timeline-step.side-left .timeline-card,
  .timeline-step.side-right .timeline-card {
    grid-column: 2;
    justify-self: stretch;
    max-width: 340px;
  }
  .timeline-hour { font-size: 26px; }
  .timeline-agent { font-size: 14px; }
  .timeline-action { font-size: 15px; }
  .timeline-role { font-size: 12px; }
  .timeline-meta { padding: 16px 18px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-step {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .timeline-line-fill { transition: none; }
  .timeline-card:hover { transform: none; }
  .timeline-card:hover .timeline-photo img { transform: none; }
}

/* ============================================================
   TIMELINE — PACOTE ASSOMBRO
   1) Badge "ACONTECENDO AGORA" (top-right da foto)
   2) Hover rico no card (foto zoom + CTA "abrir perfil")  -> em .timeline-card
   3) Botão "viver o dia em 10s"
   4) Pin lateral "você está aqui" (lado direito)
   ============================================================ */

/* Utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 1) Badge ACONTECENDO AGORA ---------- */
.timeline-now-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(217, 117, 89, .95);
  color: var(--wlb-white);
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow:
    0 4px 14px rgba(217, 117, 89, .55),
    0 0 0 2px rgba(242, 179, 154, .45);
  pointer-events: none;
  z-index: 5;
  animation: timeline-now-pulse 1.5s ease-in-out infinite;
}
.timeline-step.is-now .timeline-card {
  outline: 2px solid var(--wlb-orange);
  outline-offset: 0;
  box-shadow:
    0 8px 32px rgba(217, 117, 89, .35),
    0 2px 10px rgba(30, 27, 46, .12);
}
.timeline-step.is-now .timeline-dot {
  background: var(--wlb-orange);
  box-shadow:
    0 0 0 4px var(--wlb-beige),
    0 0 0 7px rgba(217, 117, 89, .55),
    0 0 24px rgba(217, 117, 89, .75);
  transform: scale(1.2);
}
@keyframes timeline-now-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 4px 14px rgba(217, 117, 89, .55),
      0 0 0 2px rgba(242, 179, 154, .45);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      0 4px 20px rgba(217, 117, 89, .75),
      0 0 0 4px rgba(242, 179, 154, .55);
  }
}

/* ---------- 3) Botão "viver o dia em 30s" ---------- */
.timeline-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wlb-orange);
  color: var(--wlb-dark);
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px 12px 18px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 22px;
  box-shadow:
    0 6px 18px rgba(217, 117, 89, .35),
    0 0 0 1px rgba(217, 117, 89, .15);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.timeline-play-btn:hover {
  background: var(--wlb-orange-light);
  color: var(--wlb-dark);
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(217, 117, 89, .45),
    0 0 0 2px rgba(217, 117, 89, .2),
    0 0 28px rgba(217, 117, 89, .25);
}
.timeline-play-btn:focus-visible {
  outline: 3px solid var(--wlb-lilac);
  outline-offset: 4px;
}
.timeline-play-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.timeline-play-btn.is-playing .timeline-play-icon {
  /* swap pra pause via path no JS */
}
.timeline-play-num {
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
}

/* Step em foco durante autoplay */
.timeline-step.is-spotlight .timeline-card {
  box-shadow:
    0 20px 48px rgba(217, 117, 89, .35),
    0 0 0 2px rgba(217, 117, 89, .45),
    0 0 60px rgba(217, 117, 89, .25);
  transform: translateY(-4px);
  transition: box-shadow .35s ease, transform .35s ease;
}
.timeline-step.is-spotlight .timeline-photo img {
  transform: scale(1.05);
  transition: transform .5s ease;
}
.timeline-step.is-spotlight .timeline-dot {
  background: var(--wlb-orange);
  transform: scale(1.4);
  box-shadow:
    0 0 0 4px var(--wlb-beige),
    0 0 0 8px rgba(217, 117, 89, .55),
    0 0 30px rgba(217, 117, 89, .85);
}

/* ---------- 4) Pin lateral "você está aqui" (lado DIREITO) ---------- */
/* Position fixed: aparece só quando .is-active (toggled via IntersectionObserver da seção) */
.timeline-pin {
  position: fixed;
  top: 110px;
  right: 32px;
  left: auto;
  width: 80px;
  display: none;
  pointer-events: auto;
  z-index: 4;
  opacity: 0;
  transition: opacity .25s ease;
}
.timeline-pin.is-active {
  display: block;
  opacity: 1;
}
.timeline-pin-label {
  font-family: 'Chalkiez', serif;
  font-size: 11px;
  color: var(--wlb-orange);
  text-align: center;
  letter-spacing: .04em;
  line-height: 1.1;
  margin-bottom: 8px;
  opacity: .9;
}
.timeline-pin-track {
  height: 260px;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(199, 165, 243, .35) 0,
    rgba(199, 165, 243, .35) 4px,
    transparent 4px,
    transparent 10px
  );
  background-size: 2px 10px;
  background-repeat: repeat-y;
  background-position: center top;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: auto;
}
.timeline-pin-dot {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  font-family: 'Lufga', sans-serif;
  font-weight: 600;
  font-size: 9px;
  color: rgba(61, 54, 84, .55);
  letter-spacing: .04em;
  transition: color .25s ease;
}
.timeline-pin-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(199, 165, 243, .55);
  flex-shrink: 0;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  margin-left: 26px;
}
.timeline-pin-dot:hover { color: var(--wlb-orange); }
.timeline-pin-dot:hover::before {
  background: var(--wlb-orange-light);
  transform: scale(1.2);
}
.timeline-pin-dot:focus-visible {
  outline: 2px solid var(--wlb-lilac);
  outline-offset: 2px;
  border-radius: 4px;
}
.timeline-pin-dot.is-active {
  color: var(--wlb-orange);
}
.timeline-pin-dot.is-active::before {
  background: var(--wlb-orange);
  transform: scale(1.5);
  box-shadow:
    0 0 0 3px rgba(217, 117, 89, .25),
    0 0 12px rgba(217, 117, 89, .55);
}
.timeline-pin-dot-label {
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
}

/* Pin só em desktop ≥1024px */
@media (max-width: 1023px) {
  .timeline-pin { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-now-badge { animation: none; }
  .timeline-step.is-spotlight .timeline-card,
  .timeline-step.is-spotlight .timeline-photo img,
  .timeline-step.is-spotlight .timeline-dot {
    transition: none;
  }
}

/* ============================================================
   PROVA SOCIAL
   ============================================================ */
.section-prova {
  padding: 100px 28px;
  background: linear-gradient(180deg, var(--wlb-beige) 0%, #ECE3D6 100%);
}
.transform-grid {
  max-width: var(--maxw);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.transform-card {
  background: var(--wlb-white);
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border-top: 5px solid var(--wlb-orange);
  transition: transform .3s;
}
.transform-card:hover { transform: translateY(-8px); }
.transform-tag {
  font-family: 'Chalkiez', serif;
  color: var(--wlb-purple-dark);
  font-size: 22px;
  margin-bottom: 10px;
}
.transform-card h3 {
  font-weight: 900;
  font-size: 22px;
  color: var(--wlb-purple-dark);
  margin-bottom: 18px;
}
.transform-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
  font-size: 15px;
}
.transform-row b { color: var(--wlb-purple-dark); font-weight: 700; }
.transform-row.free b { color: var(--wlb-purple-dark); }

.polaroid-wall {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 30px 0;
}
.polaroid {
  background: var(--wlb-white);
  padding: 16px 16px 28px;
  box-shadow: var(--shadow-deep);
  border-radius: 4px;
  transition: transform .3s ease;
  position: relative;
}
.polaroid:nth-child(1) { transform: rotate(-3deg); }
.polaroid:nth-child(2) { transform: rotate(2deg); }
.polaroid:nth-child(3) { transform: rotate(-1.5deg); }
.polaroid:nth-child(4) { transform: rotate(3.5deg); }
.polaroid:hover { transform: rotate(0) translateY(-6px); z-index: 3; }
.polaroid::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 80px; height: 18px;
  background: rgba(217,117,89,.5);
  border: 1px dashed rgba(217,117,89,.7);
}
.polaroid-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--wlb-purple-dark);
  border-radius: 2px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wlb-lilac-soft);
  font-family: 'Chalkiez', serif;
  font-size: 50px;
  background: linear-gradient(135deg, var(--wlb-lilac-soft), var(--wlb-orange-light));
  color: var(--wlb-purple-dark);
}
.polaroid-name { font-weight: 700; font-size: 15px; color: var(--wlb-purple-dark); }
.polaroid-quote {
  font-family: 'Chalkiez', serif;
  font-size: 17px;
  color: var(--wlb-purple-dark);
  margin: 10px 0;
  line-height: 1.3;
}
.polaroid-result { font-size: 13px; color: var(--wlb-purple-dark); font-weight: 700; }

@media (max-width: 980px) {
  .transform-grid, .polaroid-wall { grid-template-columns: 1fr; }
}

/* ============================================================
   OFERTA
   ============================================================ */
.section-oferta {
  padding: 110px 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(217,117,89,.16), transparent 60%),
    var(--wlb-dark);
  color: var(--wlb-white);
  position: relative;
  overflow: hidden;
}
.oferta-head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 60px;
}
.oferta-h2 {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  color: var(--wlb-orange);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 30px;
}
.oferta-sub {
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255,252,248,.85);
  font-weight: 400;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

.journey-grid {
  max-width: var(--maxw);
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.journey-card {
  background: rgba(255, 252, 248, 0.04);
  border: 1px solid rgba(199,165,243,.2);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.journey-card:nth-child(1) { border-color: rgba(217,117,89,.45); }
.journey-card:nth-child(3) { background: rgba(199,165,243,.08); border-color: rgba(199,165,243,.5); }
.journey-tag {
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--wlb-orange-light);
  margin-bottom: 10px;
}
.journey-card:nth-child(3) .journey-tag { color: var(--wlb-lilac); }
.journey-card h3 {
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 18px;
}
.journey-card p {
  font-size: 15px;
  color: rgba(255,252,248,.78);
  line-height: 1.55;
}
.journey-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;
}

.objection-text {
  max-width: 780px;
  margin: 0 auto 60px;
  background: rgba(199,165,243,.08);
  border-left: 3px solid var(--wlb-lilac);
  padding: 28px 32px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,252,248,.88);
}
.objection-text p { margin-bottom: 8px; }
.objection-text p:last-child { margin-bottom: 0; }
.objection-highlight {
  display: block;
  margin: 20px 0;
  padding: 18px 24px;
  background: rgba(242,179,154,.12);
  border-left: 3px solid var(--wlb-orange);
  border-radius: 6px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--wlb-white);
}

.bonus-box {
  max-width: 720px;
  margin: 0 auto 60px;
  background: rgba(255,252,248,.04);
  border-radius: var(--radius-card);
  padding: 36px;
}
.bonus-head {
  font-family: 'Chalkiez', serif;
  color: var(--wlb-lilac);
  font-size: 26px;
  text-align: center;
  margin-bottom: 22px;
}
.bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bonus-list li {
  display: flex;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  align-items: flex-start;
}
.bonus-list .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--wlb-orange);
  color: var(--wlb-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}

.fundadora-box {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.fundadora-head {
  font-family: 'Chalkiez', serif;
  color: var(--wlb-orange);
  font-size: 32px;
  margin-bottom: 12px;
}
.fundadora-text {
  font-size: 16px;
  color: rgba(255,252,248,.8);
  line-height: 1.5;
  margin-bottom: 26px;
}
.fundadora-counter {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: clamp(46px, 7vw, 80px);
  color: var(--wlb-orange-light);
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(217,117,89,.4);
  margin-bottom: 8px;
}
.fundadora-counter-sub {
  font-size: 13px;
  color: rgba(255,252,248,.55);
}

.oferta-ctas {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.oferta-ctas .btn-primary {
  font-size: 19px;
  padding: 22px 44px;
}
.footnote {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,252,248,.55);
  max-width: 600px;
}

@media (max-width: 980px) {
  .journey-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.section-faq {
  padding: 100px 28px;
  background: var(--wlb-beige);
}
.faq-wrap {
  max-width: 820px;
  margin: 50px auto 0;
}
.faq-item {
  background: var(--wlb-white);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(30,27,46,.06);
  transition: box-shadow .25s;
}
.faq-item.open { box-shadow: 0 12px 36px rgba(30,27,46,.12); }
.faq-q {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 17px;
  color: var(--wlb-purple-dark);
  text-align: left;
  gap: 20px;
}
.faq-q-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--wlb-orange);
  color: var(--wlb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform .3s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .25s;
  padding: 0 28px;
  color: rgba(61,54,84,.85);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 28px 24px; }
.faq-bottom {
  text-align: center;
  margin-top: 36px;
  font-family: 'Chalkiez', serif;
  color: var(--wlb-purple-dark);
  font-size: 22px;
}
.faq-bella {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--wlb-lilac);
  color: var(--wlb-purple-dark);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s, transform .2s;
}
.faq-bella:hover { background: var(--wlb-lilac-soft); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--wlb-dark);
  color: var(--wlb-white);
  padding: 80px 28px 40px;
  text-align: center;
}
.footer-tagline {
  font-family: 'Chalkiez', serif;
  color: var(--wlb-orange);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 36px;
}
.footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 36px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,252,248,.75);
  transition: color .2s;
}
.footer-links a:hover { color: var(--wlb-orange-light); }
.footer-logo {
  margin: 30px auto;
  height: 40px;
  width: auto;
  opacity: .85;
}
.footer-legal {
  font-size: 12px;
  color: rgba(255,252,248,.6);
  line-height: 1.6;
  margin-top: 30px;
}
.footer-finale {
  font-family: 'Chalkiez', serif;
  color: var(--wlb-lilac);
  font-size: 18px;
  margin-top: 30px;
}

/* ============================================================
   STICKY ELEMENTS
   ============================================================ */
/* Mini-mapa */
.minimap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 200px;
  background: rgba(255,252,248,.96);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: var(--shadow-deep);
  padding: 12px;
  z-index: 80;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
.minimap.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.minimap-head {
  font-family: 'Chalkiez', serif;
  font-size: 13px;
  color: var(--wlb-orange-deep);
  margin-bottom: 6px;
  text-align: center;
}
.minimap-current {
  font-weight: 700;
  font-size: 13px;
  color: var(--wlb-purple-dark);
  text-align: center;
  margin-top: 8px;
  min-height: 18px;
}
.minimap svg { width: 100%; height: auto; cursor: pointer; }
.minimap svg .map-zone:hover rect { fill: var(--wlb-orange-light); }
.minimap svg .map-zone.active rect { fill: var(--wlb-orange); }

@media (max-width: 820px) {
  .minimap { display: none; }
}

/* Toggle dia/noite/golden */
.theme-toggle {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 90;
  display: flex;
  background: rgba(255,252,248,.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  padding: 4px;
  box-shadow: var(--shadow-soft);
}
.theme-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .2s;
  color: var(--wlb-purple-dark);
}
.theme-btn.active {
  background: var(--wlb-orange);
  color: var(--wlb-white);
}
.theme-btn:hover:not(.active) {
  background: var(--wlb-lilac-soft);
}
@media (max-width: 820px) {
  .theme-toggle { top: auto; bottom: 100px; right: 12px; }
  .theme-btn { width: 34px; height: 34px; }
}

/* CTA mobile sticky legacy — substituído por .cta-float (ver seção QUICK WINS) */
.cta-mobile { display: none !important; }

/* ============================================================
   MODAL AGENTE
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 27, 46, .85);
  backdrop-filter: blur(12px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--wlb-beige);
  border-radius: 24px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  position: relative;
  transform: scale(.92);
  transition: transform .35s cubic-bezier(.34, 1.5, .64, 1);
  box-shadow: var(--shadow-deep);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,252,248,.9);
  font-size: 18px;
  color: var(--wlb-purple-dark);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-photo {
  height: 280px;
  background: var(--wlb-purple-dark);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  position: relative;
}
.modal-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
}
.modal-photo img.active { opacity: 1; }
.modal-body { padding: 26px 32px 36px; }
.modal-name {
  font-weight: 900;
  font-size: 30px;
  color: var(--wlb-purple-dark);
  letter-spacing: -0.01em;
}
.modal-breed {
  font-family: 'Chalkiez', serif;
  font-size: 18px;
  color: var(--wlb-orange);
  margin-bottom: 6px;
}
.modal-role {
  font-size: 15px;
  color: rgba(61,54,84,.75);
  font-weight: 500;
  margin-bottom: 22px;
}
.modal-section-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--wlb-orange-deep);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.modal-bullets {
  list-style: none;
  margin-bottom: 22px;
}
.modal-bullets li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}
.modal-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--wlb-orange);
  border-radius: 50%;
}
.modal-quote {
  background: var(--wlb-lilac-soft);
  border-radius: 12px;
  padding: 18px 22px;
  font-family: 'Chalkiez', serif;
  font-size: 22px;
  color: var(--wlb-purple-dark);
  line-height: 1.3;
  margin-bottom: 22px;
}
.modal-quote::before {
  content: "“";
  font-size: 50px;
  line-height: 0;
  vertical-align: -20px;
  color: var(--wlb-orange);
  margin-right: 4px;
}
.modal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.modal-chips span {
  background: rgba(217,117,89,.14);
  color: var(--wlb-orange-deep);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

/* Hotspot tooltip */
.tooltip-pop {
  position: fixed;
  z-index: 150;
  background: var(--wlb-dark);
  color: var(--wlb-white);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
  max-width: 280px;
  box-shadow: var(--shadow-deep);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
}
.tooltip-pop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.tooltip-pop::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 24px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--wlb-dark);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .room-bg { background-attachment: scroll !important; }
  .hero-bg img { animation: none !important; }
}

/* =============================================================
   TOUR PAGE — hero compacto e CTA final
   ============================================================= */

/* Hero do tour: 60vh, fundo lilás escuro com glow sutil */
.tour-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse at center top, #4A3F70 0%, var(--wlb-dark) 60%, #14111F 100%);
  overflow: hidden;
  isolation: isolate;
}
.tour-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(199, 165, 243, .22), transparent 45%),
    radial-gradient(circle at 82% 70%, rgba(217, 117, 89, .18), transparent 50%);
  z-index: -1;
  pointer-events: none;
}
.tour-hero-content {
  max-width: 880px;
  text-align: center;
  color: var(--wlb-white);
}
.tour-hero-kicker {
  display: inline-block;
  font-family: 'Chalkiez', serif;
  color: var(--wlb-lilac);
  font-size: 20px;
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.tour-hero-title {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--wlb-white);
  margin-bottom: 22px;
}
.tour-hero-title .accent {
  color: var(--wlb-orange-light);
  font-style: normal;
}
.tour-hero-sub {
  font-family: 'Lufga', sans-serif;
  font-weight: 500;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 252, 248, .82);
  max-width: 620px;
  margin: 0 auto;
}
.tour-scroll-cue {
  position: static;
  margin: 56px auto 0;
  color: rgba(255, 252, 248, .65);
  display: block;
  width: max-content;
  transform: none;
  left: auto;
}
.tour-scroll-cue::after {
  background: rgba(255, 252, 248, .65);
}

@media (max-width: 640px) {
  .tour-hero {
    min-height: 48vh;
    padding: 100px 20px 60px;
  }
  .tour-scroll-cue { margin-top: 36px; }
}

/* CTA final do tour — grande, lilás escuro com glow laranja */
.tour-final-cta {
  position: relative;
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--wlb-dark) 0%, #2A2440 100%);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.tour-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 117, 89, .28), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(199, 165, 243, .18), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.tour-final-inner {
  max-width: 820px;
  margin: 0 auto;
  color: var(--wlb-white);
}
.tour-final-kicker {
  display: inline-block;
  font-family: 'Chalkiez', serif;
  color: var(--wlb-lilac);
  font-size: 22px;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.tour-final-title {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--wlb-white);
  margin-bottom: 24px;
}
.tour-final-title .accent {
  color: var(--wlb-orange-light);
  font-style: normal;
}
.tour-final-sub {
  font-family: 'Lufga', sans-serif;
  font-weight: 400;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 252, 248, .85);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.tour-final-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}
.tour-final-ctas .btn-secondary {
  color: var(--wlb-lilac-soft);
  border-color: rgba(199, 165, 243, .55);
}
.tour-final-ctas .btn-secondary:hover {
  background: rgba(199, 165, 243, .14);
  color: var(--wlb-white);
}
.tour-final-micro {
  font-family: 'Lufga', sans-serif;
  font-size: 14px;
  color: rgba(255, 252, 248, .6);
  margin: 0;
}

@media (max-width: 640px) {
  .tour-final-cta { padding: 80px 20px; }
}

/* =============================================================
   QUICK WINS — 6 features novas (Onda Quick Wins · 2026-05-23)
   ============================================================= */

/* ---- 1. STACK STRIP ---- */
.stack-strip {
  background: var(--wlb-beige);
  padding: 56px 28px 64px;
  text-align: center;
  border-top: 1px solid rgba(30,27,46,.06);
}
.stack-strip-tagline {
  font-family: 'Lufga', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(30,27,46,.65);
  margin: 0 0 26px;
  letter-spacing: .01em;
}
.stack-strip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}
.stack-strip-list li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stack-strip-list img {
  height: 36px;
  width: auto;
  max-width: 140px;
  filter: brightness(0);
  opacity: .55;
  transition: opacity .25s, transform .25s;
  object-fit: contain;
}
.stack-strip-list li:hover img,
.stack-strip-list li:focus-within img {
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 720px) {
  .stack-strip { padding: 44px 16px 52px; }
  .stack-strip-list {
    gap: 24px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .stack-strip-list::-webkit-scrollbar { display: none; }
  .stack-strip-list li { flex: 0 0 auto; scroll-snap-align: center; }
  .stack-strip-list img { height: 28px; }
}

/* ---- 2. GARANTIA 7 DIAS ---- */
.garantia-box {
  max-width: 720px;
  margin: 0 auto 50px;
  background: linear-gradient(135deg, rgba(199,165,243,.18), rgba(199,165,243,.08));
  border: 1px solid rgba(199,165,243,.32);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: 0 12px 32px rgba(199,165,243,.08);
}
.garantia-shield {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  color: var(--wlb-orange-light);
  margin-top: 4px;
}
.garantia-content {
  flex: 1;
  min-width: 0;
}
.garantia-head {
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--wlb-white);
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -.005em;
}
.garantia-text {
  font-family: 'Lufga', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,252,248,.85);
  margin: 0 0 12px;
}
.garantia-micro {
  font-family: 'Lufga', sans-serif;
  font-size: 14px;
  color: rgba(255,252,248,.6);
  margin: 0;
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}
@media (max-width: 640px) {
  .garantia-box {
    flex-direction: column;
    gap: 14px;
    padding: 24px 22px;
    text-align: left;
  }
  .garantia-shield { width: 44px; height: 44px; }
}

/* ---- 3. BÔNUS DE FUNDADORA (dentro do bonus-box) ---- */
.bonus-fundadora {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px dashed rgba(199,165,243,.28);
}
.bonus-fundadora-head {
  font-family: 'Chalkiez', serif;
  color: var(--wlb-orange-light);
  font-size: 26px;
  text-align: center;
  margin-bottom: 22px;
  line-height: 1.1;
}
.bonus-fundadora-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bonus-card {
  background: rgba(255,252,248,.05);
  border: 1px solid rgba(199,165,243,.18);
  border-radius: 14px;
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  transition: transform .25s, border-color .25s, background .25s;
}
.bonus-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217,117,89,.45);
  background: rgba(255,252,248,.08);
}
.bonus-card-icon {
  width: 32px;
  height: 32px;
  color: var(--wlb-orange-light);
  margin-bottom: 2px;
}
.bonus-card-name {
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--wlb-white);
  line-height: 1.25;
  letter-spacing: .01em;
}
.bonus-card-body {
  font-family: 'Lufga', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,252,248,.78);
  margin: 0;
}
.bonus-card-value {
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--wlb-orange);
  background: rgba(217,117,89,.14);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  align-self: flex-start;
  letter-spacing: .005em;
}
@media (max-width: 820px) {
  .bonus-fundadora-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ---- 4. FLOATING CTA CONTEXTUAL ---- */
.cta-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 96;
  background: var(--wlb-orange);
  color: var(--wlb-white);
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 14px 34px rgba(217,117,89,.45), 0 2px 6px rgba(30,27,46,.18);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .35s, transform .35s, background .2s;
  white-space: nowrap;
  max-width: calc(100vw - 48px);
  text-align: center;
}
.cta-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cta-float:hover {
  background: var(--wlb-orange-deep);
  transform: translateY(-2px);
}
.cta-float-label {
  display: inline-block;
  transition: opacity .3s;
}
.cta-float-label.fading { opacity: 0; }
.cta-float:focus-visible {
  outline: 3px solid var(--wlb-lilac);
  outline-offset: 3px;
}
@media (max-width: 720px) {
  .cta-float {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
    padding: 16px 18px;
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-float { transition: none; }
  .cta-float-label { transition: none; }
}

/* ---- 5. CONTADOR ANIMADO ---- */
.fundadora-counter .fc-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: transform .35s cubic-bezier(.34, 1.6, .64, 1);
}
.fundadora-counter .fc-num.pop { transform: scale(1.12); }
.fundadora-counter-ethic {
  font-family: 'Lufga', sans-serif;
  font-size: 12px;
  color: rgba(255,252,248,.5);
  margin: 6px 0 0;
  font-style: normal;
}
.fundadora-floater {
  position: relative;
  display: inline-block;
  margin-top: 14px;
  background: rgba(199,165,243,.22);
  color: var(--wlb-white);
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(199,165,243,.35);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s;
  pointer-events: none;
}
.fundadora-floater.show {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fundadora-counter .fc-num,
  .fundadora-floater { transition: none; }
  .fundadora-counter .fc-num.pop { transform: none; }
}

/* ---- 6. MODAL "PRA VOCÊ" ---- */
.modal-foryou {
  margin: -6px 0 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(217,117,89,.18);
}
.modal-foryou-tag {
  font-family: 'Lufga', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--wlb-orange);
  margin-bottom: 8px;
  display: block;
}
.modal-foryou-text {
  font-family: 'Lufga', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--wlb-purple-dark);
  margin: 0;
}

/* ============================================================
   ONDA FEATURE NOVA — Feat 1: CALCULADORA "Quanto da vida volta?"
   Posição: entre .promise e .section-timeline
   ============================================================ */
.calc-section {
  padding: 90px 28px;
  background: linear-gradient(180deg, var(--wlb-dark) 0%, var(--wlb-purple-dark) 100%);
  display: flex;
  justify-content: center;
}
.calc-card {
  position: relative;
  width: 100%;
  max-width: 1100px;
  padding: 60px 48px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(228,212,250,.55) 0%, transparent 55%),
    linear-gradient(135deg, var(--wlb-beige) 0%, var(--wlb-lilac-soft) 100%);
  box-shadow: 0 30px 70px rgba(30,27,46,.45), 0 8px 20px rgba(30,27,46,.25);
  color: var(--wlb-purple-dark);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.calc-section.is-revealed .calc-card {
  opacity: 1;
  transform: translateY(0);
}
.calc-decor {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 56px;
  height: 56px;
  color: var(--wlb-orange);
  opacity: .45;
}
.calc-head {
  text-align: center;
  margin-bottom: 40px;
}
.calc-tag {
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--wlb-orange);
  display: inline-block;
  margin-bottom: 14px;
}
.calc-title {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--wlb-purple-dark);
  margin: 0 auto 14px;
  max-width: 760px;
}
.calc-title .accent {
  color: var(--wlb-orange);
  font-family: 'Chalkiez', serif;
  font-weight: 400;
}
.calc-sub {
  font-size: 17px;
  color: var(--wlb-purple-dark);
  opacity: .78;
  max-width: 540px;
  margin: 0 auto;
}
.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.calc-input-col { padding: 10px 0; }
.calc-label {
  display: block;
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--wlb-purple-dark);
  margin-bottom: 22px;
  line-height: 1.3;
}
.calc-slider-wrap {
  position: relative;
  padding-bottom: 8px;
}

/* Slider styling — track laranja, thumb circular branca grande */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--wlb-orange) 0%, var(--wlb-orange) var(--fill, 50%), rgba(61,54,84,.18) var(--fill, 50%), rgba(61,54,84,.18) 100%);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  margin: 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wlb-white);
  border: 4px solid var(--wlb-orange);
  cursor: grab;
  box-shadow: 0 6px 16px rgba(217,117,89,.4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.08); }
.calc-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.12); box-shadow: 0 8px 22px rgba(217,117,89,.55); }
.calc-slider::-moz-range-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wlb-white);
  border: 4px solid var(--wlb-orange);
  cursor: grab;
  box-shadow: 0 6px 16px rgba(217,117,89,.4);
}
.calc-slider::-moz-range-track {
  height: 8px;
  background: rgba(61,54,84,.18);
  border-radius: 999px;
}
.calc-slider:focus-visible::-webkit-slider-thumb {
  outline: 3px solid var(--wlb-lilac);
  outline-offset: 3px;
}
.calc-slider:focus-visible::-moz-range-thumb {
  outline: 3px solid var(--wlb-lilac);
  outline-offset: 3px;
}
.calc-slider-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--wlb-purple-dark);
  opacity: .55;
}
.calc-slider-readout {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
}
.calc-slider-num {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: 38px;
  color: var(--wlb-orange);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.calc-slider-unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--wlb-purple-dark);
  opacity: .75;
}

/* Output dinâmico */
.calc-output-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 28px;
  background: rgba(255, 252, 248, .55);
  border-radius: 18px;
  border: 1px solid rgba(199,165,243,.35);
}
.calc-line {
  font-family: 'Lufga', sans-serif;
  font-size: 16px;
  line-height: 1.45;
  color: var(--wlb-purple-dark);
  margin: 0;
}
.calc-big {
  display: inline-block;
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--wlb-orange);
  margin: 0 4px;
  font-variant-numeric: tabular-nums;
  vertical-align: -4px;
  transition: color .25s ease;
}
.calc-big-purple { color: var(--wlb-lilac); }
.calc-big-label {
  font-weight: 700;
  font-size: 16px;
  color: var(--wlb-purple-dark);
}
.calc-line-3 {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px dashed rgba(61,54,84,.22);
  font-family: 'Lufga', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  color: var(--wlb-purple-dark);
}
.calc-cta-wrap {
  margin-top: 36px;
  text-align: center;
}
.calc-cta {
  font-size: 17px;
  padding: 18px 38px;
}

@media (max-width: 880px) {
  .calc-section { padding: 70px 18px; }
  .calc-card { padding: 44px 26px; border-radius: 20px; }
  .calc-decor { width: 42px; height: 42px; top: 18px; right: 20px; }
  .calc-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .calc-big { font-size: 40px; }
  .calc-output-col { padding: 22px 20px; }
}
@media (max-width: 480px) {
  .calc-card { padding: 36px 20px; }
  .calc-big { font-size: 34px; }
  .calc-line-3 { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .calc-section .calc-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .calc-big { transition: none; }
  .calc-slider::-webkit-slider-thumb { transition: none; }
}

/* ============================================================
   ONDA FEATURE NOVA — Feat 2: LINHA "PRIMEIROS 30 DIAS"
   Posição: dentro de .section-oferta, após .journey-grid
   ============================================================ */
.days30 {
  max-width: var(--maxw);
  margin: 0 auto 70px;
  padding: 0 4px;
}
.days30-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}
.days30-tag {
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--wlb-orange-light);
  display: inline-block;
  margin-bottom: 14px;
}
.days30-title {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--wlb-white);
  margin-bottom: 14px;
}
.days30-title .accent {
  color: var(--wlb-orange);
  font-family: 'Chalkiez', serif;
  font-weight: 400;
}
.days30-sub {
  font-size: 17px;
  color: rgba(255,252,248,.78);
  max-width: 600px;
  margin: 0 auto;
}
.days30-track {
  position: relative;
  padding: 26px 0 6px;
}
.days30-progress {
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg,
    var(--wlb-lilac-soft) 0%,
    var(--wlb-lilac) 25%,
    var(--wlb-orange-light) 60%,
    var(--wlb-orange) 88%,
    var(--wlb-orange-deep) 100%);
  border-radius: 999px;
  opacity: .55;
  pointer-events: none;
}
.days30-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  position: relative;
}
.days30-item {
  position: relative;
  text-align: center;
  padding: 16px 14px 22px;
  background: rgba(255,252,248,.05);
  border: 1px solid rgba(199,165,243,.18);
  border-top: 3px solid var(--step-color);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, background .25s ease, border-color .25s ease;
}
.days30-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.days30-item:hover {
  background: rgba(255,252,248,.08);
  border-color: rgba(199,165,243,.35);
}
.days30-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  color: var(--step-color);
  opacity: .9;
}
.days30-num {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--wlb-orange);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.04em;
  margin-bottom: 4px;
}
.days30-item:nth-child(1) .days30-num { color: var(--wlb-lilac-soft); }
.days30-item:nth-child(2) .days30-num { color: #D8C0F0; }
.days30-item:nth-child(3) .days30-num { color: var(--wlb-lilac); }
.days30-item:nth-child(4) .days30-num { color: #E69876; }
.days30-item:nth-child(5) .days30-num { color: var(--wlb-orange); }
.days30-day {
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,252,248,.55);
  margin-bottom: 10px;
}
.days30-name {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--wlb-white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.days30-body {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,252,248,.78);
  margin: 0;
}

@media (max-width: 980px) {
  .days30-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .days30-progress {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg,
      var(--wlb-lilac-soft) 0%,
      var(--wlb-lilac) 25%,
      var(--wlb-orange-light) 60%,
      var(--wlb-orange) 88%,
      var(--wlb-orange-deep) 100%);
  }
  .days30-item {
    text-align: left;
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 18px;
    align-items: start;
    padding: 18px 18px;
  }
  .days30-icon {
    grid-column: 1;
    grid-row: 1 / span 3;
    margin: 6px 0 0;
    align-self: start;
  }
  .days30-num {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: end;
    margin-bottom: 0;
    font-size: 44px;
    display: none;
  }
  .days30-day {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 4px;
  }
  .days30-name {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 6px;
  }
  .days30-body {
    grid-column: 2;
    grid-row: 3;
  }
}
@media (max-width: 480px) {
  .days30-progress { left: 6%; }
}

@media (prefers-reduced-motion: reduce) {
  .days30-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================================
   UPGRADE VISUAL — paleta cromática por seção + bg fotos + narrações WeAgent
   Plano: aul-wlb__plano-upgrade-visual-landing.md (2026-05-23)
   Copy: cop-wlb__narracoes-weagents-landing.md (2026-05-23)
   ============================================================= */

/* -------- PARTE 1 — Paleta cromática por seção (overrides FORTES) -------- */

/* HERO 2 (.promise) — beige sólido + textura papel (era dark gradient) */
.promise {
  background:
    radial-gradient(ellipse at 18% 6%, rgba(199,165,243,.20) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(217,117,89,.18) 0%, transparent 55%),
    /* textura papel sutil — diagonal noise via gradient */
    repeating-linear-gradient(45deg, rgba(61,54,84,.012) 0 2px, transparent 2px 9px),
    var(--wlb-beige);
  color: var(--wlb-purple-dark);
}
.promise-seam {
  /* fundir hero1 dark → hero2 beige */
  background: linear-gradient(180deg, rgba(30,27,46,.95) 0%, rgba(245,239,232,0) 100%);
}
.promise-seam::before {
  background: linear-gradient(90deg, transparent 0%, var(--wlb-orange) 50%, transparent 100%);
  opacity: .75;
}
.promise .hero-kicker {
  color: var(--wlb-orange-deep);
}
.promise-h2 {
  color: var(--wlb-purple-dark);
  text-shadow: none;
}
.promise-h2 .accent {
  color: var(--wlb-orange-deep);
  font-size: 1.05em;
  font-family: 'Lufga', sans-serif;
}
.promise-sub {
  color: rgba(61,54,84,.82);
}
.promise-seal {
  background: rgba(217,117,89,.14);
  border-color: rgba(217,117,89,.6);
  color: var(--wlb-orange-deep);
  box-shadow: 0 24px 60px rgba(217,117,89,.28), inset 0 0 0 1px rgba(255,255,255,.6);
  width: 260px;
  height: 260px;
}
.promise-seal-title { font-size: 56px; }
.promise-seal-sub { font-size: 20px; }
.promise .hero-micro {
  color: rgba(61,54,84,.7);
}
/* Coluna direita da promise — seal + stats */
.promise-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  justify-self: end;
}
.promise-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
}
.promise-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(217,117,89,.25);
  border-radius: 16px;
  padding: 16px 20px;
  flex: 1;
  backdrop-filter: blur(6px);
}
.promise-stat-num {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--wlb-orange-deep);
  line-height: 1;
}
.promise-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(61,54,84,.65);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
}
@media (max-width: 980px) {
  .promise-right { justify-self: center; align-items: center; }
  .promise-stats { max-width: 360px; }
}

/* Botão secundário: visível no fundo bege */
.promise .btn-secondary {
  color: var(--wlb-purple-dark);
  background: rgba(61,54,84,.07);
  border: 1.5px solid rgba(61,54,84,.28);
}
.promise .btn-secondary:hover {
  background: rgba(61,54,84,.13);
  transform: translateY(-2px);
}
/* Linha separadora decorativa abaixo da heading */
.promise-text::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--wlb-orange-deep), var(--wlb-lilac));
  border-radius: 2px;
  margin: 28px 0;
}
/* Faixa de imagem no fundo da promise (sutil) */
.promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--promise-bg-img, none);
  background-size: cover;
  background-position: center top;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* CALCULADORA — bg lilás-soft + foto wellness */
.calc-section {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(199,165,243,.35) 0%, transparent 60%),
    linear-gradient(180deg, var(--wlb-lilac-soft) 0%, #EFE3FA 100%);
}
.calc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-escritorio, none);
  background-size: cover;
  background-position: center;
  filter: blur(8px) saturate(140%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.calc-section[data-bg-loaded="true"]::before { opacity: .45; }
.calc-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(245,239,232,.60);
  pointer-events: none;
}
.calc-section > .calc-card {
  position: relative;
  z-index: 2;
}

/* TIMELINE — purple-dark + foto operacoes */
.section-timeline {
  position: relative;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(199,165,243,.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--wlb-purple-dark) 0%, #322B47 100%);
  color: var(--wlb-white);
  overflow: hidden;
}
.section-timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-escritorio, none);
  background-size: cover;
  background-position: center;
  filter: blur(10px) saturate(140%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.section-timeline[data-bg-loaded="true"]::before { opacity: .42; }
.section-timeline::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(30,27,46,.62);
  pointer-events: none;
}
.section-timeline > * { position: relative; z-index: 2; }
.section-timeline .section-tag { color: var(--wlb-orange-light); }
.section-timeline .section-title { color: var(--wlb-white); }
.section-timeline .section-title .accent { color: var(--wlb-orange-light); }
.section-timeline .section-sub { color: rgba(255,252,248,.85); }
.section-timeline .timeline-note { color: rgba(255,252,248,.65); }
/* dot/cards já têm contraste — preservar */
.section-timeline .timeline-dot {
  box-shadow: 0 0 0 4px rgba(61,54,84,.9), 0 0 0 6px rgba(199,165,243,.35);
}

/* STACK STRIP — dark + foto laboratorio-de-ia, linha neon lilás */
.stack-strip {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(199,165,243,.06) 0%, transparent 70%),
    var(--wlb-dark);
  border-top: 1px solid rgba(199,165,243,.35);
  border-bottom: 1px solid rgba(199,165,243,.35);
  box-shadow: inset 0 1px 0 rgba(199,165,243,.15), inset 0 -1px 0 rgba(199,165,243,.15);
  overflow: hidden;
}
.stack-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-escritorio, none);
  background-size: cover;
  background-position: center;
  filter: blur(10px) saturate(140%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.stack-strip[data-bg-loaded="true"]::before { opacity: .40; }
.stack-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(30,27,46,.65);
  pointer-events: none;
}
.stack-strip > * { position: relative; z-index: 2; }
.stack-strip-tagline {
  color: rgba(255,252,248,.78);
}
.stack-strip-list img {
  filter: brightness(0) invert(1);
  opacity: .68;
}
.stack-strip-list li:hover img,
.stack-strip-list li:focus-within img { opacity: 1; }

/* PROVA — beige + foto showroom no canto direito */
.section-prova {
  position: relative;
  background: linear-gradient(180deg, var(--wlb-beige) 0%, #ECE3D6 100%);
  overflow: hidden;
}
.section-prova::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-escritorio, none);
  background-size: cover;
  background-position: right center;
  filter: blur(8px) saturate(140%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.section-prova[data-bg-loaded="true"]::before { opacity: .50; }
.section-prova::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(245,239,232,.58);
  pointer-events: none;
}
.section-prova > * { position: relative; z-index: 2; }

/* OFERTA — laranja sólido com gradient + foto sala-de-estrategia */
.section-oferta {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,252,248,.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--wlb-orange) 0%, var(--wlb-orange-deep) 100%);
  color: var(--wlb-white);
  overflow: hidden;
}
.section-oferta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-escritorio, none);
  background-size: cover;
  background-position: center;
  filter: blur(10px) saturate(140%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.section-oferta[data-bg-loaded="true"]::before { opacity: .45; }
.section-oferta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(184,92,66,.55);
  pointer-events: none;
}
.section-oferta > * { position: relative; z-index: 2; }
.oferta-h2 {
  color: var(--wlb-white);
  text-shadow: 0 4px 18px rgba(184,92,66,.55);
}
.oferta-sub { color: rgba(255,252,248,.95); }
/* journey cards: precisam ler sobre laranja sólido — escurecer fundo */
.section-oferta .journey-card {
  background: rgba(30,27,46,.45);
  border-color: rgba(255,252,248,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.section-oferta .journey-card:nth-child(3) {
  background: rgba(61,54,84,.55);
  border-color: rgba(199,165,243,.45);
}
.section-oferta .journey-tag { color: var(--wlb-lilac-soft); }
.section-oferta .journey-card h3 { color: var(--wlb-white); }
.section-oferta .journey-card p { color: rgba(255,252,248,.88); }
.section-oferta .objection-text {
  background: rgba(30,27,46,.55);
  border-left-color: var(--wlb-lilac-soft);
  color: rgba(255,252,248,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.section-oferta .objection-text b { color: var(--wlb-white); }
.section-oferta .bonus-box {
  background: rgba(30,27,46,.50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.section-oferta .bonus-fundadora-head { color: var(--wlb-lilac-soft); }
.section-oferta .bonus-card { background: rgba(255,252,248,.08); }
.section-oferta .fundadora-counter { text-shadow: 0 0 30px rgba(255,252,248,.45); }
/* CTAs primary continuam laranja em fundo dark (default), mas aqui o fundo já é laranja → forçar dark pra contraste */
.section-oferta .oferta-ctas .btn-primary {
  background: var(--wlb-dark);
  color: var(--wlb-white);
}
.section-oferta .oferta-ctas .btn-primary:hover {
  background: var(--wlb-purple-dark);
}
.section-oferta .oferta-ctas .btn-secondary {
  border-color: var(--wlb-white);
  color: var(--wlb-white);
}

/* days30 — readability sobre laranja */
.section-oferta .days30-title { color: var(--wlb-white); }
.section-oferta .days30-title .accent { color: var(--wlb-dark); }
.section-oferta .days30-sub { color: rgba(255,252,248,.92); }
.section-oferta .days30-tag { color: var(--wlb-lilac-soft); }
.section-oferta .days30-item {
  background: rgba(30,27,46,.55);
  border-color: rgba(199,165,243,.32);
}
.section-oferta .days30-day { color: rgba(255,252,248,.80); }
.section-oferta .days30-name { color: var(--wlb-white); }
.section-oferta .days30-body { color: rgba(255,252,248,.88); }
.section-oferta .days30-num { color: var(--wlb-white); }

/* GARANTIA — sub-bloco beige caixa de respiro + foto cafe-lounge */
.garantia-box {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(217,117,89,.10) 0%, transparent 55%),
    linear-gradient(135deg, var(--wlb-beige) 0%, #ECE3D6 100%);
  border: 1px solid rgba(217,117,89,.35);
  border-radius: 24px;
  color: var(--wlb-purple-dark);
  box-shadow: 0 20px 50px rgba(30,27,46,.25), 0 0 0 1px rgba(217,117,89,.18);
  overflow: hidden;
  padding: 36px 38px;
}
.garantia-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-escritorio, none);
  background-size: cover;
  background-position: center;
  filter: blur(8px) saturate(140%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.garantia-box[data-bg-loaded="true"]::before { opacity: .45; }
.garantia-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(245,239,232,.60);
  pointer-events: none;
}
.garantia-box > * { position: relative; z-index: 2; }
.garantia-shield { color: var(--wlb-orange-deep); }
.garantia-head { color: var(--wlb-purple-dark); }
.garantia-text { color: rgba(61,54,84,.92); }
.garantia-micro { color: rgba(61,54,84,.70); text-shadow: none; }

/* fundadora-box — readability sobre laranja */
.section-oferta .fundadora-head { color: var(--wlb-white); }
.section-oferta .fundadora-text { color: rgba(255,252,248,.92); }
.section-oferta .fundadora-counter-sub,
.section-oferta .fundadora-counter-ethic { color: rgba(255,252,248,.72); }

/* FAQ — beige + foto recepcao-v à direita */
.section-faq {
  position: relative;
  background: var(--wlb-beige);
  overflow: hidden;
}
.section-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-escritorio, none);
  background-size: cover;
  background-position: right center;
  filter: blur(8px) saturate(140%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.section-faq[data-bg-loaded="true"]::before { opacity: .45; }
.section-faq::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(245,239,232,.58);
  pointer-events: none;
}
.section-faq > * { position: relative; z-index: 2; }

/* faixa de transição entre seções com vibe muito diferente */
.calc-section,
.section-timeline,
.section-prova,
.section-oferta,
.stack-strip,
.section-faq {
  /* já garantido pelo position:relative acima */
}

/* Mobile — manter fotos visíveis mas reduzir custo de blur */
@media (max-width: 768px) {
  .calc-section::before,
  .section-timeline::before,
  .stack-strip::before,
  .section-prova::before,
  .section-oferta::before,
  .garantia-box::before,
  .section-faq::before {
    opacity: .38;
    filter: blur(6px) saturate(130%);
  }
}

/* ============================================================
   FAIXAS HERO DE TRANSIÇÃO — full-bleed editorial entre seções
   ============================================================ */
.hero-strip {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
  isolation: isolate;
  background: var(--wlb-dark);
}
.hero-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-strip, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.hero-strip[data-bg-loaded="true"]::before { opacity: 1; }
.hero-strip[data-strip="01"]::before { background-position: center top; }
.hero-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(30, 27, 46, .58);
  pointer-events: none;
}
.hero-strip-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: var(--wlb-white);
}
.hero-strip-headline {
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  color: var(--wlb-white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, .55);
}
.hero-strip-sub {
  font-family: 'Lufga', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.4;
  color: rgba(255, 252, 248, .88);
  margin: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .55);
}
@media (max-width: 768px) {
  .hero-strip {
    min-height: 50vh;
    padding: 60px 20px;
  }
  .hero-strip::after {
    background: rgba(30, 27, 46, .65);
  }
}

/* -------- PARTE 3 — Boxes de narração WeAgent -------- */

.wea-narration {
  display: block;
  max-width: 920px;
  margin: 70px auto 70px;
  padding: 0 28px;
  font-family: 'Lufga', sans-serif;
}

/* ----- ESTILO A — Pergaminho horizontal ----- */
.wea-style-a {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: stretch;
  position: relative;
}
.wea-style-a .wea-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(199,165,243,.18);
  box-shadow: 0 12px 32px rgba(30,27,46,.22);
}
.wea-style-a .wea-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.wea-style-a .wea-bubble {
  position: relative;
  padding: 28px 32px;
  border-radius: 12px 24px 8px 18px;
  border-top: 4px solid var(--wlb-orange);
  box-shadow: 0 12px 36px rgba(30,27,46,.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}
/* seta apontando pra foto — bg vem por variante (A.beige / A.dark) */
.wea-style-a .wea-bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--wlb-beige);
  z-index: -1;
  border-radius: 3px;
}
.wea-style-a .wea-tag {
  font-family: 'Chalkiez', serif;
  font-size: 16px;
  letter-spacing: .02em;
  color: var(--wlb-orange-deep);
  display: block;
  margin-bottom: 10px;
}
.wea-style-a .wea-headline {
  font-family: 'Chalkiez', serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.15;
  color: var(--wlb-orange-deep);
  margin: 0 0 14px;
  letter-spacing: .005em;
}
.wea-style-a .wea-quote {
  font-family: 'Lufga', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--wlb-purple-dark);
  margin: 0 0 14px;
}
.wea-style-a .wea-sig {
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wlb-orange-deep);
}

/* A.beige */
.wea-a-beige .wea-bubble {
  background: var(--wlb-beige);
  color: var(--wlb-purple-dark);
}

/* A.dark (Nyx) */
.wea-a-dark .wea-bubble {
  background: var(--wlb-dark);
  border: 2px solid var(--wlb-lilac);
  border-top: 4px solid var(--wlb-lilac);
  box-shadow: 0 12px 36px rgba(199,165,243,.30), 0 0 24px rgba(199,165,243,.18);
  color: var(--wlb-white);
}
.wea-a-dark .wea-bubble::before { background: var(--wlb-dark); }
.wea-a-dark .wea-tag { color: var(--wlb-lilac); }
.wea-a-dark .wea-headline { color: var(--wlb-lilac-soft); }
.wea-a-dark .wea-quote { color: rgba(255,252,248,.92); }
.wea-a-dark .wea-sig { color: var(--wlb-lilac); }

/* posição: photo esquerda (default) ou direita */
.wea-pos-right.wea-style-a {
  grid-template-columns: 1fr 280px;
}
.wea-pos-right.wea-style-a .wea-photo { order: 2; }
.wea-pos-right.wea-style-a .wea-bubble { order: 1; }
.wea-pos-right.wea-style-a .wea-bubble::before {
  left: auto;
  right: -10px;
  transform: translateY(-50%) rotate(45deg);
}

/* Nolan dentro da oferta — fundo laranja → reforçar beige bubble pra "respiro" */
.wea-in-oferta {
  margin: 30px auto 30px;
}
.wea-in-oferta .wea-bubble {
  box-shadow: 0 20px 60px rgba(30,27,46,.40);
}

/* ----- ESTILO B — Foto circular + quote stylebar ----- */
.wea-style-b {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 28px;
  align-items: center;
  max-width: 720px;
}
.wea-pos-right.wea-style-b {
  grid-template-columns: 1fr 120px;
}
/* B padrão: foto à direita, quote à esquerda */
.wea-style-b .wea-quote-block {
  position: relative;
  padding: 18px 22px 18px 28px;
  border-left: 4px solid var(--wlb-orange);
  background: rgba(255,252,248,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 4px 14px 14px 4px;
}
.wea-style-b .wea-quote {
  font-family: 'Lufga', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: var(--wlb-purple-dark);
  margin: 0 0 10px;
}
.wea-style-b .wea-sig {
  font-family: 'Chalkiez', serif;
  font-size: 15px;
  color: var(--wlb-orange-deep);
}
.wea-style-b .wea-photo-circ {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--wlb-orange);
  box-shadow: 0 8px 22px rgba(217,117,89,.32);
  background: var(--wlb-lilac-soft);
}
.wea-style-b .wea-photo-circ img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* B sobre fundo dark (timeline) — wea-pos-right + Larry 2 */
.section-timeline + .wea-narration,
.wea-style-b.wea-on-dark .wea-quote-block {
  /* nada por default */
}

/* Larry 2 vive ENTRE Calculadora e Timeline — fica num espaço "neutro" mas a calculadora é lilás-soft → ajustar */
/* B.chat (Bella) — balão lilás-soft estilo chat bubble */
.wea-b-chat .wea-quote-block {
  background: var(--wlb-lilac-soft);
  border-left: none;
  border-radius: 18px 18px 4px 18px;
  padding: 18px 22px;
  position: relative;
}
.wea-b-chat .wea-quote-block::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 18px;
  width: 0;
  height: 0;
  border-left: 12px solid var(--wlb-lilac-soft);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.wea-b-chat .wea-quote { color: var(--wlb-purple-dark); }
.wea-b-chat .wea-sig {
  font-family: 'Lufga', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--wlb-orange-deep);
  font-weight: 700;
}
.wea-b-chat .wea-photo-circ {
  border-color: var(--wlb-lilac);
  box-shadow: 0 8px 22px rgba(199,165,243,.42);
}
.wea-typing {
  display: inline-flex;
  gap: 4px;
  margin: 4px 0 10px;
  align-items: center;
  height: 14px;
}
.wea-typing span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(61,54,84,.4);
  animation: wea-typing-pulse 1.2s ease-in-out infinite;
}
.wea-typing span:nth-child(2) { animation-delay: .2s; }
.wea-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes wea-typing-pulse {
  0%, 60%, 100% { opacity: .35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .wea-typing span { animation: none; opacity: .55; }
}

/* ----- ESTILO C — Manifesto centralizado (Rex único) ----- */
.wea-style-c {
  position: relative;
  max-width: 640px;
  margin: 50px auto;
  padding: 56px 38px 46px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,117,89,.18) 0%, transparent 65%),
    linear-gradient(180deg, var(--wlb-beige) 0%, #ECE3D6 100%);
  border: 2px solid rgba(217,117,89,.45);
  border-radius: 18px;
  box-shadow:
    0 20px 60px rgba(30,27,46,.30),
    0 0 0 6px rgba(255,252,248,.06),
    inset 0 0 0 1px rgba(217,117,89,.20);
}
.wea-c-ornament {
  position: absolute;
  top: 22px;
  font-family: 'Chalkiez', serif;
  font-size: 28px;
  color: var(--wlb-orange-deep);
  opacity: .55;
  line-height: 1;
}
.wea-c-ornament-left { left: 28px; }
.wea-c-ornament-right { right: 28px; }
.wea-style-c .wea-photo-c {
  width: 140px;
  height: 140px;
  margin: 0 auto 22px;
  border: 4px solid var(--wlb-orange);
  box-shadow: 0 10px 30px rgba(217,117,89,.45);
}
.wea-c-headline {
  font-family: 'Chalkiez', serif;
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 42px);
  line-height: 1.05;
  color: var(--wlb-orange-deep);
  letter-spacing: .01em;
  margin: 0 0 20px;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(255,252,248,.6);
}
.wea-style-c .wea-quote {
  font-family: 'Lufga', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--wlb-purple-dark);
  max-width: 520px;
  margin: 0 auto 18px;
}
.wea-style-c .wea-sig {
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wlb-orange-deep);
}

/* Mobile — narrações empilham */
@media (max-width: 720px) {
  .wea-narration { margin: 50px auto; padding: 0 18px; }
  .wea-style-a,
  .wea-pos-right.wea-style-a {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .wea-style-a .wea-photo {
    max-width: 220px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }
  .wea-style-a .wea-bubble::before { display: none; }
  .wea-style-a .wea-bubble {
    padding: 22px 24px;
    border-radius: 14px;
  }
  .wea-style-b,
  .wea-pos-right.wea-style-b {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .wea-style-b .wea-photo-circ {
    margin: 0 auto;
  }
  .wea-style-b .wea-quote-block {
    text-align: left;
  }
  .wea-b-chat .wea-quote-block::after { display: none; }
  .wea-style-c {
    padding: 44px 22px 38px;
  }
  .wea-c-ornament { font-size: 22px; top: 14px; }
  .wea-c-ornament-left { left: 18px; }
  .wea-c-ornament-right { right: 18px; }
  .wea-style-c .wea-photo-c { width: 110px; height: 110px; }
}

/* ============================================================
   LP1 — REDESIGN VISUAL (camada final, overrides pontuais)
   ============================================================ */

/* --- Section tags: pill com toque de cor --- */
.section-tag {
  display: inline-block;
  background: rgba(217,117,89,.1);
  border: 1px solid rgba(217,117,89,.28);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: 'Lufga', sans-serif;
  font-weight: 700;
  color: var(--wlb-orange-deep);
  margin-bottom: 18px;
}
/* tags em seções escuras */
.section-timeline .section-tag,
.section-faq .section-tag {
  background: rgba(242,179,154,.12);
  border-color: rgba(242,179,154,.3);
  color: var(--wlb-orange-light);
}

/* --- Section-head: mais espaço --- */
.section-head { margin-bottom: 60px; }
.section-title { font-size: clamp(32px, 4.8vw, 58px); }
.section-sub { font-size: 19px; line-height: 1.6; opacity: .82; }

/* --- Promise: seal maior + stronger glow --- */
.promise-seal {
  width: 240px;
  height: 240px;
  box-shadow: 0 24px 60px rgba(199,165,243,.45), 0 0 0 8px rgba(199,165,243,.08);
  border: 1.5px solid rgba(199,165,243,.65);
}
.promise-seal-title { font-size: 52px; }
.promise-seal-sub { font-size: 17px; letter-spacing: .01em; }

/* promise-stats: cards mais definidos */
.promise-stat {
  background: rgba(255,252,248,.07);
  border: 1px solid rgba(255,252,248,.14);
  border-radius: 14px;
  padding: 16px 12px;
  transition: background .2s;
}
.promise-stat:hover { background: rgba(255,252,248,.12); }
.promise-stat-num {
  display: block;
  font-family: 'Lufga', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  color: var(--wlb-orange-light);
  letter-spacing: -.02em;
}
.promise-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,252,248,.6);
  margin-top: 6px;
}

/* promise h2 — ligeiramente maior */
.promise-h2 { font-size: clamp(40px, 5.8vw, 74px); }

/* promise sub — mais legível */
.promise-sub { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.6; opacity: .9; }

/* --- Hero strips: overlay mais suave + headline maior --- */
.hero-strip::after { background: rgba(20,18,38,.50); }
.hero-strip-headline { font-size: clamp(44px, 6.5vw, 88px); }
.hero-strip-sub { font-size: clamp(17px, 1.6vw, 23px); }

/* --- Narração: hover suave --- */
.wea-style-a .wea-bubble { transition: box-shadow .25s; }
.wea-style-a .wea-bubble:hover { box-shadow: 0 18px 50px rgba(30,27,46,.28); }

/* --- Timeline: section-sub mais legível --- */
.section-timeline .section-sub { font-size: 18px; opacity: .9; }

/* --- Transform cards (prova): borda sutil + hover melhorado --- */
.transform-card {
  border: 1px solid rgba(217,117,89,.18);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.transform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(30,27,46,.18);
  border-color: rgba(217,117,89,.38);
}
.transform-card h3 { font-size: 22px; line-height: 1.2; }

/* --- Journey cards: visual mais distinto --- */
.journey-card {
  border-radius: 22px;
  transition: transform .25s, box-shadow .25s;
}
.journey-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(30,27,46,.22); }
.section-oferta .journey-card h3 { font-size: 26px; }

/* journey icon maior */
.journey-icon { width: 56px; height: 56px; }

/* --- Days30: step numbers maiores + hover --- */
.days30-num {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  opacity: .9;
}
.days30-item {
  transition: transform .25s, box-shadow .25s;
}
.days30-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(30,27,46,.18);
}
.days30-name { font-size: 18px; font-weight: 800; }

/* --- Bonus cards: mais premium --- */
.bonus-card {
  border-radius: 20px;
  transition: transform .25s, box-shadow .25s;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(30,27,46,.30); }
.bonus-card-name { font-size: 13px; letter-spacing: .1em; }
.bonus-card-value { font-size: 12px; }

/* --- Garantia box: borda mais vibrante --- */
.garantia-box {
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(30,27,46,.30);
}
.garantia-head { font-size: 26px; }

/* --- CTA float: mais presença --- */
.cta-float {
  bottom: 32px;
  right: 32px;
  box-shadow: 0 8px 28px rgba(217,117,89,.55);
}
.cta-float:hover { transform: scale(1.06) translateY(-2px); box-shadow: 0 14px 36px rgba(217,117,89,.65); }

/* --- FAQ: aberta com fundo mais suave --- */
.faq-item.open { background: rgba(255,252,248,.04); }
.faq-q { font-size: 17px; font-weight: 600; }
.faq-a { font-size: 16px; line-height: 1.7; }

/* --- Oferta CTAs: botão primário maior --- */
.section-oferta .oferta-ctas .btn-primary {
  font-size: 18px;
  padding: 18px 48px;
  letter-spacing: -.01em;
}

/* --- Fundadora counter: destaque visual --- */
.fundadora-head { letter-spacing: -.01em; }
.fc-num {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -.03em;
}

/* --- Objection text: linha melhorada --- */
.objection-text {
  font-size: 17px;
  line-height: 1.75;
  border-left-width: 4px;
}

/* --- Promise seam: linha central mais suave --- */
.promise-seam::before { opacity: .35; }

/* --- wea-style-c (Rex garantia): mais espaço e impacto --- */
.wea-style-c .wea-c-headline { font-size: clamp(26px, 3.5vw, 38px); letter-spacing: .04em; }
.wea-style-c .wea-quote { font-size: 18px; line-height: 1.65; }

/* --- Section-prova: melhor espaçamento --- */
.section-prova { padding-bottom: 100px; }

/* --- Hero: vinheta na base para transição suave --- */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(0deg, rgba(30,27,46,.75) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* --- Calc section: card mais premium --- */
.calc-card {
  border: 1px solid rgba(199,165,243,.15);
  box-shadow: 0 24px 60px rgba(30,27,46,.22), 0 0 0 1px rgba(199,165,243,.08);
}
.calc-big { font-size: clamp(48px, 7vw, 72px); letter-spacing: -.03em; }
.calc-title { font-size: clamp(26px, 3.5vw, 40px); }

/* --- Stack strip: mais impactante --- */
.stack-strip-tagline { font-size: clamp(18px, 2vw, 24px); font-weight: 600; }
.stack-strip-list img { height: 40px; }

/* --- Nyx narration (dark): glow mais visível --- */
.wea-a-dark .wea-bubble {
  box-shadow: 0 16px 48px rgba(199,165,243,.38), 0 0 32px rgba(199,165,243,.2);
}

/* --- Wea-style-c ornamento: maior --- */
.wea-c-ornament { font-size: 32px; }

@media (max-width: 768px) {
  .section-tag { font-size: 12px; padding: 4px 12px; }
  .promise-seal { width: 180px; height: 180px; }
  .promise-seal-title { font-size: 38px; }
  .hero-strip-headline { font-size: clamp(32px, 8vw, 56px); }
  .cta-float { bottom: 20px; right: 16px; }
  .days30-num { font-size: 40px; }
  .calc-big { font-size: clamp(36px, 10vw, 60px); }
}
