/* ============================================================
   Notacil — Landing page
   Design: Figma "Notacil" (node 51-3) · 1440px reference
   ============================================================ */

:root {
  --cream: #faf8f2;
  --cream-2: #efeee6;
  --line: #d5dcd5;
  --ink: #0b2a31;
  --navy: #012432;
  --navy-2: #123b45;
  --muted: #596665;
  --green: #426b65;
  --orange: #f97316;
  --hero-blue: #99badf;
  --chip-blue: #48a8c5;
  --chip-light: #e6f3ef;
  --blue-link: #025b86;

  --font-heading: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-hero: "Work Sans", sans-serif;
  --font-hero-body: "Roboto", sans-serif;

  --pad-x: 120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

/* ---------- Utilitários ---------- */

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow--dark { font-weight: 700; letter-spacing: 2.5px; color: var(--navy); }
.eyebrow--navy { color: var(--navy); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.15;
  color: var(--ink);
}

.section-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.section-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.section-intro__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
}

.text-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-position: from-font;
  white-space: nowrap;
  transition: color .2s ease;
}
.text-link:hover { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(1, 36, 50, .18); }
.btn--orange { background: var(--orange); color: var(--navy); }
.btn--navy { background: var(--navy); color: var(--cream); }
.btn--navy-orange { color: var(--orange); }
.btn--outline { background: transparent; border: 1px solid #fff; color: var(--navy); }

/* Animação de entrada (scroll reveal) */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1),
    transform .8s cubic-bezier(.22, 1, .36, 1),
    filter .8s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform, filter;
}
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

section[id] { scroll-margin-top: 96px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ============================================================
   Navbar (fixa, aparece ao rolar além do hero)
   ============================================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(250, 248, 242, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-100%);
  transition: transform .3s ease;
}
.navbar.is-visible { transform: translateY(0); }

.navbar__logo { display: flex; align-items: center; }
.navbar__logo img {
  height: 36px;
  width: auto;
  transition: transform .25s ease;
}
.navbar__logo:hover img { transform: scale(1.04); }

.navbar__links { display: flex; align-items: center; gap: 32px; }
.navbar__links a {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  transition: color .2s ease;
}
.navbar__links a:hover { color: var(--orange); }

.navbar__actions { display: flex; align-items: center; gap: 24px; }
.navbar__login { font-weight: 600; font-size: 14px; color: var(--ink); }
.navbar__login:hover { color: var(--orange); }
.navbar__cta {
  background: var(--orange);
  padding: 10px 20px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  transition: filter .2s ease;
}
.navbar__cta:hover { filter: brightness(1.05); }

.navbar__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.navbar__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

