/* =========================================================
   Tutuco landing promocional
   Paleta oficial · Alan Sans (títulos) · Host Grotesk (corpo) · liquid glass · clima tropical
   ========================================================= */

:root {
  --cyan: #21cae4;
  --charcoal: #1c1c1c;
  --charcoal-soft: #242424;
  --cream: #f3ead3;
  --gold: #fec102;
  --coral: #fe6034;
  --orange: #ff7a00;
  --orange-soft: #ff9a3d;
  --paper: #f7f6f3;
  --ink: #2e2b26;
  --ink-muted: #5f5a50;
  --heading: #3a3630;
  --white: #ffffff;
  --forest: #1a4d3a;
  --forest-soft: rgba(26, 77, 58, 0.14);

  --glass-tint: rgba(255, 255, 255, 0.48);
  --glass-border: rgba(255, 255, 255, 0.55);
  --glass-edge: rgba(28, 28, 28, 0.08);
  --glass-blur: 18px;

  --radius: 24px;
  --radius-sm: 18px;
  --pill: 999px;

  --font: "Host Grotesk", system-ui, sans-serif;
  --font-heading: "Alan Sans", "Host Grotesk", system-ui, sans-serif;
  --max: 1120px;
  --narrow: 680px;
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion: 220ms;
  --focus: 3px solid var(--cyan);
  --focus-offset: 3px;
  --focus-ring: 0 0 0 3px rgba(33, 202, 228, 0.42);

  --card-border: 1px solid rgba(28, 28, 28, 0.08);
  --card-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 14px 36px rgba(28, 28, 28, 0.07);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Sem JS: conteúdo legível; com JS, html.js anima o reveal */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--motion) var(--ease),
    transform var(--motion) var(--ease);
  transition-delay: calc(var(--d, 0) * 70ms);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Above-the-fold: never hide hero content waiting for JS */
html.js .hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

h1,
h2,
h3,
.hero-title,
.section-title,
.cta-title,
.pain-card-title,
.feature-copy h3,
.for-card h3,
.step-body h3,
.journey-card h3,
.faq-item summary,
.dest-mood strong {
  font-family: var(--font-heading);
  font-synthesis: none;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  /* Uma transição contínua na página inteira — sem faixas sólidas por seção */
  background-color: var(--paper);
  background-image:
    radial-gradient(70% 40% at 0% 8%, rgba(33, 202, 228, 0.14), transparent 55%),
    radial-gradient(55% 35% at 100% 18%, rgba(254, 193, 2, 0.12), transparent 50%),
    radial-gradient(60% 35% at 100% 78%, rgba(255, 122, 0, 0.06), transparent 55%),
    linear-gradient(
      180deg,
      #eff1db 0%,
      var(--paper) 20%,
      #f6f2e8 42%,
      #f5efe3 68%,
      #f4ecda 88%,
      var(--cream) 100%
    );
  background-attachment: scroll;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}

a {
  color: var(--charcoal);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Links inline: foco arredondado, sem “caixa” solta */
.nav-links a:focus-visible,
.footer-cols a:focus-visible,
.footer-contact:focus-visible,
.footer-legal-nav a:focus-visible,
.legal-links a:focus-visible,
.legal-kicker a:focus-visible,
.legal-body a:focus-visible,
.form-note a:focus-visible,
.cookie-banner-desc a:focus-visible,
.text-link:focus-visible {
  outline: none;
  border-radius: 8px;
  box-shadow: var(--focus-ring);
}

.brand:focus-visible {
  border-radius: 14px;
}

.nav-toggle:focus-visible {
  border-radius: 12px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.container {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 1.75rem);
  box-sizing: border-box;
  min-width: 0;
}

.container.narrow,
.narrow {
  width: min(100%, var(--narrow));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 1.75rem);
  box-sizing: border-box;
}

/* ---------- Liquid glass ---------- */

.glass-panel {
  background: var(--glass-tint);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 12px 32px rgba(28, 28, 28, 0.06);
  border-radius: var(--radius);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(247, 246, 243, 0.78);
  border-bottom: 1px solid rgba(28, 28, 28, 0.06);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
}

.brand-wordmark {
  width: auto;
  height: 20px;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--heading);
  cursor: pointer;
}

.nav-toggle-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-muted);
  transition: color var(--motion) var(--ease);
}

.nav-links a:hover {
  color: var(--charcoal);
}

@media (max-width: 779px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .site-header.is-nav-open {
    height: auto;
  }

  .site-header.is-nav-open .header-inner {
    height: auto;
    padding-bottom: 0.85rem;
  }

  .site-header.is-nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    width: 100%;
    order: 3;
    padding-top: 0.35rem;
  }

  .site-header.is-nav-open .nav-links a {
    padding: 0.75rem 0.35rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 780px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    margin-left: auto;
    margin-right: 0.75rem;
  }

  .header-actions {
    margin-left: 0;
  }
}

