/* ============================================================
   KAYRIS — Landing Page
   Identidade: Nunito + Cormorant Garamond (itálico) + Montserrat
   Cor principal: Rosa Kayris #ff3e57 · base branca · grafite
   ============================================================ */

:root{
  /* Cores da marca */
  --rosa:        #ff3e57;
  --rosa-deep:   #e22f48;
  --rosa-soft:   #fff2f5;
  --rosa-tint:   #ffe5ea;
  --preto:       #111111;
  --grafite:     #3a3a3a;
  --branco:      #ffffff;
  --cinza:       #f4f4f4;
  --cinza-borda: #ececec;
  --muted:       #8c8488;

  /* Texto */
  --titulo: #15110f;
  --corpo:  #4a4446;

  /* Layout */
  --maxw: 1140px;
  --radius: 24px;
  --radius-sm: 14px;
  --pill: 999px;
  --shadow-soft: 0 4px 40px rgba(255, 62, 87, .08);
  --shadow-card: 0 18px 60px rgba(53, 30, 36, .10);
  --shadow-pop:  0 30px 80px rgba(53, 30, 36, .16);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body{
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--corpo);
  background: var(--branco);
  line-height: 1.5;
  overflow-x: hidden;
}
img{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; }

/* ---------- Tipografia utilitária ---------- */
.eyebrow{
  display: inline-block;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rosa);
}
.eyebrow--light{ color: #ffd2da; }

.h2{
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--titulo);
  text-wrap: balance;
}
.h2--left{ text-align: left; }
.h2--light{ color: #fff; }

.serif{
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--rosa);
}
.h2--light .serif{ color: #fff; }

.lead{
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--corpo);
  max-width: 620px;
  margin: 0 auto;
}
.lead--left{ margin: 0; }
.lead--light{ color: rgba(255,255,255,.85); }

