/* ═══════════════════════════════════════════════════════════
   KARVY — Stylesheet
   ═══════════════════════════════════════════════════════════ */

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

/* ─── VARIÁVEIS ────────────────────────────────────────────── */
:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --dark: #080c0a;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-400: #a1a1aa;
  --gray-600: #52525b;
  --gray-900: #18181b;
  --white: #ffffff;
}

/* ─── BASE ─────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ──────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 16px 5%;
  pointer-events: none;
}

.nav-inner {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  height: 56px;
  padding: 0 8px 0 20px;
  background: rgba(10, 14, 11, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--green-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-nav {
  background: var(--green-500);
  color: var(--white);
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}

.btn-nav:hover {
  background: var(--green-600);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: #060808;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 5% 32px;
  gap: 3.5rem;
  overflow: hidden;
  position: relative;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── texto ──────────────────────────────────────────────────── */
.hero-text {
  text-align: center;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

/* badge de disponibilidade */
.hero-avail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 8px var(--green-400);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

/* título principal — animação de varredura verde → branco */
@property --sweep {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

@keyframes title-sweep {
  0% {
    --sweep: 0%;
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  100% {
    --sweep: 100%;
  }
}

.hero-title {
  font-size: clamp(2.0rem, 3.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.4rem;
  /* gradient animado: verde varre para branco, pára nos ~74% */
  background: linear-gradient(to right,
      white 0%,
      white var(--sweep),
      var(--green-400) var(--sweep),
      #a3e635 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: title-sweep 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* "Email Marketing" mantém o gradiente verde fixo */
.title-gradient {
  background: linear-gradient(90deg, var(--green-400) 0%, #a3e635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* pill do Shopify inline no título */
.brand-pill {
  display: inline-flex;
  align-items: center;
  background: #1b2019;
  border: 1px solid rgba(149, 191, 71, 0.35);
  border-radius: 12px;
  padding: 0.08em 0.35em;
  vertical-align: middle;
  position: relative;
  top: -0.08em;
  margin: 0 0.08em;
  transform: rotate(-4deg);
}

.brand-pill img {
  height: 0.62em;
  width: auto;
  display: block;
}

.hero-sub {
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* botão CTA */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--green-500);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-hero:hover {
  background: var(--green-600);
  transform: translateY(-1px);
}

.btn-hero svg {
  transition: transform 0.2s;
}

.btn-hero:hover svg {
  transform: translateX(3px);
}

/* ── área de animação ───────────────────────────────────────── */
.hero-anim {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 240px;
  overflow: visible;
  /* fade na base */
  -webkit-mask: linear-gradient(to bottom, black 55%, transparent 100%);
  mask: linear-gradient(to bottom, black 55%, transparent 100%);
}

/* SVG de arcos */
.anim-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.arc-path {
  stroke: rgba(74, 222, 128, 0.13);
  stroke-width: 1.5;
}

/* ── hub central — posição absoluta no centro exato (50%/50%) */
.anim-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.25);
  top: 50%;
  left: 50%;
  animation: hub-expand 2.6s ease-out infinite;
}

.hub-ring.r1 {
  width: 104px;
  height: 104px;
  margin: -52px;
  animation-delay: 0s;
}

.hub-ring.r2 {
  width: 104px;
  height: 104px;
  margin: -52px;
  animation-delay: 1.3s;
}

@keyframes hub-expand {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

.hub-body {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #141f13;
  border: 1.5px solid rgba(74, 222, 128, 0.3);
  box-shadow: 0 0 36px rgba(22, 163, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hub-body img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
}

/* ── partículas criadas por JS (avatares e cards) ───────────── */
.anim-particle {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  z-index: 2;
}

/* avatar */
.avatar-particle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #1a1a1a;
}

.avatar-particle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* card de notificação */
.card-particle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20, 26, 20, 0.92);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 12px;
  padding: 10px 14px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.notif-k {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-title {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.notif-title strong {
  color: var(--green-400);
}

.notif-meta {
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
}

/* ── scroll indicator ───────────────────────────────────────── */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badge {
  height: 28px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.hero-badge:hover { opacity: 1; }

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: rgba(255, 255, 255, 0.25);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

.scroll-indicator svg:first-child {
  margin-bottom: -6px;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  50% {
    transform: translateY(6px);
    opacity: 0.7;
  }
}

/* ─── LOGOS ────────────────────────────────────────────────── */
.logos-section {
  background: var(--gray-100);
  padding: 1.4rem 0;
  text-align: center;
}

.logos-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

/* wrapper com fade nas pontas */
.logos-track-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.logos-track-wrap::before,
.logos-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
}

.logos-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--gray-100), transparent);
}

.logos-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-100), transparent);
}

/* track que desliza */
.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.logo-img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  margin-right: 2.5rem;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s;
}

.logo-img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ─── SECÇÕES — BASE ───────────────────────────────────────── */
section {
  padding: 100px 5%;
}

.section-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

/* ─── SERVIÇOS ─────────────────────────────────────────────── */
/* ─── POR QUE EMAIL MARKETING ─────────────────────────────── */
.why-section {
  background: #fff;
  padding: 100px 5%;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid rgba(22, 163, 74, 0.2);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.why-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #0a0f0c;
  line-height: 1.15;
  margin-bottom: 1.75rem;
}

.why-body {
  font-size: 0.97rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.why-body strong {
  color: #0a0f0c;
  font-weight: 700;
}

.why-highlight {
  color: var(--green-600);
  font-style: normal;
  font-weight: 600;
}

.why-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0 2.25rem;
  padding: 1.25rem 1.5rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-left: 3px solid var(--green-500);
  border-radius: 10px;
}

.why-proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.why-proof-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-600);
  line-height: 1;
}