/* ---------- Buttons (Tutuco) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1.5px solid transparent;
  border-radius: var(--pill);
  font-family: var(--font);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--motion) var(--ease),
    box-shadow var(--motion) var(--ease),
    background var(--motion) var(--ease),
    border-color var(--motion) var(--ease),
    color var(--motion) var(--ease);
  text-align: center;
  line-height: 1.2;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
  }
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none !important;
  box-shadow: none;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn-sm {
  padding: 0.7rem 1.2rem;
  font-size: 0.92rem;
  min-height: 44px;
}

.btn-lg {
  padding: 0.95rem 1.55rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--orange);
  color: var(--charcoal);
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.28);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: #ef7000;
    color: var(--charcoal);
    box-shadow: 0 14px 28px rgba(255, 122, 0, 0.34);
  }
}

.btn-primary:focus-visible {
  box-shadow:
    var(--focus-ring),
    0 10px 24px rgba(255, 122, 0, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--charcoal);
  border-color: rgba(28, 28, 28, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(28, 28, 28, 0.22);
  }
}

.btn-ghost:focus-visible {
  box-shadow: var(--focus-ring);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* visible evita corte duro na transição pra próxima seção */
  overflow: visible;
  padding: clamp(1.25rem, 3vw, 2.25rem) 0 clamp(1.5rem, 3.5vw, 2.25rem);
  box-sizing: border-box;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  border-radius: 0 0 2rem 2rem;
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.88;
  transform: scale(1.04);
  transform-origin: center center;
  will-change: transform;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.55) 78%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.55) 78%,
    transparent 100%
  );
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(239, 241, 219, 0.96) 0%,
      rgba(247, 246, 243, 0.78) 28%,
      rgba(247, 246, 243, 0.22) 55%,
      transparent 74%
    ),
    linear-gradient(
      180deg,
      transparent 42%,
      rgba(239, 241, 219, 0.28) 64%,
      rgba(247, 246, 243, 0.72) 82%,
      #eff1db 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(2.5rem, 7vw, 4.5rem);
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(239, 241, 219, 0) 0%,
    rgba(239, 241, 219, 0.55) 42%,
    #eff1db 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  width: min(100%, var(--max));
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 1.75rem);
  box-sizing: border-box;
  flex: 1 1 auto;
  min-height: 0;
  align-self: center;
}

@media (min-width: 900px) {
  .hero-stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    min-height: 100%;
    height: 100%;
  }
}

@media (min-width: 1200px) {
  .hero-stage {
    max-width: 1040px;
    gap: 2rem;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 34rem;
  text-align: left;
}

@media (max-width: 899px) {
  .hero-copy {
    align-items: center;
    text-align: center;
    margin-inline: auto;
    order: 2;
  }

  .hero-brand {
    margin-inline: auto;
  }

  .hero-visual {
    order: 1;
  }
}

.hero-brand {
  margin: 0;
  width: min(148px, 42vw);
  height: auto;
  display: block;
}

.hero-title {
  margin: 0;
  max-width: 11ch;
  font-weight: 700;
  font-size: clamp(2.35rem, 7vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--heading);
}

.hero-sub {
  margin: 0;
  max-width: 28ch;
  font-weight: 300;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  line-height: 1.45;
  color: var(--ink-muted);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  width: 100%;
}

@media (max-width: 899px) {
  .hero-ctas {
    justify-content: center;
  }
}

.hero-ctas .btn {
  width: min(100%, 280px);
}

@media (min-width: 560px) {
  .hero-ctas .btn {
    width: auto;
  }
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
  width: 100%;
}

.store-badge {
  display: inline-flex;
  line-height: 0;
  border-radius: 8px;
  transition: transform var(--motion) var(--ease), opacity var(--motion) var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.92;
  }
}

.store-badge:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.store-badge img {
  height: 44px;
  width: auto;
}

@media (max-width: 899px) {
  .store-badges {
    justify-content: center;
  }
}

.store-badges-cta {
  margin-top: 0.35rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(220px, 40vw, 440px);
}

.hero-glow {
  position: absolute;
  width: min(78%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(33, 202, 228, 0.35) 0%, rgba(254, 193, 2, 0.18) 42%, transparent 70%);
  filter: blur(8px);
  z-index: 0;
}

.hero-mascot {
  position: relative;
  z-index: 1;
  width: min(86%, 480px);
  height: auto;
  filter: drop-shadow(0 28px 40px rgba(28, 28, 28, 0.22));
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(4rem, 9vw, 6rem) 0;
  position: relative;
}