.navbar__mobile {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.navbar__mobile a { font-weight: 500; font-size: 16px; color: var(--ink); }
.navbar__mobile .navbar__cta { align-self: flex-start; }
.navbar__mobile.is-open { display: flex; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  z-index: 1;
  height: 810px;
  background: var(--hero-blue);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__bg-photo {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 834.8px;
  object-fit: cover;
}

.hero__texture {
  position: absolute;
  left: -252.25px;
  top: -217px;
  width: 1832.49px;
  height: 1027px;
  opacity: .2;
  mix-blend-mode: color-dodge;
}
.hero__texture img { width: 100%; height: 100%; object-fit: cover; }

.hero__ellipse { position: absolute; transform: translateX(-50%); }
.hero__ellipse img {
  position: absolute;
  inset: -55.75% -37.68%;
  width: 175.36%;
  height: 211.5%;
  max-width: none;
}
.hero__ellipse--2 { left: 223.3px; top: 306.3px; width: 1061.57px; height: 717.46px; }
.hero__ellipse--3 { left: 1302.3px; top: 336.3px; width: 1061.57px; height: 717.46px; }
.hero__ellipse--1 { left: 720px; top: 475px; width: 1418.93px; height: 649.2px; }
.hero__ellipse--1 img { inset: -61.61% -28.19%; width: 156.38%; height: 223.22%; }

.hero__vector { position: absolute; }
.hero__vector--49 { left: 578px; top: 767px; width: 395px; height: 8px; }
.hero__vector--49 img { position: absolute; inset: -50% -1.01%; width: 102.02%; height: 200%; max-width: none; }
.hero__vector--48 { left: 239px; top: 743px; width: 1103px; height: 42px; }
.hero__vector--48 img { position: absolute; inset: -116.43% -4.43%; width: 108.86%; height: 332.86%; max-width: none; }

.hero__brand {
  position: absolute;
  left: 30px;
  top: 16px;
  width: 162.7px;
  z-index: 5;
}
.hero__brand img { width: 100%; height: auto; }

.hero__nav {
  position: absolute;
  left: 50%;
  top: 26.4px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 60px;
  z-index: 5;
}
.hero__nav a {
  font-family: var(--font-hero);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .04em;
  text-transform: capitalize;
  color: #fff;
  opacity: .7;
  white-space: nowrap;
  transition: opacity .2s ease;
}
.hero__nav a:hover, .hero__nav a.is-active { opacity: 1; font-weight: 700; }

.hero__login {
  position: absolute;
  left: 1264px;
  top: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .29);
  border-radius: 999px;
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  transition: background .2s ease;
}
.hero__login:hover { background: rgba(255, 255, 255, .12); }

.hero__content {
  position: absolute;
  left: 110px;
  top: 327px;
  width: 683px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  z-index: 4;
}

.hero__wordmark {
  position: absolute;
  left: -35px;
  top: -169px;
  width: 688px;
  height: 135px;
  overflow: hidden;
  pointer-events: none;
}
.hero__wordmark img {
  position: absolute;
  left: -1.6%;
  top: -8.15%;
  width: 101.6%;
  height: 145.19%;
  max-width: none;
}

.hero__title {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: 37px;
  line-height: 38px;
  letter-spacing: -1.925px;
}
.hero__title-line1 { color: #f8fbff; }
.hero__title-line2 { color: var(--navy); }

.hero__lead {
  font-family: var(--font-hero-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  width: 468px;
  max-width: 100%;
}

.hero__chips { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 12px;
  border-radius: 24px;
  background: var(--chip-blue);
  font-family: var(--font-hero-body);
  font-size: 14px;
  line-height: 1;
  color: var(--navy);
  white-space: nowrap;
}
.chip--light { background: var(--chip-light); }
.chip-arrow {
  display: inline-flex;
  width: 24px; height: 24px;
  align-items: center;
  justify-content: center;
}
.chip-arrow img { width: 24px; height: 24px; transform: rotate(-90deg); }

.hero__ctas {
  position: absolute;
  left: 110px;
  top: auto;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 4;
}
.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  background: #fff;
  border-radius: 9999px;
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--blue-link);
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease;
}
.hero__btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(1, 36, 50, .25); }

.hero__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  border-radius: 9999px;
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--blue-link);
  white-space: nowrap;
  transition: opacity .2s ease;
}
.hero__btn-ghost:hover { opacity: .8; }
.hero__btn-icon { width: 38px; height: 38px; }
.hero__btn-icon img { width: 100%; height: 100%; }

.hero__shots { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.hero__shot img { width: 100%; height: 100%; object-fit: cover; }
/* O print é quase branco: sem escurecer, as cópias somem no céu claro do fundo. */
.hero__shot--blur1 img, .hero__shot--blur2 img { filter: brightness(.6) saturate(1.3); }
.hero__shot--blur1 {
  position: absolute;
  left: 706px; top: 284px;
  width: 596px; height: 338px;
  transform: rotate(10.57deg);
  filter: blur(13.1px);
  opacity: .6;
}
.hero__shot--blur2 {
  position: absolute;
  left: 874px; top: 248px;
  width: 412.9px; height: 234.26px;
  transform: rotate(9.27deg);
  filter: blur(13.1px);
  opacity: .6;
}
.hero__shot--main {
  position: absolute;
  left: 737px; top: 327px;
  width: 596px; height: 338px;
}

/* ============================================================
   Benefícios
   ============================================================ */

.benefits {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 80px var(--pad-x);
}
.benefits__grid { display: flex; gap: 48px; }
.benefit { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.benefit__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--orange);
}
.benefit__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
}
.benefit__text { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ============================================================
   Story
   ============================================================ */

.story {
  position: relative;
  z-index: 2;
  background: var(--cream);
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 100px var(--pad-x);
}
.story__heading,
.story__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.story__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}
.story__title span { display: block; color: var(--orange); }
.story__text { font-size: 16px; line-height: 1.7; color: var(--muted); }
.story__link-wrap { padding-top: 12px; }

/* ============================================================
   Produto (tabs)
   ============================================================ */

.product {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 100px var(--pad-x);
  background: linear-gradient(169.33deg, #0490b8 26.3%, #035e89 95.4%);
}
.product__heading { display: flex; flex-direction: column; gap: 16px; }
.product__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.15;
  color: var(--cream);
}

.product__tabs { display: flex; gap: 8px; }
.product__tab {
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, .06);
  font-weight: 600;
  font-size: 14px;
  color: var(--cream);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.product__tab:hover { background: rgba(255, 255, 255, .14); }