.why-proof-label {
  font-size: 0.72rem;
  color: #6b7280;
  font-weight: 500;
}

.why-proof-divider {
  width: 1px;
  height: 36px;
  background: #e5e7eb;
  flex-shrink: 0;
}

.btn-why {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0a0f0c;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-why:hover {
  background: var(--green-600);
  transform: translateY(-1px);
}

/* video side */
.why-video {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-video-wrap {
  width: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0d1510;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.why-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #0d1a10 0%, #0f2318 100%);
}

.why-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 12px rgba(34, 197, 94, 0.15);
  padding-left: 4px;
}

.why-video-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.why-badges {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
  padding: 0.6rem 1.25rem;
  background: rgba(15, 28, 20, 0.82);
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 10px;
  align-self: center;
}

.why-badge {
  height: 26px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s;
}

/* Klaviyo (primeiro badge) — um pouco maior */
.why-badge:first-child {
  height: 36px;
}

.why-badge:hover { opacity: 1; }

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

  .why-proof {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* ─── EMAIL STRIP ─────────────────────────────────────────────*/
.email-strip {
  overflow: hidden;
  padding: 60px 0 0;
  background: #fff;
  position: relative;
  perspective: 1400px;
}


/* fade preto em baixo a ligar à secção seguinte */
.email-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent 0%, #080c0a 100%);
  z-index: 3;
  pointer-events: none;
}

.email-track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform-origin: center top;
  transform: rotateX(10deg) translateX(0px);
}

.email-card {
  flex-shrink: 0;
  width: 300px;
  height: 480px;
  margin-right: 0.5rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255,255,255,0.08);
  background: #1a1a1a;
}

.email-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── COMO FUNCIONA — ROADMAP ──────────────────────────────── */
.how {
  background: var(--dark);
  color: var(--white);
}

.how .section-tag {
  background: rgba(22, 163, 74, 0.14);
  color: var(--green-400);
}

.how .section-title {
  color: var(--white);
}

.how .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

/* grid de 4 colunas */
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* cada passo */
.roadmap-step {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* linha + badge no topo */
.roadmap-head {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.roadmap-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(74, 222, 128, 0.25);
  background: rgba(74, 222, 128, 0.06);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  position: relative;
  z-index: 1;
}

.roadmap-line-seg {
  flex: 1;
  height: 1px;
  background: rgba(74, 222, 128, 0.15);
  transition: background 0.3s;
}

.roadmap-line-seg.last {
  display: none;
}

/* card de conteúdo */
.roadmap-card {
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-left: 2px solid transparent;
  padding-left: 1.25rem;
  transition: border-color 0.3s;
}

.roadmap-phase {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(74, 222, 128, 0.5);
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.roadmap-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.roadmap-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.roadmap-card li {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.28);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
  transition: color 0.3s;
}

.roadmap-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.25);
  transition: background 0.3s;
}

/* ── Estado activo ─────────────────────────────────────────── */
.roadmap-step.active .roadmap-badge {
  background: var(--green-500);
  border-color: var(--green-400);
  color: var(--white);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.35);
}

.roadmap-step.active .roadmap-line-seg {
  background: rgba(74, 222, 128, 0.4);
}

.roadmap-step.active .roadmap-card {
  border-left-color: var(--green-500);
}

.roadmap-step.active .roadmap-phase {
  color: var(--green-400);
}