.section-title {
  margin: 0 0 0.85rem;
  font-weight: 700;
  font-size: clamp(1.85rem, 4.8vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--heading);
}

.section-lead {
  margin: 0 auto 1.75rem;
  text-align: center;
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 36ch;
}

/* Pain */

.section-pain {
  background: transparent;
}

.pain-grid {
  display: grid;
  gap: 1.1rem;
  align-items: start;
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.pain-card {
  padding: 1.25rem 1.2rem 1.3rem;
  height: auto;
}

.pain-card-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 0 0.85rem;
  object-fit: contain;
}

.pain-card-title {
  margin: 0 0 0.65rem;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--heading);
}

.pain-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  font-weight: 400;
}

/* Solution / steps */

.section-solution::before {
  content: none;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem 1.25rem;
  margin: 0;
}

.step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0e8fa3;
  background: rgba(33, 202, 228, 0.16);
  border: 1px solid rgba(33, 202, 228, 0.28);
  box-shadow: 0 8px 18px rgba(33, 202, 228, 0.32);
}

.step-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--heading);
}

.step-body p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* Diff / journey */

.section-diff {
  background: transparent;
  color: inherit;
}

.dark-panel .section-title {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.diff-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.diff-logo img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 14px 32px rgba(0, 0, 0, 0.35);
}

.diff-lead {
  text-align: center;
  max-width: 42ch;
  margin: 0 auto 2.25rem;
  color: rgba(243, 234, 211, 0.78);
  font-weight: 300;
  font-size: 1.05rem;
}

.journey-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .journey-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.journey-card {
  padding: 1.45rem 1.3rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 234, 211, 0.14);
  backdrop-filter: blur(12px);
}

.journey-phase {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.journey-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.journey-card p {
  margin: 0;
  color: rgba(243, 234, 211, 0.78);
  font-weight: 300;
  font-size: 0.98rem;
}

.journey-example {
  margin-top: 1rem !important;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(33, 202, 228, 0.12);
  border-left: 3px solid var(--cyan);
  color: rgba(243, 234, 211, 0.92) !important;
  font-size: 0.9rem !important;
  font-style: italic;
  font-weight: 400 !important;
}

.diff-copy {
  text-align: center;
  font-size: clamp(1.05rem, 2.6vw, 1.18rem);
}

.diff-copy p {
  margin: 0 0 1rem;
  color: rgba(243, 234, 211, 0.88);
}

.diff-punch {
  font-weight: 600;
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--gold) !important;
}

.diff-copy p:last-child {
  margin-bottom: 0;
  font-weight: 300;
}

/* Values */

.values-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-block {
  text-align: left;
  padding: 1.45rem 1.25rem;
}

.value-art {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 16px rgba(28, 28, 28, 0.1));
}

.value-block h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.value-block p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.section-dest {
  background: transparent;
}

/* dest-rail legado: o rail cinematic no dark-panel sobrescreve */

.dest-card {
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass-tint);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.15);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.15);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 28px rgba(28, 28, 28, 0.06);
  display: flex;
  flex-direction: column;
}

.dest-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
}

.dest-card figcaption {
  padding: 0.95rem 1.05rem 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.dest-card figcaption strong {
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}

.dest-card figcaption span {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink-muted);
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 0.1rem 1.15rem;
  overflow: hidden;
  transition:
    border-color 280ms var(--ease),
    box-shadow 280ms var(--ease);
}

.faq-item[open] {
  border-color: rgba(33, 202, 228, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 14px 34px rgba(28, 28, 28, 0.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--heading);
  padding: 1.05rem 1.75rem 1.05rem 0;
  position: relative;
  letter-spacing: -0.015em;
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus {
  outline: none;
}

.faq-item summary:focus-visible {
  outline: none;
}

.faq-item:has(summary:focus-visible) {
  box-shadow:
    0 0 0 3px rgba(33, 202, 228, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 14px 34px rgba(28, 28, 28, 0.08);
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0e8fa3;
  background: rgba(33, 202, 228, 0.14);
  line-height: 1;
  transition:
    transform 280ms var(--ease),
    background 280ms var(--ease),
    color 280ms var(--ease);
}

.faq-item[open] summary::after {
  content: "−";
  background: rgba(33, 202, 228, 0.22);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease);
}

html:not(.js) .faq-item[open] .faq-panel,
html.js .faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item p {
  margin: 0 0 1.05rem;
  color: var(--ink-muted);
  padding-right: 1rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 260ms var(--ease),
    transform 260ms var(--ease);
}

html:not(.js) .faq-item[open] p,
html.js .faq-item.is-open p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 60ms;
}

@media (prefers-reduced-motion: reduce) {
  .faq-panel,
  .faq-item p,
  .faq-item summary::after {
    transition: none;
  }
}

/* CTA final */

.section-cta {
  padding-bottom: clamp(4.5rem, 10vw, 7rem);
  background: transparent;
}

.cta-wide {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 1.75rem);
  box-sizing: border-box;
}