.product__tab.is-active {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--navy);
}

.product__grid { display: flex; gap: 80px; align-items: flex-start; }
.product__panel[hidden] { display: none; }
.product__panel { animation: panelIn .35s ease; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.product__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
}
.product__copy h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: var(--cream);
}
.product__copy > p:not(.product__pill) {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  opacity: .8;
}
.product__pill {
  background: var(--navy);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  color: var(--cream);
}
.product__cta { padding-top: 12px; }

.product__mockup {
  width: 580px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  filter: drop-shadow(0 12px 12px rgba(0, 0, 0, .13));
}
.mock__shot {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.mock__footer p { font-style: italic; font-size: 11px; color: var(--muted); }

/* ============================================================
   Como começar
   ============================================================ */

.howto {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 100px var(--pad-x);
}
.howto__grid { display: flex; gap: 40px; align-items: stretch; }
.step {
  flex: 1;
  min-height: 255px;
  border: 1px solid var(--orange);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(249, 115, 22, .12); }
.step__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--orange);
}
.step__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
}
.step__text { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ============================================================
   Preços
   ============================================================ */

.pricing {
  background: var(--cream-2);
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 100px var(--pad-x);
}

.pricing__selector {
  display: flex;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
}
.pricing__period {
  padding: 8px 16px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 12px;
  color: var(--ink);
  transition: background .2s ease, color .2s ease;
}
.pricing__period.is-active { background: var(--navy-2); color: #fff; }

.pricing__grid { display: flex; gap: 48px; align-items: flex-start; }

.plan {
  flex: 1;
  border-radius: 4px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  min-width: 0;
  background: var(--orange);
}

.plan__head { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.plan__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.plan__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--navy);
}
.plan__desc { font-size: 14px; color: #fff; }

.plan__price { font-family: var(--font-heading); font-weight: 600; color: var(--navy); }
.plan__value { font-size: 32px; }
.plan__per { font-size: 14px; color: var(--navy); }

.plan__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
  width: 100%;
}
.plan__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #fff;
}
.plan__features li img { width: 14px; height: 14px; flex-shrink: 0; }

.pricing__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.pricing__footer p { font-size: 13px; color: var(--muted); }
.pricing__footer .text-link { font-size: 14px; }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 100px var(--pad-x);
}

.faq__accordion { display: flex; flex-direction: column; width: 100%; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  text-align: left;
}
.faq__question span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  transition: color .2s ease;
}
.faq__question:hover span { color: var(--orange); }
.faq__chevron { width: 16px; height: 16px; transition: transform .3s ease; }
.faq__item.is-open .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__answer p {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.faq__item.is-open .faq__answer { max-height: 200px; }

/* ============================================================
   CTA final
   ============================================================ */

.final-cta {
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 100px var(--pad-x);
}
.final-cta .eyebrow { width: 100%; }
.final-cta__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.15;
  text-align: center;
  color: var(--navy);
  max-width: 800px;
}
.final-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta__note { font-weight: 500; font-size: 13px; color: var(--navy); }

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 80px var(--pad-x) 40px;
}
.footer__grid { display: flex; gap: 80px; }
.footer__brand {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}
.footer__logo { width: 192px; height: 44px; }
.footer__brand p { font-size: 14px; line-height: 1.6; color: var(--muted); }

.footer__col { flex: 1; display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink);
}
.footer__col a {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--orange); }

.footer__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.footer__legal { display: flex; flex-direction: column; gap: 4px; color: var(--muted); }
.footer__legal p { font-size: 12px; }
.footer__legal .footer__cnpj { font-size: 11px; }
.footer__social { display: flex; gap: 16px; }
.footer__social a { opacity: .9; transition: opacity .2s ease; }
.footer__social a:hover { opacity: .6; }
.footer__social img { width: 18px; height: 18px; }

/* ============================================================
   Responsivo
   ============================================================ */

@media (max-width: 1280px) {
  :root { --pad-x: 64px; }

  .hero__content { left: 64px; }
  .hero__ctas { left: 64px; }
  .hero__shots { transform: translateX(60px); }
}