.roadmap-step.active .roadmap-card h3 {
  color: var(--white);
}

.roadmap-step.active .roadmap-card li {
  color: rgba(255, 255, 255, 0.6);
}

.roadmap-step.active .roadmap-card li::before {
  background: var(--green-400);
}

/* hover nos inactivos */
.roadmap-step:not(.active):hover .roadmap-badge {
  border-color: rgba(74, 222, 128, 0.4);
  color: rgba(255, 255, 255, 0.7);
}

.roadmap-step:not(.active):hover .roadmap-card h3 {
  color: rgba(255, 255, 255, 0.7);
}

/* ── traveler (avatar que percorre a linha) ─────────────────── */
.roadmap-traveler {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--green-400);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.15), 0 0 18px rgba(74, 222, 128, 0.4);
  transform: translate(-50%, -50%);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 4;
}

.roadmap-traveler img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* responsive */
@media (max-width: 900px) {
  .roadmap {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .roadmap-line-seg {
    display: none;
  }
}

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

/* ─── CALCULADORA ─────────────────────────────────────────────*/
.calc-section {
  background: #fff;
  padding: 100px 5%;
}

.calc-tag {
  background: rgba(22, 163, 74, 0.12);
  color: var(--green-600);
}

.calc-title {
  color: #0a1a0f;
}

.calc-section .section-sub {
  color: rgba(10, 26, 15, 0.55);
}

.calc-card {
  max-width: 960px;
  margin: 3.5rem auto 0;
  background: #f4f8f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* ── inputs ── */
.calc-inputs {
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  margin-top: 1.6rem;
}

.calc-row:first-child {
  margin-top: 0;
}

.calc-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(10, 26, 15, 0.55);
}

.calc-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a1a0f;
}

/* custom slider */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.1);
  outline: none;
  cursor: pointer;
  margin-bottom: 0;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-400);
  border: 2px solid var(--dark);
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
  cursor: pointer;
}

.calc-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-400);
  border: 2px solid var(--dark);
  cursor: pointer;
}

/* progress fill via inline style */
.calc-slider {
  background: linear-gradient(to right,
      var(--green-500) var(--fill, 30%),
      rgba(0, 0, 0, 0.1) var(--fill, 30%));
}

/* ── resultado ── */
.calc-result {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calc-result-top {
  flex: 1;
}

.calc-result-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(74, 222, 128, 0.6);
  margin-bottom: 0.75rem;
}

.calc-big {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green-400);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.calc-note {
  font-size: 0.82rem;
  color: rgba(10, 26, 15, 0.45);
  line-height: 1.65;
  min-height: calc(0.82rem * 1.65 * 2);
  /* reserva sempre 2 linhas */
}

.calc-hint {
  font-size: 0.75rem;
  color: rgba(10, 26, 15, 0.45);
  margin: 0.35rem 0 0;
  line-height: 1.4;
}

.calc-score-box {
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.calc-score-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.55rem;
}

.calc-score-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(10, 26, 15, 0.45);
}

.calc-score-num {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  transition: color 0.3s;
}

.calc-score-max {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.5;
}

.calc-score-bar-track {
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.55rem;
}

.calc-score-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.35s ease, background 0.3s;
}

.calc-score-msg {
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s;
}

.calc-gap-box {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-gap-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(239, 68, 68, 0.8);
}

.calc-gap-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #f87171;
  letter-spacing: -1px;
}

.btn-calc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--green-500);
  color: var(--white);
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-calc:hover {
  background: var(--green-600);
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .calc-card {
    grid-template-columns: 1fr;
  }

  .calc-inputs {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }
}

/* ─── O QUE INCLUI ────────────────────────────────────────────*/
.what-you-get {
  background: var(--dark);
  padding: 0 5% 100px;
}

.wyg-card {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 48px 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 8px 0 0 rgba(74, 222, 128, 0.7);
  position: relative;
}

.wyg-left {
  flex: 1;
}

.wyg-title {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1.8rem;
}

.wyg-title em {
  font-style: italic;
  color: var(--green-600);
}

.wyg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wyg-list li {
  font-size: 0.95rem;
  color: var(--gray-600);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.wyg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-400);
}

.wyg-right {
  flex-shrink: 0;
}

.btn-wyg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-900);
  color: var(--white);
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--green-400);
  transition: background 0.2s, transform 0.15s;
}

.btn-wyg:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .wyg-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
}

/* ─── RESULTADOS ───────────────────────────────────────────── */
.results {
  background: var(--green-50);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.result-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--green-200);
}