.cta-panel {
  width: 100%;
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.35rem, 4vw, 2.25rem);
  background: rgba(255, 255, 255, 0.55);
}

.cta-panel-wide {
  text-align: left;
}

.cta-layout {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 860px) {
  .cta-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }
}

.cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  min-width: 0;
}

.cta-art {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.cta-scene {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 14px 24px rgba(28, 28, 28, 0.12));
}

.cta-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.7rem, 4.8vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--heading);
  max-width: 14ch;
}

.cta-sub {
  margin: 0;
  font-weight: 300;
  font-size: clamp(1.05rem, 2.6vw, 1.2rem);
  color: var(--ink-muted);
  max-width: 34ch;
}

.waitlist-form {
  width: min(100%, 460px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 0.55rem;
}

@media (min-width: 520px) {
  .waitlist-form {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .waitlist-fields {
    grid-column: 1;
  }

  .waitlist-form .btn {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .waitlist-form .form-status,
  .waitlist-form .form-note {
    grid-column: 1 / -1;
  }
}

.waitlist-fields {
  display: grid;
  gap: 0.55rem;
}

.waitlist-form input[type="email"],
.waitlist-form select,
.waitlist-form .btn {
  height: 3.25rem;
  box-sizing: border-box;
  border-radius: 999px;
}

.waitlist-form input[type="email"],
.waitlist-form select {
  width: 100%;
  margin: 0;
  padding: 0 1.25rem;
  border: 1.5px solid rgba(28, 28, 28, 0.12);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(28, 28, 28, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.waitlist-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235A574E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}

.waitlist-form input[type="email"]::placeholder {
  color: rgba(90, 87, 78, 0.7);
  font-weight: 300;
}

.waitlist-form input[type="email"]:focus,
.waitlist-form input[type="email"]:focus-visible,
.waitlist-form select:focus,
.waitlist-form select:focus-visible {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(33, 202, 228, 0.22);
}

.waitlist-form input[aria-invalid="true"] {
  border-color: rgba(180, 35, 24, 0.55);
}

.waitlist-form input[aria-invalid="true"]:focus,
.waitlist-form input[aria-invalid="true"]:focus-visible {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.2);
}

.waitlist-form .btn {
  padding: 0 1.35rem;
  white-space: nowrap;
  line-height: 1;
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: var(--forest);
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 42ch;
}

/* Footer */

.site-footer {
  padding: 2.75rem 0 2rem;
  border-top: 1px solid rgba(28, 28, 28, 0.06);
  background: transparent;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 1.75rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.1fr 1.4fr;
    align-items: start;
  }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--charcoal);
}

.footer-brand img:first-child {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

.footer-wordmark {
  width: auto;
  height: 20px;
  display: block;
}

.footer-tagline {
  margin: 0.75rem 0 0;
  max-width: 28ch;
  font-weight: 300;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.footer-contact {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--heading);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color var(--motion) var(--ease);
}

.footer-contact:hover {
  color: var(--orange);
  text-decoration: underline;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer-label {
  margin: 0 0 0.65rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.footer-cols a {
  display: block;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin-bottom: 0.45rem;
  transition: color var(--motion) var(--ease);
}

.footer-cols a:hover {
  color: var(--orange);
}

.form-note a {
  color: var(--heading);
  text-underline-offset: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(28, 28, 28, 0.06);
  padding-top: 1.15rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-muted);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.footer-legal-nav {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.footer-legal-nav a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  text-underline-offset: 2px;
  transition: color var(--motion) var(--ease);
}

.footer-legal-nav a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.legal-footer.footer-bottom {
  border-top: none;
  padding-top: 0;
}

/* ---------- Legal pages ---------- */

.legal-page .site-header .header-inner {
  justify-content: space-between;
}

.legal-main {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 8vw, 5rem);
}

.legal-wrap {
  max-width: 42rem;
}

.legal-kicker {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.legal-kicker a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
}

.legal-kicker a:hover {
  color: var(--orange);
}

.legal-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--heading);
  line-height: 1.15;
}

.legal-updated {
  margin: 0 0 2rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-muted);
}

.legal-body {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 400;
}

.legal-body h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--heading);
}

.legal-body h3 {
  margin: 1.25rem 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--heading);
}

.legal-body p {
  margin: 0 0 0.9rem;
}

.legal-body ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-body li {
  margin-bottom: 0.4rem;
}

.legal-body a {
  color: var(--heading);
  text-underline-offset: 2px;
}

.legal-body a:hover {
  color: var(--orange);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 28rem;
}

.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(58, 54, 48, 0.12);
}