@media (max-width: 1080px) {
  :root { --pad-x: 40px; }

  .hero { height: auto; padding: 120px 40px 80px; }
  .hero__brand { left: 40px; }
  .hero__nav { display: none; }
  .hero__login { left: auto; right: 40px; }
  .hero__content { position: relative; left: 0; top: 0; z-index: 4; width: 100%; max-width: 683px; margin-top: 140px; }
  .hero__wordmark { width: min(688px, 100%); left: -8px; }
  .hero__ctas { position: relative; left: 0; top: 0; z-index: 4; margin-top: 32px; flex-wrap: wrap; }
  .hero__shots { display: none; }
  .hero__vector--48, .hero__vector--49 { display: none; }

  .benefits__grid { flex-direction: column; }
  .story { flex-direction: column; gap: 24px; }

  .product__grid { flex-direction: column; }
  .product__mockup { width: 100%; }

  .howto__grid { flex-direction: column; }
  .step { min-height: 0; }

  .section-intro { flex-direction: column; align-items: flex-start; gap: 24px; }
  .pricing__grid { flex-direction: column; }
  .plan { width: 100%; }
  .plan__features { grid-template-columns: 1fr; }
  .pricing__footer { flex-direction: column; align-items: flex-start; gap: 12px; }


  .footer__grid { flex-wrap: wrap; }
  .footer__brand { width: 100%; }
}

@media (max-width: 760px) {
  :root { --pad-x: 24px; }

  .navbar { padding: 0 24px; }
  .navbar__links, .navbar__actions { display: none; }
  .navbar__burger { display: flex; }

  .hero { padding: 100px 24px 64px; }
  .hero__brand { width: 130px; }
  .hero__title { font-size: 30px; line-height: 34px; letter-spacing: -1.2px; }
  .hero__wordmark { display: none; }
  .hero__content { margin-top: 40px; }
  .hero__btn-primary, .hero__btn-ghost { padding: 16px 24px; font-size: 15px; }

  .section-title { font-size: 28px; }
  .product__title { font-size: 30px; }
  .story__title { font-size: 28px; }
  .final-cta__title { font-size: 30px; }

  .plan { padding: 32px 24px; }
  .footer__grid { flex-direction: column; gap: 40px; }
  .footer__base { flex-direction: column; align-items: flex-start; gap: 20px; }
  .product__mockup { padding: 12px; }
}

/* ============================================================
   Animações — intro do hero e micro-interações
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDownCentered {
  from { opacity: 0; transform: translate(-50%, -16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes wordmarkIn {
  from { opacity: 0; transform: scale(.92) translateY(16px); filter: blur(18px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(14px) scale(.85); }
  to   { opacity: 1; transform: none; }
}
@keyframes shotIn {
  from { opacity: 0; transform: translateX(90px) translateY(24px); }
  to   { opacity: 1; transform: translateX(0) translateY(0); }
}
@keyframes shotInBlur {
  from { opacity: 0; }
  to   { opacity: .6; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes bgSettle {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
@keyframes arrowFlow {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}
@keyframes shine {
  from { left: -80%; }
  to   { left: 130%; }
}
@keyframes pricePop {
  0%   { opacity: .2; transform: translateY(8px) scale(.92); }
  100% { opacity: 1; transform: none; }
}
@keyframes iconNudge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

@media (prefers-reduced-motion: no-preference) {

  /* --- Sequência de entrada do hero (ao carregar) --- */
  .hero__bg-photo { animation: bgSettle 2.4s cubic-bezier(.22, 1, .36, 1) both; }
  .hero__texture, .hero__ellipse, .hero__vector { animation: fadeIn 1.6s ease .2s both; }

  .hero__brand { animation: fadeDown .7s cubic-bezier(.22, 1, .36, 1) .1s both; }
  .hero__nav   { animation: fadeDownCentered .7s cubic-bezier(.22, 1, .36, 1) .22s both; }
  .hero__login { animation: fadeDown .7s cubic-bezier(.22, 1, .36, 1) .34s both; }

  .hero__wordmark { animation: wordmarkIn 1.2s cubic-bezier(.22, 1, .36, 1) .25s both; }
  .hero__title    { animation: fadeUp .9s cubic-bezier(.22, 1, .36, 1) .5s both; }
  .hero__lead     { animation: fadeUp .9s cubic-bezier(.22, 1, .36, 1) .65s both; }

  .hero__chips > * { animation: chipIn .55s cubic-bezier(.34, 1.56, .64, 1) both; }
  .hero__chips > *:nth-child(1) { animation-delay: .85s; }
  .hero__chips > *:nth-child(2) { animation-delay: .93s; }
  .hero__chips > *:nth-child(3) { animation-delay: 1.01s; }
  .hero__chips > *:nth-child(4) { animation-delay: 1.09s; }
  .hero__chips > *:nth-child(5) { animation-delay: 1.17s; }
  .hero__chips > *:nth-child(6) { animation-delay: 1.25s; }
  .hero__chips > *:nth-child(7) { animation-delay: 1.33s; }

  .hero__ctas { animation: fadeUp .9s cubic-bezier(.22, 1, .36, 1) 1.15s both; }

  .hero__shot--main {
    animation:
      shotIn 1.1s cubic-bezier(.22, 1, .36, 1) .6s both,
      floatY 7s ease-in-out 2.4s infinite;
  }
  .hero__shot--blur1 { animation: shotInBlur 1.4s ease .45s both; }
  .hero__shot--blur2 { animation: shotInBlur 1.4s ease .55s both; }

  /* Setas do fluxo pulsando em sequência */
  .chip-arrow img { animation: arrowFlow 2.2s ease-in-out infinite; }
  .hero__chips > *:nth-child(2) img { animation-delay: 1.5s; }
  .hero__chips > *:nth-child(4) img { animation-delay: 1.9s; }
  .hero__chips > *:nth-child(6) img { animation-delay: 2.3s; }

  /* Ícone "conhecer o produto" acena para baixo */
  .hero__btn-ghost:hover .hero__btn-icon { animation: iconNudge .9s ease-in-out infinite; }
}