.section-head{ text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .eyebrow{ margin-bottom: 14px; }
.section-head .h2{ margin-bottom: 18px; }

/* ---------- Botões ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: .98rem;
  padding: 13px 24px;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s;
  white-space: nowrap;
}
.btn--lg{ padding: 16px 32px; font-size: 1.05rem; }
.btn--block{ width: 100%; }
.btn--primary{ background: var(--rosa); color: #fff; box-shadow: 0 8px 24px rgba(255,62,87,.28); }
.btn--primary:hover{ background: var(--rosa-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,62,87,.36); }
.btn--ghost{ background: transparent; color: var(--titulo); border-color: var(--cinza-borda); }
.btn--ghost:hover{ border-color: var(--rosa); color: var(--rosa); transform: translateY(-2px); }
.btn--white{ background: #fff; color: var(--rosa); }
.btn--white:hover{ transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.18); }

/* ---------- Grain & glows ---------- */
.grain{
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{
  position: fixed; top: 18px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  padding: 0 20px;
  transition: top .3s var(--ease);
}
.nav__pill{
  display: flex; align-items: center; gap: 28px;
  width: 100%; max-width: var(--maxw);
  padding: 10px 12px 10px 22px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,62,87,.12);
  border-radius: var(--pill);
  box-shadow: var(--shadow-soft);
}
.nav__logo img{ height: 30px; width: auto; display: block; transform: translateY(-2px); }
.nav__links{ display: flex; gap: 26px; margin-left: auto; }
.nav__links a{
  font-weight: 600; font-size: .95rem; color: var(--grafite);
  transition: color .2s;
}
.nav__links a:hover{ color: var(--rosa); }
.nav__cta{ padding: 11px 20px; }
.nav__burger{ display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__burger span{ width: 22px; height: 2px; background: var(--titulo); border-radius: 2px; transition: .3s; }
.nav.open .nav__burger span:nth-child(1){ transform: translateY(3.5px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2){ transform: translateY(-3.5px) rotate(-45deg); }

.nav__mobile{
  position: absolute; top: 70px; left: 20px; right: 20px;
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card); border: 1px solid var(--cinza-borda);
  padding: 14px; display: none; flex-direction: column; gap: 4px;
}
.nav__mobile a{ padding: 12px 14px; font-weight: 600; border-radius: 10px; }
.nav__mobile a:not(.btn):hover{ background: var(--rosa-soft); color: var(--rosa); }
.nav__mobile .btn{ margin-top: 6px; }
.nav.open .nav__mobile{ display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  padding: 170px 20px 60px;
  text-align: center;
  background:
    radial-gradient(120% 80% at 50% -10%, var(--rosa-soft) 0%, rgba(255,242,245,0) 60%),
    linear-gradient(180deg, #fff 0%, #fffafb 100%);
  overflow: hidden;
}
.hero__glow{
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none; z-index: 0;
  background:
    radial-gradient(closest-side, rgba(255,62,87,.18), transparent 70%);
  filter: blur(30px);
}
.hero__content{ position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.hero .eyebrow{ margin-bottom: 22px; }

/* ---- Variante limpa: título em cima, notebook embaixo (centralizado) ---- */
.hero--clean{
  text-align: center;
  padding: 128px 20px 60px;
  background:
    radial-gradient(120% 70% at 50% -8%, var(--rosa-soft) 0%, rgba(255,242,245,0) 60%),
    linear-gradient(180deg, #fff 0%, #fffafb 100%);
}
.hero--clean .grain{ z-index: 1; opacity: .35; }
.hero__grid{
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 44px;
}
.hero--clean .hero__content{ max-width: 880px; margin: 0 auto; text-align: center; }
.hero--clean .hero__sub{ margin-bottom: 0; }
.hero--clean .hero__actions{ justify-content: center; }
.hero--clean .hero__app{ margin: 0; width: 100%; display: flex; justify-content: center; }

/* ---- CTA "Aplique para o teste grátis" (hero + antes dos planos) ---- */
.hero__actions{ display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero__actions__hint, .trial-cta__hint{
  font-family: "Montserrat", sans-serif; font-size: .82rem; color: var(--muted);
}
.trial-cta{
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center; max-width: 620px; margin: 0 auto; padding: 20px 20px 56px;
}
.btn--trial{ padding: 11px 26px; font-size: .9rem; letter-spacing: .01em; }
.trial-cta__line{
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 600;
  font-size: 1.6rem; color: var(--titulo);
}
.hero--clean .hero__video{ max-width: 1040px; }

/* ---- Mockup estático (MacBook + iPhone, PNG transparente) ---- */
.hero__visual{ width: 100%; max-width: 1080px; }
.hero__visual img{
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 30px 60px rgba(53,30,36,.16));
  transform-origin: center center;
  will-change: transform;
}

/* ---- Notebook em vídeo (mantido como alternativa) ---- */
.hero__video{ width: 100%; max-width: 620px; }
.hero__video video{
  width: 100%; height: auto; display: block;
  border-radius: 16px;
}

/* ---- Notebook estilo Apple (mantido como fallback) ---- */
.laptop{ width: 100%; max-width: 600px; perspective: 1600px; }
.laptop__screen{
  position: relative;
  background: linear-gradient(180deg, #111114, #1d1d22);
  border-radius: 18px 18px 4px 4px;
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-pop), inset 0 0 0 1px rgba(255,255,255,.04);
}
.laptop__cam{
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: #2c2c31; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.laptop__view{
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  background: #f6f4f5 center top / cover no-repeat;
  outline: none;
}
.laptop__view img{
  display: block; width: 100%; height: auto;
  will-change: transform;
}
/* brilho de vidro sutil sobre a tela */
.laptop__gloss{
  position: absolute; inset: 14px 14px 16px;
  border-radius: 6px; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 32%);
}
.laptop__base{
  position: relative; height: 14px; margin: 0 -30px;
  background: linear-gradient(180deg, #e9eaec 0%, #cfd1d6 45%, #b4b6bd 100%);
  border-radius: 0 0 12px 12px;
  box-shadow: inset 0 2px 3px rgba(0,0,0,.12), 0 14px 24px rgba(53,30,36,.16);
}
.laptop__notch{
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 96px; height: 6px;
  background: linear-gradient(180deg, #b9bbc1, #a9abb2);
  border-radius: 0 0 9px 9px;
}
.hero__app-shadow{
  position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%);
  width: 78%; height: 50px; background: rgba(255,62,87,.16); filter: blur(38px); border-radius: 50%; z-index: -1;
}

.hero__title{
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--titulo);
  margin-bottom: 26px;
}
.hero__title .word{ display: inline-block; will-change: transform; }
.accent-serif{
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--rosa);
  letter-spacing: 0;
}
.hero__sub{
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--corpo);
  max-width: 660px; margin: 0 auto 34px;
}
.hero__actions{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__note{ margin-top: 22px; font-size: .9rem; color: var(--muted); font-weight: 600; }

/* Mockup do app no hero */
.hero__app{ position: relative; z-index: 2; margin: 60px auto 0; width: max-content; max-width: 100%; perspective: 1400px; }
.hero__app-shadow{
  position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%);
  width: 80%; height: 60px; background: rgba(255,62,87,.18); filter: blur(40px); border-radius: 50%; z-index: -1;
}
.phone{
  width: 320px; max-width: 86vw;
  background: linear-gradient(160deg, #1a1416, #2a2024);
  border-radius: 42px; padding: 12px;
  box-shadow: var(--shadow-pop);
  transform: rotateX(8deg);
  transition: transform .4s var(--ease);
}
.phone__notch{ width: 120px; height: 22px; background: #1a1416; border-radius: 0 0 14px 14px; margin: 0 auto 6px; }
.phone__screen{ background: #fff7f8; border-radius: 32px; overflow: hidden; }

.app{ padding: 16px; font-size: .82rem; }
.app__top{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.app__brand{ display: flex; align-items: center; gap: 7px; font-weight: 800; color: var(--titulo); }
.app__brand .app__k{ width: 22px; height: 22px; }
.app__bell{ font-size: 1rem; }
.app__greet{ display: flex; flex-direction: column; gap: 3px; margin-bottom: 14px; }
.app__greet strong{ color: var(--titulo); font-size: .95rem; }
.app__greet span{ color: var(--muted); font-size: .78rem; }

.app__stats{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.stat{ background: #fff; border: 1px solid var(--cinza-borda); border-radius: 14px; padding: 12px; }
.stat--alert{ background: var(--rosa-soft); border-color: var(--rosa-tint); }
.stat__num{ display: block; font-size: 1.6rem; font-weight: 800; color: var(--titulo); line-height: 1; }
.stat--alert .stat__num{ color: var(--rosa); }
.stat__lbl{ font-size: .68rem; color: var(--muted); }

.app__list{ display: flex; flex-direction: column; gap: 8px; }
.row{ display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--cinza-borda); border-radius: 12px; padding: 10px; }
.dot{ width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dot--green{ background: #2bb673; } .dot--amber{ background: #f5a623; } .dot--blue{ background: #4a90e2; }
.row__txt{ display: flex; flex-direction: column; line-height: 1.2; }
.row__txt strong{ color: var(--titulo); font-size: .82rem; }
.row__txt span{ color: var(--muted); font-size: .7rem; }
.tag{ margin-left: auto; font-size: .62rem; font-weight: 700; padding: 4px 8px; border-radius: 999px; white-space: nowrap; }
.tag--green{ background: #e6f6ee; color: #1f9d5f; }
.tag--amber{ background: #fdf0d9; color: #cf8a10; }
.tag--blue{ background: #e7f0fc; color: #2f6fc0; }
.app__cta{ margin-top: 14px; text-align: center; background: var(--rosa); color: #fff; font-weight: 700; padding: 11px; border-radius: 12px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-sec{ padding: 54px 20px 20px; text-align: center; }
.marquee-sec__label{ color: var(--muted); font-weight: 600; margin-bottom: 26px; font-size: .95rem; }
.marquee{ position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track{ display: inline-flex; align-items: center; gap: 32px; white-space: nowrap; animation: marquee 36s linear infinite; }
.marquee__track span{ font-weight: 700; color: #b9aeb1; font-size: 1.05rem; }
.marquee__track .sep{ color: var(--rosa); font-size: .8rem; }
@keyframes marquee{ to{ transform: translateX(-50%); } }

/* ============================================================
   ÁREAS (5)
   ============================================================ */
.areas{ padding: 36px 20px 90px; max-width: var(--maxw); margin: 0 auto; }
.areas__show{ max-width: 960px; margin: 0 auto; }
.areas__frame{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cinza-borda);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 9;
  background: var(--cinza);
}
.areas__img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .28s var(--ease); }
.areas__frame::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 42%;
  background: linear-gradient(to top, rgba(20,10,14,.40), rgba(20,10,14,0));
  pointer-events: none; z-index: 1;
}
.areas__tabs{
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; gap: 8px; justify-content: safe center;
  overflow-x: auto; padding: 16px 14px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.areas__tabs::-webkit-scrollbar{ display: none; }
.areas__tab{
  flex: 0 0 auto; white-space: nowrap;
  font-family: "Nunito", sans-serif; font-weight: 700; font-size: .9rem;
  color: var(--titulo); background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.7); border-radius: var(--pill);
  padding: 9px 18px; cursor: pointer;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background .2s, color .2s, box-shadow .2s;
}
.areas__tab:hover{ color: var(--rosa); }
.areas__tab.is-active{ background: var(--rosa); border-color: var(--rosa); color: #fff; box-shadow: 0 6px 18px rgba(255,62,87,.4); }
.areas__tab.is-active:hover{ color: #fff; }
@media (max-width: 600px){
  .areas__frame{ aspect-ratio: 1 / 1; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features{ max-width: var(--maxw); margin: 0 auto; padding: 30px 20px 40px; display: flex; flex-direction: column; gap: 110px; }
.feature{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature--reverse .feature__media{ order: 2; }
.feature__text .eyebrow{ margin-bottom: 14px; }
.feature__text .h2{ margin-bottom: 18px; }
.feature__text .lead{ margin-bottom: 26px; }

.pills{ display: flex; flex-wrap: wrap; gap: 10px; }
.pill{
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--cinza-borda);
  border-radius: var(--pill); padding: 9px 16px;
  font-weight: 600; font-size: .92rem; color: var(--grafite);
  transition: border-color .2s, transform .2s;
}
.pill:hover{ border-color: var(--rosa); transform: translateY(-2px); }
.pill i{ font-style: normal; }

/* Mockups */
.feature__media{ display: flex; justify-content: center; }
.mock{
  width: 100%; max-width: 420px;
  background: #fff; border: 1px solid var(--cinza-borda);
  border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-card);
}
.mock__head{ display: flex; align-items: center; gap: 9px; font-weight: 800; color: var(--titulo); margin-bottom: 18px; font-size: .98rem; }
.mock__head img{ width: 24px; height: 24px; }

.mock--routine{ background: linear-gradient(170deg, #fff, var(--rosa-soft)); }
.cal-row{ display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.cal-row span{ font-size: .78rem; color: var(--muted); width: 42px; font-weight: 700; }
.cal-ev{ flex: 1; background: #fff; border: 1px solid var(--cinza-borda); border-left: 3px solid #cdd3da; border-radius: 10px; padding: 10px 12px; font-size: .85rem; font-weight: 600; color: var(--grafite); }
.cal-ev--rosa{ border-left-color: var(--rosa); }
.mock__fin{ display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--cinza-borda); }
.mock__fin span{ color: var(--muted); font-size: .85rem; }
.mock__fin strong{ color: var(--titulo); font-size: 1.3rem; font-weight: 800; }

.field{ margin-bottom: 12px; }
.field--2{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label{ display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin-bottom: 5px; }
.field__v{ background: var(--cinza); border-radius: 10px; padding: 11px 13px; font-weight: 600; color: var(--titulo); font-size: .9rem; }
.photos{ display: flex; gap: 10px; margin: 14px 0; }
.photos span{ flex: 1; aspect-ratio: 1; display: grid; place-items: center; background: var(--rosa-soft); border: 1px dashed var(--rosa-tint); border-radius: 12px; font-size: .78rem; font-weight: 700; color: var(--rosa); }
.statusbar{ margin-top: 6px; }
.statusbar .tag{ font-size: .8rem; padding: 7px 14px; }

.mock--timeline{ background: linear-gradient(170deg, #fff, #fafbfc); }
.timeline{ position: relative; padding-left: 22px; }
.timeline::before{ content: ""; position: absolute; left: 4px; top: 6px; bottom: 16px; width: 2px; background: var(--rosa-tint); }
.timeline li{ position: relative; margin-bottom: 16px; }
.timeline li::before{ content: ""; position: absolute; left: -22px; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: #fff; border: 2px solid var(--rosa); }
.timeline li.t-last::before{ background: var(--rosa); }
.timeline .t{ display: block; font-size: .72rem; font-weight: 800; color: var(--rosa); }
.timeline li div{ font-size: .88rem; color: var(--grafite); }
.mock__pdf{ display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding: 12px 14px; background: var(--titulo); border-radius: 12px; color: #fff; }
.mock__pdf span{ font-weight: 700; font-size: .9rem; }
.mock__pdf em{ font-style: normal; font-size: .78rem; color: #ffd2da; font-weight: 700; }

/* ============================================================
   PROCEDIMENTO PROTEGIDO
   ============================================================ */
.protected{ position: relative; margin: 90px 20px; overflow: hidden;
  background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-deep) 100%);
  border-radius: 40px; max-width: var(--maxw); margin-left: auto; margin-right: auto;
}
.protected .grain{ opacity: .25; mix-blend-mode: soft-light; }
.protected__inner{ position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 60px; }
.protected__copy .eyebrow{ margin-bottom: 14px; }
.protected__copy .h2{ margin-bottom: 18px; }
.protected__copy .lead{ margin-bottom: 28px; }

.beforeafter{ display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: center; }
.ba{ background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 18px; padding: 20px; backdrop-filter: blur(6px); }
.ba--after{ background: #fff; }
.ba__tag{ display: inline-block; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,.22); color: #fff; margin-bottom: 14px; }
.ba__tag--on{ background: var(--rosa-soft); color: var(--rosa); }
.ba ul li{ font-size: .9rem; padding: 7px 0 7px 22px; position: relative; color: #fff; font-weight: 600; }
.ba--after ul li{ color: var(--grafite); }
.ba ul li::before{ content: ""; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.6); }
.ba--after ul li::before{ background: var(--rosa); }
.ba__arrow{ color: #fff; font-size: 1.6rem; font-weight: 700; }

/* ============================================================
   NÚMEROS
   ============================================================ */
.stats-sec{ max-width: var(--maxw); margin: 0 auto; padding: 50px 20px 90px; }
.stats-sec__grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.bigstat{ text-align: center; padding: 0 16px; }
.bigstat__num{
  display: block; font-family: "Nunito", sans-serif; font-weight: 800;
  font-size: clamp(3rem, 7vw, 4.6rem); line-height: 1; color: var(--rosa); letter-spacing: -.03em;
  margin-bottom: 14px;
}
.bigstat__lbl{ color: var(--corpo); font-size: 1rem; max-width: 300px; margin: 0 auto; display: block; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing{ max-width: var(--maxw); margin: 0 auto; padding: 30px 20px 70px; }
.pricing__grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
/* Oferta de fundador — 2 cards */
.pricing__grid--duo{ grid-template-columns: 1fr 1fr; max-width: 840px; margin: 0 auto; }
.plan__price-old{ display: block; font-size: .95rem; font-weight: 600; color: var(--muted); text-decoration: line-through; margin-bottom: 2px; }
.plan--featured .plan__price{ margin-bottom: 10px; }
.plan__seal{ display: inline-block; font-size: .78rem; font-weight: 800; color: var(--rosa); background: var(--rosa-soft); border: 1px solid var(--rosa-tint); padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; letter-spacing: .02em; }
.plan--muted{ background: #fdfcfc; }
.plan--muted .plan__name{ color: var(--grafite); }
.btn--off{ pointer-events: none; opacity: 1; background: var(--cinza) !important; color: var(--muted) !important; border: 1.5px solid var(--cinza-borda) !important; box-shadow: none !important; transform: none !important; cursor: not-allowed; }
.plan{
  position: relative; background: #fff; border: 1px solid var(--cinza-borda);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover{ transform: translateY(-5px); box-shadow: var(--shadow-card); }
.plan--featured{ border: 2px solid var(--rosa); box-shadow: var(--shadow-card); }
.plan__badge{ position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--rosa); color: #fff; font-size: .72rem; font-weight: 800; padding: 6px 16px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; }
.plan__name{ font-size: 1.4rem; font-weight: 800; color: var(--titulo); }
.plan__for{ color: var(--muted); font-size: .9rem; margin: 6px 0 18px; min-height: 40px; }
.plan__price{ display: flex; align-items: baseline; gap: 3px; margin-bottom: 22px; color: var(--titulo); }
.plan__price .cur{ font-size: 1.1rem; font-weight: 700; }
.plan__price .val{ font-size: 3rem; font-weight: 800; letter-spacing: -.03em; }
.plan__price .per{ color: var(--muted); font-weight: 600; }
.plan__list{ margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.plan__list li{ position: relative; padding-left: 28px; font-size: .95rem; color: var(--grafite); }
.plan__list li::before{
  content: ""; position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--rosa-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff3e57' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.pricing__foot{ text-align: center; color: var(--muted); font-size: .9rem; max-width: 680px; margin: 36px auto 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq{ max-width: 820px; margin: 0 auto; padding: 70px 20px; }
.faq__list{ display: flex; flex-direction: column; gap: 12px; }
.faq__item{ background: #fff; border: 1px solid var(--cinza-borda); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq__item[open]{ border-color: var(--rosa-tint); box-shadow: var(--shadow-soft); }
.faq__item summary{
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-weight: 700; color: var(--titulo); font-size: 1.05rem;
}
.faq__item summary::-webkit-details-marker{ display: none; }
.faq__item summary i{ position: relative; width: 18px; height: 18px; flex: none; }
.faq__item summary i::before, .faq__item summary i::after{ content: ""; position: absolute; background: var(--rosa); border-radius: 2px; transition: transform .25s var(--ease); }
.faq__item summary i::before{ top: 8px; left: 0; width: 18px; height: 2px; }
.faq__item summary i::after{ top: 0; left: 8px; width: 2px; height: 18px; }
.faq__item[open] summary i::after{ transform: rotate(90deg); opacity: 0; }
.faq__a{ padding: 0 22px 22px; color: var(--corpo); font-size: 1rem; max-width: 680px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.finalcta{ padding: 30px 20px 90px; max-width: var(--maxw); margin: 0 auto; }
.finalcta__card{
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(150deg, #1a1416 0%, #2a2024 100%);
  border-radius: 40px; padding: 80px 30px;
}
.finalcta .grain{ opacity: .18; }
.finalcta__card::after{
  content: ""; position: absolute; bottom: -160px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 360px; background: radial-gradient(closest-side, rgba(255,62,87,.45), transparent 70%); filter: blur(40px);
}
.finalcta__title{ position: relative; z-index: 2; font-family: "Nunito", sans-serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.06; letter-spacing: -.02em; color: #fff; margin-bottom: 16px; }
.finalcta__card p{ position: relative; z-index: 2; color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 30px; font-size: 1.1rem; }
.finalcta__card .btn{ position: relative; z-index: 2; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ max-width: var(--maxw); margin: 0 auto; padding: 30px 20px 50px; }
.footer__top{ display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--cinza-borda); }
.footer__logo{ height: 34px; margin-bottom: 16px; }
.footer__brand p{ color: var(--corpo); max-width: 360px; }
.footer__cols{ display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer__col h4{ font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--titulo); margin-bottom: 14px; }
.footer__col a{ display: block; color: var(--corpo); font-weight: 600; padding: 5px 0; transition: color .2s; }
.footer__col a:hover{ color: var(--rosa); }
.footer__bottom{ display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; color: var(--muted); font-size: .88rem; }

/* ============================================================
   PÁGINAS LEGAIS (Política de Privacidade / Termos)
   ============================================================ */
.legal-main{ padding-top: 120px; background: linear-gradient(180deg, #fff 0%, #fffafb 100%); }
.legal{ max-width: 760px; margin: 0 auto; padding: 12px 20px 70px; }
.legal__back{ display: inline-flex; align-items: center; gap: 6px; color: var(--rosa); font-weight: 700; font-size: .9rem; margin-bottom: 26px; }
.legal__back:hover{ text-decoration: underline; }
.legal__title{ font-family: "Nunito", sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 2.8rem); letter-spacing: -.02em; color: var(--titulo); margin-bottom: 8px; }
.legal__updated{ color: var(--muted); font-size: .9rem; margin-bottom: 38px; }
.legal__body{ color: var(--corpo); }
.legal__body h2{ font-family: "Nunito", sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--titulo); margin: 34px 0 12px; }
.legal__body h3{ font-weight: 700; font-size: 1.1rem; color: var(--titulo); margin: 28px 0 10px; }
.legal__body p{ margin-bottom: 14px; line-height: 1.75; }
.legal__body ul, .legal__body ol{ margin: 0 0 16px 22px; }
.legal__body li{ margin-bottom: 8px; line-height: 1.7; }
.legal__body ul li{ list-style: disc; }
.legal__body ol li{ list-style: decimal; }
.legal__body a{ color: var(--rosa); font-weight: 600; }
.legal__body a:hover{ text-decoration: underline; }

/* ============================================================
   PÁGINA DE OBRIGADO (pós-conclusão do quiz)
   ============================================================ */
.thanks-main{
  min-height: 72vh; display: flex; align-items: center; justify-content: center;
  padding: 150px 20px 90px;
  background: linear-gradient(180deg, #fff 0%, #fffafb 100%);
}
.thanks{ max-width: 560px; text-align: center; }
.thanks__check{ font-size: 46px; line-height: 1; color: var(--rosa); margin-bottom: 16px; }
.thanks__title{ font-family: "Nunito", sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 2.6rem); letter-spacing: -.02em; color: var(--titulo); margin-bottom: 20px; }
.thanks p{ color: var(--corpo); line-height: 1.75; margin-bottom: 14px; }
.thanks__sign{ font-weight: 700; color: var(--titulo); margin-top: 8px; }
.thanks .btn{ margin-top: 26px; }

/* ============================================================
   BANNER DE COOKIES
   ============================================================ */
.cookie{
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 18px;
  background: #fff; border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-card);
}
.cookie__text{ flex: 1 1 280px; font-size: .9rem; line-height: 1.5; color: var(--corpo); }
.cookie__text a{ color: var(--rosa); font-weight: 700; }
.cookie__actions{ display: flex; gap: 10px; margin-left: auto; }
.cookie .btn{ padding: 10px 20px; font-size: .9rem; }
@media (max-width: 560px){
  .cookie__actions{ width: 100%; }
  .cookie__actions .btn{ flex: 1; }
}

/* ============================================================
   REVEAL (scroll-triggered)
   ============================================================ */
[data-reveal]{ opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in{ opacity: 1; transform: none; }

/* Hero word stagger (load) */
.hero__title .word{ opacity: 0; transform: translateY(24px); animation: wordup .7s var(--ease) forwards; }
@keyframes wordup{ to{ opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  [data-reveal]{ opacity: 1; transform: none; }
  .hero__title .word{ opacity: 1; transform: none; }
  .marquee__track{ animation: none; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px){
  .nav__links, .nav__cta{ display: none; }
  .nav__burger{ display: flex; }
  .hero--clean{ text-align: center; }
  .hero__grid{ grid-template-columns: 1fr; gap: 44px; }
  .hero--clean .hero__content{ max-width: 660px; margin: 0 auto; text-align: center; }
  .hero--clean .hero__actions{ justify-content: center; }
  .laptop{ max-width: 520px; }
  .feature{ grid-template-columns: 1fr; gap: 28px; }
  .feature__text{ order: 1; text-align: center; }
  .feature__media{ order: 2; }
  .feature--reverse .feature__media{ order: 2; }
  .feature__text .h2--left, .feature__text .lead--left{ text-align: center; margin-left: auto; margin-right: auto; }
  .pills{ justify-content: center; }
  .protected__inner{ grid-template-columns: 1fr; gap: 36px; padding: 44px 28px; text-align: center; }
  .protected__copy .lead{ margin-left: auto; margin-right: auto; }
  .stats-sec__grid{ grid-template-columns: 1fr; gap: 44px; }
  .pricing__grid{ grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer__top{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .hero{ padding-top: 130px; }
  .hero__title{ font-size: clamp(1.8rem, 8vw, 2.3rem); }
  .areas__tab{ padding: 7px 13px; font-size: .78rem; }
  .areas__tabs{ padding: 12px 12px; gap: 6px; }
  .beforeafter{ grid-template-columns: 1fr; }
  .ba__arrow{ transform: rotate(90deg); justify-self: center; }
  .footer__bottom{ flex-direction: column; }
  .nav__pill{ padding-left: 16px; }
}