.legal-table th {
  font-weight: 600;
  background: rgba(239, 241, 219, 0.65);
  color: var(--heading);
}

.legal-table code {
  font-size: 0.82em;
  word-break: break-all;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(28, 28, 28, 0.08);
}

.legal-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-muted);
  text-decoration: none;
}

.legal-links a:hover,
.legal-links a[aria-current="page"] {
  color: var(--orange);
}

.legal-links a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 3px;
}

button.linkish {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--heading);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  border-radius: 4px;
}

@media (hover: hover) and (pointer: fine) {
  button.linkish:hover {
    color: var(--orange);
  }
}

button.linkish:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* ---------- Cookie banner ---------- */

.cookie-banner {
  position: fixed;
  z-index: 80;
  left: auto;
  right: 0;
  bottom: 0;
  width: min(100%, 22.5rem);
  padding: 0.85rem clamp(0.85rem, 3vw, 1.15rem)
    calc(0.85rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(10px);
}

.cookie-banner-inner {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(247, 246, 243, 0.92)),
    rgba(247, 246, 243, 0.94);
  border: 1px solid rgba(58, 54, 48, 0.1);
  box-shadow:
    0 18px 40px rgba(28, 28, 28, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.cookie-banner-mascot {
  width: 88px;
  height: auto;
  align-self: flex-start;
  margin-bottom: -0.15rem;
  filter: drop-shadow(0 8px 14px rgba(28, 28, 28, 0.1));
}

.cookie-banner-copy {
  min-width: 0;
}

.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner-actions .btn {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}

.cookie-banner-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--heading);
}

.cookie-banner-desc {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-muted);
}

.cookie-banner-desc a {
  color: var(--heading);
  text-underline-offset: 2px;
}

.cookie-banner-desc a:hover {
  color: var(--orange);
}

.cookie-banner .btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--heading);
  border: 1px solid rgba(58, 54, 48, 0.14);
}

@media (hover: hover) and (pointer: fine) {
  .cookie-banner .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(58, 54, 48, 0.22);
  }
}

.cookie-banner .btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.cookie-banner .btn-primary:focus-visible {
  box-shadow:
    var(--focus-ring),
    0 10px 24px rgba(255, 122, 0, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
}

/* ---------- Proof / Features / Social ---------- */

.for-grid {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 800px) {
  .for-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.for-card {
  padding: 1.25rem 1.2rem 1.3rem;
  height: auto;
}

.for-card-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 0 0.85rem;
  object-fit: contain;
}

.for-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--heading);
}

.for-card p {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.45;
}

.proof-inner {
  text-align: center;
  display: grid;
  gap: 1rem;
}

.proof-line {
  margin: 0;
  font-weight: 300;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  color: var(--ink-muted);
}

.proof-line strong {
  font-weight: 600;
  color: var(--charcoal);
}

.proof-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.proof-pills-inline {
  margin-top: 0;
  padding-top: 0;
}

.proof-pills li {
  position: relative;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--heading);
}

@media (min-width: 640px) {
  .proof-pills li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.7rem;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
  }
}

.section-product {
  padding-top: clamp(3rem, 7vw, 4.5rem);
  padding-bottom: 0;
}

.feature-row {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.feature-row-alt {
  background: transparent;
}

.feature-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .feature-row-alt .feature-media {
    order: -1;
  }
}

.feature-copy h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3.4vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--heading);
  line-height: 1.15;
}

.feature-copy p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-weight: 300;
  max-width: 38ch;
  font-size: 1.05rem;
}

.feature-kicker {
  margin: 0 0 0.55rem !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a4200 !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--charcoal);
  border-bottom: 1.5px solid rgba(255, 122, 0, 0.45);
  padding-bottom: 0.1rem;
  transition: color var(--motion) var(--ease), border-color var(--motion) var(--ease);
}

.text-link::after {
  content: "→";
  color: var(--orange);
}

@media (hover: hover) and (pointer: fine) {
  .text-link:hover {
    color: var(--orange);
    border-color: var(--orange);
  }
}

.feature-stage {
  padding: 1.5rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.58);
}

.feature-stage > img {
  width: min(180px, 42%);
  height: auto;
}

.feature-scene {
  width: 100% !important;
  max-width: 360px;
  border-radius: var(--radius-sm);
}

.budget-layers,
.alert-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 320px;
  display: grid;
  gap: 0.55rem;
}

.budget-layers li,
.alert-list li {
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  background: rgba(247, 246, 243, 0.85);
  border: 1px solid rgba(28, 28, 28, 0.06);
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.budget-layers li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.budget-layers span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
}

.budget-layers strong {
  font-weight: 600;
  color: var(--charcoal);
}

.chat-stage {
  align-items: stretch;
}