/* --- Brilho varrendo os botões no hover --- */
.btn, .hero__btn-primary, .navbar__cta {
  position: relative;
  overflow: hidden;
}
.btn::after, .hero__btn-primary::after, .navbar__cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn:hover::after,
.hero__btn-primary:hover::after,
.navbar__cta:hover::after { animation: shine .8s ease; }

/* --- Chips com leve resposta ao hover --- */
.chip { transition: transform .2s ease, box-shadow .2s ease; }
.chip:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(1, 36, 50, .18); }

/* --- Tabs e painéis mais vivos --- */
.product__panel { animation: panelIn .45s cubic-bezier(.22, 1, .36, 1); }

/* --- Pop no preço ao trocar o período --- */
.plan__value { display: inline-block; }
.plan__value.pop { animation: pricePop .4s cubic-bezier(.22, 1, .36, 1); }

/* --- Cards de plano com leve elevação --- */
.plan { transition: transform .25s ease, box-shadow .25s ease; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(1, 36, 50, .12); }

/* --- Links do rodapé deslizam --- */
.footer__col a { transition: color .2s ease, transform .2s ease; }
.footer__col a:hover { transform: translateX(4px); }

/* ============================================================
   Animações dos cards do produto (tabs)
   ============================================================ */

@keyframes mockCardIn {
  from { opacity: 0; transform: perspective(1200px) rotateY(-7deg) rotateX(3deg) translateY(36px) scale(.97); }
  to   { opacity: 1; transform: perspective(1200px) rotateY(0) rotateX(0) translateY(0) scale(1); }
}
@keyframes copyIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* O card responde ao mouse (tilt 3D via JS) */
.product__mockup {
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), filter .3s ease;
  transform-style: preserve-3d;
}

@media (prefers-reduced-motion: no-preference) {

  /* Coreografia disparada ao entrar na tela e ao trocar de aba */
  .product__panel.is-anim .product__copy > * {
    animation: copyIn .6s cubic-bezier(.22, 1, .36, 1) both;
  }
  .product__panel.is-anim .product__copy > *:nth-child(1) { animation-delay: .05s; }
  .product__panel.is-anim .product__copy > *:nth-child(2) { animation-delay: .15s; }
  .product__panel.is-anim .product__copy > *:nth-child(3) { animation-delay: .25s; }
  .product__panel.is-anim .product__copy > *:nth-child(4) { animation-delay: .35s; }

  .product__panel.is-anim .product__mockup {
    animation: mockCardIn .8s cubic-bezier(.22, 1, .36, 1) .1s both;
  }
  .product__panel.is-anim .mock__footer { animation: copyIn .5s ease .6s both; }
}

/* ============================================================
   Consentimento de cookies de medição (js/consent.js)
   ============================================================ */

.consent {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(560px, calc(100% - 32px));
  padding: 20px 24px;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(1, 36, 50, .3);
  color: var(--cream);
}
.consent[hidden] { display: none; }
.consent__text { font-size: 14px; line-height: 1.6; }
.consent__text a { font-weight: 600; text-decoration: underline; text-underline-position: from-font; }
/* recusar tem o mesmo peso de aceitar: a escolha não pode ser induzida */
.consent__actions { display: flex; justify-content: flex-end; gap: 8px; }
.consent__button {
  padding: 10px 20px;
  border: 1px solid var(--cream);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--cream);
}
.consent__button--accept { border-color: var(--orange); background: var(--orange); color: var(--navy); }

.footer__consent { padding: 0; font-size: inherit; color: inherit; text-align: left; }
.footer__consent:hover { color: var(--orange); }
.footer__col .footer__consent { font-size: 13px; color: var(--muted); white-space: nowrap; }