.result-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green-700);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ─── TESTEMUNHOS ──────────────────────────────────────────── */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}

.testi-card {
  background: var(--gray-100);
  border-radius: 14px;
  padding: 1.75rem;
}

.stars {
  color: var(--green-500);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testi-card blockquote {
  font-size: 0.92rem;
  color: var(--gray-900);
  line-height: 1.72;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--green-800);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
}

.testi-role {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ─── CTA ──────────────────────────────────────────────────── */
.cta-section {
  background: var(--green-700);
  text-align: center;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-section h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  position: relative;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--green-700);
  padding: 1rem 2.2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq {
  position: relative;
  background: #060808;
  overflow: hidden;
}

#faqCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.faq-content {
  position: relative;
  z-index: 1;
}

.faq .section-tag {
  background: rgba(22, 163, 74, 0.14);
  color: var(--green-400);
}

.faq .section-title {
  color: var(--white);
}

.faq-header {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq-box {
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-q-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.faq-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.faq-btn:hover {
  background: rgba(255, 255, 255, 0.09);
}

.faq-btn[aria-expanded="true"] {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.3);
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  transition: color 0.2s;
}

.faq-btn[aria-expanded="true"] .faq-icon {
  color: var(--green-400);
}

.faq-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.faq-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-right: 30%;
  margin-top: 14px;
  animation: faq-fadein 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes faq-fadein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-700);
  border: 1px solid rgba(74, 222, 128, 0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
}

.faq-bubble {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px 16px 16px 16px;
  padding: 14px 18px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* ─── BOOKING ──────────────────────────────────────────────── */
.booking-section {
  position: relative;
  background: #060808;
  padding: 100px 5%;
  overflow: hidden;
  text-align: center;
}

#bookingCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.booking-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.booking-tag {
  background: rgba(22, 163, 74, 0.14);
  color: var(--green-400);
  margin-bottom: 1.4rem;
}

.booking-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.booking-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.booking-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.booking-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.calendly-inline-widget {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 4rem 5% 2.5rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 0.7rem;
}

.footer-brand p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.38);
  max-width: 240px;
  line-height: 1.65;
}

.footer-links h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile orbit — escondido em desktop */
.mob-orbit { display: none; }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Global */
  section {
    padding: 64px 5%;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 72px 5% 24px;
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-anim {
    height: 180px;
  }

  /* Esconder só os cards de notificação (saem do ecrã) */
  .card-particle { display: none !important; }

  .notif-card {
    min-width: 160px;
  }

  /* Logos */
  .logos-track-wrap {
    max-width: 100%;
  }

  /* Why section */
  .why-section {
    padding: 64px 5%;
  }

  .why-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .why-proof {
    flex-direction: column;
    gap: 0.5rem;
  }

  .why-proof-divider {
    display: none;
  }

  .why-proof-item {
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding-bottom: 0.5rem;
  }

  .why-proof-item:last-child {
    border-bottom: none;
  }

  /* Email strip */
  .email-strip {
    padding: 36px 0 0;
  }

  .email-card {
    width: 220px;
    height: 360px;
  }

  /* Calc */
  .calc-section {
    padding: 64px 5%;
  }

  .calc-big {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  /* Roadmap */
  .how {
    padding: 64px 5%;
  }

  /* Booking */
  .booking-section {
    padding: 64px 5%;
  }

  /* FAQ */
  .faq-content {
    padding: 0;
  }

  /* Steps */
  .step:not(:last-child)::after {
    display: none;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  /* Global */
  section {
    padding: 52px 5%;
  }

  /* Hero */
  .hero {
    padding: 60px 5% 16px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .brand-pill {
    height: 36px;
    padding: 0 10px;
  }

  .brand-pill img {
    height: 22px;
  }

  /* Email strip */
  .email-card {
    width: 180px;
    height: 290px;
  }

  /* Why */
  .why-section {
    padding: 52px 5%;
  }

  /* Calc */
  .calc-section {
    padding: 52px 5%;
  }

  .calc-card {
    border-radius: 14px;
  }

  .calc-inputs,
  .calc-result {
    padding: 1.5rem;
  }

  /* FAQ */
  .faq-box {
    padding: 28px 16px;
  }

  .faq-q-row {
    padding-left: 0 !important;
  }

  .faq-answer {
    padding-right: 0;
  }

  /* Animations */
  .anim-left,
  .anim-right {
    display: none;
  }

  .anim-svg {
    display: none;
  }

  /* Booking */
  .booking-section {
    padding: 52px 5%;
  }

  .booking-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
}