.chat-preview {
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.chat-bubble {
  max-width: 92%;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.chat-bubble p {
  margin: 0;
}

.chat-bubble-tutuco {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: rgba(243, 234, 211, 0.9);
  color: var(--charcoal);
  border-bottom-left-radius: 6px;
}

.chat-bubble-tutuco img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}

.chat-bubble-user {
  margin-left: auto;
  background: var(--orange);
  color: var(--charcoal);
  font-weight: 600;
  border-bottom-right-radius: 6px;
}

/* ---------- Motion / cards ---------- */

.surface-card {
  background: var(--glass-tint);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.15);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.15);
  border: var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.for-card,
.pain-card,
.step,
.faq-item {
  transition:
    transform var(--motion) var(--ease),
    box-shadow var(--motion) var(--ease),
    border-color var(--motion) var(--ease),
    background var(--motion) var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .for-card:hover,
  .pain-card:hover,
  .step:hover {
    transform: translateY(-3px);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.55) inset,
      0 20px 44px rgba(28, 28, 28, 0.1);
    border-color: rgba(33, 202, 228, 0.32);
    background: rgba(255, 255, 255, 0.62);
  }
}

.for-card:focus-within,
.pain-card:focus-within,
.step:focus-within {
  border-color: rgba(33, 202, 228, 0.4);
  box-shadow:
    var(--focus-ring),
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 14px 34px rgba(28, 28, 28, 0.08);
}

.proof-pills li {
  padding: 0.55rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: 0 8px 20px rgba(28, 28, 28, 0.05);
  font-weight: 600 !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 640px) {
  .proof-pills li:not(:last-child)::after {
    display: none;
  }
}

.step-num {
  border-radius: 16px !important;
  background: rgba(33, 202, 228, 0.16) !important;
  color: #0e8fa3 !important;
  font-family: var(--font-heading);
  font-weight: 700 !important;
  border: 1px solid rgba(33, 202, 228, 0.28);
  box-shadow: 0 8px 18px rgba(33, 202, 228, 0.32);
}

.phone-bezel {
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 28px 50px rgba(28, 28, 28, 0.22);
}

.hero-title {
  font-weight: 700;
}

.section-title {
  font-weight: 700;
}

.feature-kicker {
  display: inline-flex;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.22);
  text-transform: uppercase;
  letter-spacing: 0.06em !important;
}

.waitlist-form input[type="email"],
.waitlist-form select {
  border-color: rgba(28, 28, 28, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.faq-item[open],
.faq-item.is-open {
  border-color: rgba(33, 202, 228, 0.32) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 16px 36px rgba(33, 202, 228, 0.12) !important;
}

.faq-item.is-open:has(summary:focus-visible),
.faq-item:has(summary:focus-visible) {
  box-shadow:
    0 0 0 3px rgba(33, 202, 228, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 16px 36px rgba(33, 202, 228, 0.12) !important;
}

.journey-card {
  border: 1px solid rgba(243, 234, 211, 0.22) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border-radius: 22px !important;
}

.dest-mood {
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: 0 10px 24px rgba(28, 28, 28, 0.08);
}

.cta-layout-v2 .cta-title {
  font-weight: 700;
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.85rem, 4.8vw, 2.65rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section-pain {
  background: transparent;
}

.section-proof {
  position: relative;
  z-index: 1;
  margin-top: -1.5rem;
  padding: clamp(2rem, 4.5vw, 3rem) 0 clamp(2.5rem, 6vw, 4rem);
  overflow: visible;
  background: linear-gradient(
    180deg,
    #eff1db 0%,
    rgba(239, 241, 219, 0.35) 32%,
    transparent 70%
  );
}

.section-pain,
.section-solution {
  position: relative;
  overflow: visible;
}

.section-mascot {
  display: block;
  width: clamp(120px, 22vw, 168px);
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 14px 24px rgba(28, 28, 28, 0.12));
}

.section-corner {
  position: absolute;
  z-index: 0;
  width: clamp(100px, 14vw, 148px);
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 16px 28px rgba(28, 28, 28, 0.12));
  opacity: 0.92;
}

.section-corner--tl {
  top: clamp(0.75rem, 3vw, 1.5rem);
  left: clamp(0.75rem, 4vw, 2rem);
  transform: rotate(-7deg);
}

.section-corner--br {
  right: clamp(0.75rem, 4vw, 2rem);
  bottom: clamp(0.75rem, 3vw, 1.75rem);
  transform: rotate(5deg);
}

html.js .section-corner--tl.reveal.is-visible {
  animation: corner-bob-tl 6s var(--ease) infinite;
}

html.js .section-corner--br.reveal.is-visible {
  animation: corner-bob-br 5.2s var(--ease) infinite;
}

@keyframes corner-bob-tl {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-7px);
  }
}

@keyframes corner-bob-br {
  0%,
  100% {
    transform: rotate(5deg) translateY(0);
  }
  50% {
    transform: rotate(7deg) translateY(-9px);
  }
}

@media (max-width: 720px) {
  .section-corner {
    width: clamp(80px, 22vw, 110px);
    opacity: 0.82;
  }

  .section-corner--tl {
    left: 0.35rem;
  }

  .section-corner--br {
    right: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js .section-corner.reveal.is-visible {
    animation: none;
  }
}

.section-proof .container,
.section-pain .container,
.section-solution .container {
  position: relative;
  z-index: 1;
}

.section-product {
  background: transparent;
}

.feature-row-alt {
  /* Leve ênfase, mesma família de cor, sem faixa sólida */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 35%,
    rgba(255, 255, 255, 0.22) 65%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
}

.section-solution {
  background: transparent;
}

.section-faq {
  background: transparent;
}

.section-faq .section-title {
  margin-bottom: 2.5rem;
}

/* Hero composition */

.hero-visual {
  isolation: isolate;
}

.hero-ground {
  position: absolute;
  bottom: 6%;
  left: 50%;
  width: min(70%, 340px);
  height: 28px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(28, 28, 28, 0.28), transparent 70%);
  filter: blur(6px);
  z-index: 0;
}

.hero-mascot {
  width: min(88%, 460px);
  filter: drop-shadow(0 36px 48px rgba(28, 28, 28, 0.28));
  transform-origin: 50% 80%;
}

.hero-visual.is-visible .hero-mascot {
  animation: mascot-in 900ms var(--ease) both;
}

.hero-phone {
  position: absolute;
  right: -2%;
  bottom: 4%;
  z-index: 2;
  width: min(42%, 200px);
  transform: rotate(6deg) translateX(10px);
  filter: drop-shadow(0 22px 32px rgba(28, 28, 28, 0.28));
}

@media (max-width: 899px) {
  .hero-phone {
    right: -4%;
    bottom: 0;
    width: min(46%, 170px);
    transform: rotate(6deg) translateX(8px);
  }
}

@media (max-width: 520px) {
  .hero-phone {
    display: none;
  }
}

@keyframes mascot-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Phone mocks */

.feature-media {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(100%, 280px);
  margin-inline: auto;
}

.phone-sm {
  width: 100%;
}

.phone-bezel {
  position: relative;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #2a2a2a, #121212 55%, #1c1c1c);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 28px 50px rgba(28, 28, 28, 0.22);
}

.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 78px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0a0a0a;
}

.phone-screen {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  background: #f7f6f3;
  padding: 2.4rem 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.phone-sm .phone-screen {
  min-height: 280px;
  padding-top: 2.1rem;
}

.phone-appbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
}

.phone-appbar img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.phone-appbar em {
  margin-left: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--forest);
}

.phone-budget-total {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.budget-bars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.budget-bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
  color: var(--ink-muted);
}

.budget-bar-meta strong {
  color: var(--charcoal);
}

.budget-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(28, 28, 28, 0.08);
  overflow: hidden;
}

.budget-bar i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  background: var(--cyan);
  transition: width 900ms var(--ease);
}

html.js .budget-bar i {
  width: 0;
}

html.js .reveal.is-visible .budget-bar i,
html.js .phone.in-view .budget-bar i,
.reveal.is-visible .budget-bar i,
.phone.in-view .budget-bar i {
  width: var(--w);
}

.budget-bar--gold i {
  background: var(--gold);
}

.budget-bar--coral i {
  background: var(--coral);
}

.phone-tip {
  margin: auto 0 0;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(33, 202, 228, 0.14);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
}

.chat-preview--phone {
  display: grid;
  gap: 0.55rem;
  flex: 1;
  align-content: start;
  align-items: start;
  grid-auto-rows: max-content;
}

.chat-preview--phone .chat-bubble {
  max-width: 95%;
  width: fit-content;
  height: fit-content;
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  line-height: 1.35;
}

.chat-preview--phone .chat-bubble-tutuco {
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.06);
  justify-self: start;
}

.chat-preview--phone .chat-bubble-user {
  justify-self: end;
  margin-left: 0;
}

.chat-stagger {
  opacity: 1;
  transform: none;
}

html.js .chat-stagger {
  opacity: 0;
  transform: translateY(10px);
}

html.js .reveal.is-visible .chat-stagger,
html.js .phone.in-view .chat-stagger,
html.js .hero-visual.is-visible .chat-stagger {
  animation: bubble-in 480ms var(--ease) forwards;
  animation-delay: calc(180ms + var(--i, 0) * 160ms);
}

@keyframes bubble-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.route-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.route-list li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.55rem;
  align-items: start;
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.06);
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.route-list strong {
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.route-list-hint {
  display: block !important;
  grid-template-columns: 1fr !important;
  background: rgba(254, 193, 2, 0.18) !important;
  color: var(--charcoal) !important;
  font-weight: 600;
}

.alert-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.alert-cards li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.06);
  font-size: 0.82rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.35;
}

.alert-dot {
  width: 8px;
  height: 8px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.phone-screen--route,
.phone-screen--alerts,
.phone-screen--budget {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(33, 202, 228, 0.12), transparent 60%),
    #f7f6f3;
}

.phone-screen--chat {
  background: #f7f6f3;
}

/* Destinos / Como funciona — sem faixa própria; herdam o wash do body */

.section-dest,
.section-solution {
  background: transparent;
  color: inherit;
  overflow: visible;
}

.section-dest {
  padding-bottom: 0;
  margin-bottom: 0;
}

.section-solution {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.section-dest .section-title {
  color: var(--heading);
}

.section-dest .section-lead {
  color: var(--ink-muted);
  max-width: 48ch;
}

.dark-panel {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(33, 202, 228, 0.16), transparent 55%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-soft) 100%);
  color: var(--cream);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(243, 234, 211, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 48px rgba(28, 28, 28, 0.28);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 3.5vw, 2.25rem);
}

.dark-panel .section-title {
  color: var(--cream);
}

.dark-panel .section-lead,
.dark-panel .diff-lead {
  color: rgba(243, 234, 211, 0.78);
}

.dest-intro {
  margin-bottom: 1.5rem;
}

.dest-ticker {
  width: 100%;
  /* Sem overflow aqui: overflow-x:hidden força clip vertical no WebKit
     e a sombra dos cards vira uma linha (“corte”). O body/main já cortam o X. */
  overflow: visible;
  padding: 0.35rem 0 1.75rem;
}

.dest-ticker-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0.25rem 0 0.5rem;
  animation: dest-ticker 42s linear infinite;
}

@media (hover: hover) and (pointer: fine) {
  .dest-ticker:hover .dest-ticker-track {
    animation-play-state: paused;
  }
}

@keyframes dest-ticker {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.dest-mood {
  position: relative;
  margin: 0;
  flex: 0 0 auto;
  width: min(78vw, 320px);
  height: clamp(220px, 42vw, 280px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: 0 10px 24px rgba(28, 28, 28, 0.08);
}

.dest-mood img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 700ms var(--ease);
}

.dest-mood::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 28%,
    rgba(12, 12, 12, 0.18) 52%,
    rgba(12, 12, 12, 0.55) 78%,
    rgba(12, 12, 12, 0.72) 100%
  );
}

.dest-mood figcaption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
}

.dest-mood strong {
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 1px 10px rgba(12, 12, 12, 0.35);
}

@media (hover: hover) and (pointer: fine) {
  .dest-mood:hover img {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dest-ticker {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.75rem;
  }

  .dest-ticker-track {
    animation: none;
    padding-inline: clamp(1.25rem, 4vw, 1.75rem);
  }

  .dest-mood {
    scroll-snap-align: start;
  }
}

/* CTA conversational */

.section-cta {
  padding: 0;
  background: transparent;
}

.cta-band {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
  isolation: isolate;
  background:
    radial-gradient(ellipse 44% 62% at 16% 68%, rgba(33, 202, 228, 0.12), transparent 72%);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

/* Glow direito inset: não encosta na borda (evita corte do overflow-x) */
.cta-band::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: clamp(2.5rem, 10vw, 7rem);
  top: 18%;
  width: min(38vw, 380px);
  height: min(42vw, 340px);
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.22);
  filter: blur(72px);
  pointer-events: none;
  transform: translateZ(0);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-layout-v2 {
  display: grid;
  gap: 2rem;
  align-items: center;
  min-width: 0;
}

@media (min-width: 860px) {
  .cta-layout-v2 {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2.5rem;
  }
}

.cta-mascot {
  display: flex;
  justify-content: center;
}

.cta-mascot img {
  width: min(100%, 340px);
  filter: drop-shadow(0 28px 40px rgba(28, 28, 28, 0.18));
}

.cta-layout-v2 .cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 14ch;
  overflow-wrap: anywhere;
}

.cta-layout-v2 .cta-sub {
  max-width: 32ch;
}

.cta-layout-v2 .waitlist-form {
  width: min(100%, 440px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual.is-visible .hero-mascot,
  .reveal.is-visible .chat-stagger,
  .phone.in-view .chat-stagger,
  .hero-visual.is-visible .chat-stagger {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal.is-visible .budget-bar i,
  .phone.in-view .budget-bar i {
    width: var(--w);
    transition: none;
  }
}
