/* VotoAI — Paleta: #0c1731 · #f6b321 · #ffffff */
:root {
  --blue: #0c1731;
  --yellow: #f6b321;
  --white: #ffffff;
  --blue-mid: #132447;
  --blue-light: #1a2d52;
  --blue-soft: #243a63;
  --yellow-dark: #dfa12d;
  --yellow-light: #ffc94d;
  --text: var(--blue);
  --text-muted: #3d4f6f;
  --text-on-dark: var(--white);
  --text-soft: rgba(255, 255, 255, 0.85);
  --surface: var(--white);
  --surface-alt: #f5f7fa;
  --surface-muted: #eef1f6;
  --border: rgba(12, 23, 49, 0.1);
  --border-strong: rgba(12, 23, 49, 0.18);
  --shadow: 0 4px 8px -2px rgba(12, 23, 49, 0.06), 0 12px 28px -4px rgba(12, 23, 49, 0.1);
  --shadow-lg: 0 8px 20px -4px rgba(12, 23, 49, 0.08), 0 24px 48px -8px rgba(12, 23, 49, 0.14);
  --shadow-xl: 0 16px 40px -8px rgba(12, 23, 49, 0.12), 0 32px 64px -12px rgba(12, 23, 49, 0.18);
  --focus-ring: rgba(246, 179, 33, 0.35);
  --radius: 12px;
  --radius-lg: 16px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-pad: clamp(3rem, 6vw, 5rem);
  --container-pad: clamp(1rem, 4vw, 1.5rem);
  --content-max: 1180px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

/* Labels — amarelo no escuro, azul no claro */
.label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.hero .label,
.benefits .label {
  color: var(--yellow);
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.section-head.light h2,
.section-head.light p {
  color: var(--text-on-dark);
}

.section-head.light p {
  opacity: 0.88;
}

.accent { color: var(--yellow); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
  text-align: center;
}

.btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--yellow);
  color: var(--blue);
  border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(246, 179, 33, 0.35);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(246, 179, 33, 0.45);
}

.btn-dark {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-dark:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: rgba(12, 23, 49, 0.04);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-block { width: 100%; }

.btn-submit.is-loading {
  pointer-events: none;
  opacity: 0.88;
  position: relative;
}

.btn-submit.is-loading::after {
  content: "";
  position: absolute;
  right: 18px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(12, 23, 49, 0.25);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
  padding-top: env(safe-area-inset-top);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(12, 23, 49, 0.06);
  box-shadow: 0 4px 24px rgba(12, 23, 49, 0.08), 0 1px 0 rgba(12, 23, 49, 0.04);
}

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

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
}

.logo span { color: var(--yellow); }

.logo-light { color: var(--white); }
.logo-light span { color: var(--yellow); }

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-menu a:hover { color: var(--blue); }

.nav-menu a.is-active,
.mobile-menu a.is-active {
  color: var(--blue);
  font-weight: 600;
}

.nav-menu a.is-active {
  box-shadow: inset 0 -2px 0 var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--container-pad) max(24px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--surface);
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}

.mobile-menu a {
  padding: 14px 0;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.mobile-menu .btn { margin-top: 12px; text-align: center; }

.mobile-menu.open { display: flex; }

/* Hero */
.hero {
  padding: calc(var(--header-h) + clamp(2rem, 5vw, 3.5rem)) 0 var(--section-pad);
  background: linear-gradient(165deg, var(--blue-mid) 0%, var(--blue) 55%);
  color: var(--text-on-dark);
  text-align: center;
}

.hero-inner {
  max-width: min(820px, 100%);
  margin: 0 auto;
}

.hero .label { color: var(--yellow); }

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-text {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
  padding-inline: clamp(0, 2vw, 1rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-inline: clamp(0, 2vw, 1rem);
}

/* Hero video — Vimeo embed */
.hero-media {
  width: 100%;
  max-width: min(1280px, 100%);
  margin: 0 auto;
}

.media-window {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  text-align: left;
  color: var(--text);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.media-window:hover {
  box-shadow: 0 20px 50px -10px rgba(12, 23, 49, 0.2), 0 40px 80px -20px rgba(12, 23, 49, 0.15);
  transform: translateY(-4px);
}

.media-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-muted);
  border-bottom: 1px solid var(--border);
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}

.media-title {
  margin-left: 8px;
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.media-body {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

/* Section spacing */
.problem,
.features,
.benefits,
.testimonials,
.pricing-cta,
.contact {
  padding-block: var(--section-pad);
}

.contact {
  background: var(--surface-alt);
  padding-block: clamp(4rem, 10vw, 6.5rem);
}

.problem {
  background: var(--blue);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(246, 179, 33, 0.06), transparent 65%);
}

.problem .section-head.light h2 {
  color: var(--white);
}

.problem .section-head.light > p {
  color: var(--text-soft);
}

.problem-carousel-wrap {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
}

.problem-carousel {
  flex: 1;
  min-width: 0;
}

.problem-carousel-viewport {
  overflow: hidden;
}

.problem-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.problem-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.problem-nav:hover {
  background: var(--blue-soft);
  transform: scale(1.05);
}

.problem-nav:active {
  transform: scale(0.98);
}

.problem-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(12, 23, 49, 0.06);
  box-shadow: 0 8px 32px rgba(12, 23, 49, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.problem-card:hover {
  border-color: rgba(246, 179, 33, 0.3);
  box-shadow: 0 16px 48px rgba(12, 23, 49, 0.16);
  transform: translateY(-2px);
}

.problem-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  background: rgba(26, 45, 82, 0.08);
  display: grid;
  place-items: center;
  color: var(--blue-soft);
}

.problem-card-icon svg {
  width: 24px;
  height: 24px;
}

.problem-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--blue);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.problem-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.problem-card-list {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.problem-card-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  display: grid;
  place-items: center;
}

.problem-card-check svg {
  width: 11px;
  height: 11px;
}

.problem-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
}

.problem-pagination button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.22);
  transition: width 0.35s var(--ease), background 0.35s, box-shadow 0.35s;
}

.problem-pagination button.is-active {
  width: 28px;
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(246, 179, 33, 0.5);
}

@media (max-width: 992px) {
  .problem-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 768px) {
  .problem-carousel-wrap {
    gap: 6px;
  }

  .problem-nav {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .problem-card {
    flex: 0 0 100%;
    min-height: 300px;
    border-radius: 20px;
  }
}

/* Features */
.features {
  background: var(--surface-alt);
}

/* Features — showcase carousel */
.features-showcase {
  max-width: min(1024px, 100%);
  margin: 0 auto;
}

.showcase-viewport {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 2px);
}

.showcase-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-slide {
  flex: 0 0 100%;
  min-width: 0;
  text-align: center;
  padding: 0 2px;
}

.showcase-slide h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 0.25rem;
}

.showcase-screen--placeholder {
  min-height: min(56vw, 320px);
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f0f2f6 0%, #e8ebf0 100%);
}

.showcase-screen--placeholder:not(:has(.showcase-shot[src]:not([style*="display: none"])))::after,
.showcase-screen.is-fallback::after {
  content: "Imagem em breve";
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.showcase-screen--placeholder:has(.showcase-shot:not([style*="display: none"])) {
  min-height: 0;
  background: #f8f9fb;
}

.showcase-screen--placeholder:has(.showcase-shot:not([style*="display: none"]))::after {
  content: none;
}

.showcase-screen {
  margin-bottom: 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(12, 23, 49, 0.08);
  background: #f8f9fb;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.showcase-slide.is-active .showcase-screen {
  box-shadow: 0 20px 50px -10px rgba(12, 23, 49, 0.18), 0 32px 64px -16px rgba(12, 23, 49, 0.12);
}

.showcase-shot {
  display: block;
  width: 100%;
  max-width: 1024px;
  height: auto;
  margin-inline: auto;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mock-ui {
  background: #f4f6fa;
  text-align: left;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mock-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
}

.mock-bar span:nth-child(1) { background: #ff6b6b; }
.mock-bar span:nth-child(2) { background: var(--yellow); }
.mock-bar span:nth-child(3) { background: #51cf66; }

.mock-bar em {
  margin-left: auto;
  font-style: normal;
  color: var(--blue);
}

.mock-body {
  padding: 14px;
  min-height: 200px;
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mock-kpis div {
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px;
  border: 1px solid var(--border);
}

.mock-kpis strong {
  display: block;
  font-size: 1rem;
  color: var(--yellow);
}

.mock-kpis small {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.mock-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--yellow), rgba(246, 179, 33, 0.4));
}

.mock-funnel-row {
  display: grid;
  grid-template-columns: 72px 1fr 40px;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mock-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(12, 23, 49, 0.08);
  position: relative;
}

.mock-progress::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: var(--blue);
}

.mock-funnel-row em {
  font-style: normal;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.68rem;
}

.mock-chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-bubble {
  max-width: 85%;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 0.68rem;
  line-height: 1.35;
}

.mock-bubble.in {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
}

.mock-bubble.out {
  align-self: flex-end;
  background: var(--blue);
  color: rgba(255, 255, 255, 0.92);
}

.mock-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mock-social-grid > div {
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px;
  border: 1px solid var(--border);
  text-align: center;
}

.mock-social-grid strong {
  display: block;
  color: var(--yellow);
  font-size: 0.95rem;
}

.mock-social-grid small {
  font-size: 0.62rem;
  color: var(--text-muted);
}

.mock-tag-cloud {
  grid-column: 1 / -1;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.mock-tag-cloud span {
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(12, 23, 49, 0.08);
  color: var(--blue);
}

.mock-sim-body {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mock-sim-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 6px solid var(--yellow);
  display: grid;
  place-content: center;
  text-align: center;
  flex-shrink: 0;
}

.mock-sim-ring strong {
  font-size: 1.1rem;
  color: var(--blue);
  line-height: 1;
}

.mock-sim-ring small {
  font-size: 0.58rem;
  color: var(--text-muted);
}

.mock-sim-body ul {
  list-style: none;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.mock-sim-body li {
  margin-bottom: 6px;
}

.mock-sim-body strong {
  color: var(--blue);
}

.mock-heat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.mock-heat-grid .heat {
  aspect-ratio: 1;
  border-radius: 6px;
}

.heat.h1 { background: rgba(12, 23, 49, 0.15); }
.heat.h2 { background: rgba(12, 23, 49, 0.3); }
.heat.h3 { background: rgba(246, 179, 33, 0.45); }
.heat.h4 { background: rgba(246, 179, 33, 0.65); }
.heat.h5 { background: var(--yellow); }

.showcase-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1.25rem;
}

.showcase-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--blue);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.showcase-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.showcase-dots {
  display: flex;
  gap: 8px;
}

.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(12, 23, 49, 0.2);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.showcase-dot.is-active {
  background: var(--yellow);
  transform: scale(1.25);
}

.features-more {
  text-align: center;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Benefits */
.benefits {
  background: var(--blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(246, 179, 33, 0.06), transparent 65%);
  background-size: 48px 48px, 48px 48px, auto;
}

.benefits .section-head.light h2 {
  color: var(--white);
}

.benefits .section-head.light > p {
  color: var(--text-soft);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(12, 23, 49, 0.06);
  box-shadow: 0 4px 24px rgba(12, 23, 49, 0.08);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.benefit-card:hover {
  border-color: rgba(246, 179, 33, 0.35);
  box-shadow: 0 12px 40px rgba(12, 23, 49, 0.12);
  transform: translateY(-2px);
}

.benefit-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  background: rgba(246, 179, 33, 0.12);
  border: 1px solid rgba(246, 179, 33, 0.22);
  box-shadow: 0 0 24px rgba(246, 179, 33, 0.1);
  display: grid;
  place-items: center;
  color: var(--yellow);
}

.benefit-card-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue);
  line-height: 1.3;
}

.benefit-card p {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.benefits .stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.benefits .stats-row strong {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.2;
  margin-bottom: 6px;
}

.benefits .stats-row span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Testimonials — grid de comentários */
.testimonials {
  background: #f3f5f8;
}

.testimonials .section-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-inline: auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  margin: 0;
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(12, 23, 49, 0.06);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s;
}

.review-card:hover {
  border-color: rgba(246, 179, 33, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--yellow);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card > p {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4a5568;
  margin-bottom: 1.25rem;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
  border-top: none;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #2a4a7a);
}

.review-card:nth-child(2) .review-avatar { background: linear-gradient(135deg, #5c4d3a, #8b7355); }
.review-card:nth-child(3) .review-avatar { background: linear-gradient(135deg, #2d5a4a, #3d7a62); }
.review-card:nth-child(4) .review-avatar { background: linear-gradient(135deg, #6b3a5c, #9a5080); }
.review-card:nth-child(5) .review-avatar { background: linear-gradient(135deg, #8b3030, #c44); }
.review-card:nth-child(6) .review-avatar { background: linear-gradient(135deg, #3a4a6b, #5a6a9a); }

.review-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
}

.review-author span {
  display: block;
  font-size: 0.75rem;
  color: #718096;
  line-height: 1.3;
}

.review-badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 500;
  color: #718096;
  background: #f0f2f5;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

/* Pricing CTA */
.pricing-cta {
  background: var(--blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(246, 179, 33, 0.12), transparent 70%);
  background-size: 48px 48px, 48px 48px, auto;
  color: var(--white);
  text-align: center;
}

.pricing-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.pricing-cta .label {
  color: var(--yellow);
}

.pricing-cta h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.pricing-cta-inner > p {
  color: var(--text-soft);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.pricing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Legacy pricing (unused) */
.pricing {
  background: var(--surface-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--blue);
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

.price-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.price-featured h3,
.price-featured .price-value,
.price-featured .price-value strong {
  color: var(--white);
}

.price-featured .price-desc,
.price-featured .price-note,
.price-featured li {
  color: rgba(255, 255, 255, 0.82);
}

.price-featured .btn-primary {
  background: var(--yellow);
  color: var(--blue);
  border-color: var(--yellow);
}

.price-featured .btn-primary:hover {
  background: var(--yellow-light);
  border-color: var(--yellow-light);
}

.price-featured .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.price-featured .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--yellow);
  color: var(--yellow);
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--yellow);
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Security */
.security {
  background: var(--surface);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.security-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  background: var(--surface);
}

.security-card.border-1 { border-color: rgba(12, 23, 49, 0.22); }
.security-card.border-2 { border-color: rgba(246, 179, 33, 0.55); }
.security-card.border-3 { border-color: rgba(12, 23, 49, 0.35); }
.security-card.border-4 { border-color: rgba(246, 179, 33, 0.4); }

.security-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--blue);
}

.security-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.security-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 24px;
  background: var(--surface-muted);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.steps {
  background: var(--surface-alt);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.step-1 { background: var(--blue); }
.step-2 { background: var(--blue-mid); }
.step-3 { background: var(--blue-light); }
.step-4 { background: var(--yellow); color: var(--blue); }

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--blue);
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* CTA band — #cta-final only */
#cta-final.cta-band {
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
  background-color: var(--surface);
  background-image:
    radial-gradient(ellipse 85% 55% at 50% 0%, rgba(246, 179, 33, 0.07), transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(12, 23, 49, 0.04), transparent 70%),
    linear-gradient(rgba(12, 23, 49, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 23, 49, 0.022) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  position: relative;
  overflow: hidden;
}

#cta-final .cta-band-inner {
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
}

#cta-final .cta-band-head {
  margin-bottom: 1.35rem;
}

#cta-final .cta-band-head h2 {
  font-size: clamp(1.75rem, 4.2vw, 2.45rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--blue);
}

#cta-final .cta-band-head p {
  color: var(--text-muted);
  margin-bottom: 0;
  max-width: 38ch;
  margin-inline: auto;
  line-height: 1.55;
  font-size: 0.95rem;
}

#cta-final .cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 1.35rem;
}

#cta-final .cta-dashboard {
  margin-bottom: 1.35rem;
}

#cta-final .cta-dashboard-shell {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 23, 49, 0.08);
  border-radius: calc(var(--radius) + 4px);
  box-shadow:
    0 4px 6px rgba(12, 23, 49, 0.04),
    0 18px 48px rgba(12, 23, 49, 0.08);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

#cta-final .cta-dashboard-shell:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 12px rgba(12, 23, 49, 0.05),
    0 24px 56px rgba(12, 23, 49, 0.1),
    0 0 0 1px rgba(246, 179, 33, 0.12);
}

#cta-final .cta-dash-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(12, 23, 49, 0.03);
  border-bottom: 1px solid rgba(12, 23, 49, 0.06);
}

#cta-final .cta-dash-dots {
  display: flex;
  gap: 5px;
}

#cta-final .cta-dash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(12, 23, 49, 0.15);
}

#cta-final .cta-dash-dots span:first-child { background: #ff6b6b; }
#cta-final .cta-dash-dots span:nth-child(2) { background: var(--yellow); }
#cta-final .cta-dash-dots span:nth-child(3) { background: #51cf66; }

#cta-final .cta-dash-title {
  flex: 1;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.01em;
}

#cta-final .cta-dash-live {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2b8a3e;
  background: rgba(43, 138, 62, 0.1);
  padding: 3px 8px;
  border-radius: 999px;
}

#cta-final .cta-dash-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.95fr;
  gap: 10px;
  padding: 12px;
  text-align: left;
}

#cta-final .cta-dash-panel {
  background: rgba(12, 23, 49, 0.025);
  border: 1px solid rgba(12, 23, 49, 0.06);
  border-radius: var(--radius);
  padding: 10px;
  min-height: 0;
}

#cta-final .cta-dash-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

#cta-final .cta-dash-panel-head span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#cta-final .cta-dash-panel-head small {
  font-size: 0.62rem;
  color: var(--text-muted);
}

#cta-final .cta-dash-metric-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

#cta-final .cta-dash-kpi strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.1;
}

#cta-final .cta-dash-kpi span {
  font-size: 0.58rem;
  color: var(--text-muted);
  line-height: 1.3;
}

#cta-final .cta-dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 52px;
}

#cta-final .cta-dash-bars span {
  flex: 1;
  height: var(--h);
  min-height: 8px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--yellow), rgba(246, 179, 33, 0.45));
  opacity: 0.85;
}

#cta-final .cta-dash-chat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#cta-final .cta-dash-bubble {
  font-size: 0.6rem;
  line-height: 1.35;
  padding: 5px 7px;
  border-radius: 8px;
  max-width: 92%;
}

#cta-final .cta-dash-bubble-in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-muted);
  border: 1px solid rgba(12, 23, 49, 0.06);
}

#cta-final .cta-dash-bubble-out {
  align-self: flex-end;
  background: rgba(12, 23, 49, 0.88);
  color: rgba(255, 255, 255, 0.92);
}

#cta-final .cta-dash-flow {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

#cta-final .cta-dash-flow li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

#cta-final .cta-dash-flow li i {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

#cta-final .cta-dash-donut-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

#cta-final .cta-dash-donut {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: conic-gradient(var(--yellow) 0 72%, rgba(12, 23, 49, 0.1) 72% 100%);
  position: relative;
  flex-shrink: 0;
}

#cta-final .cta-dash-donut::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
}

#cta-final .cta-dash-donut-wrap strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}

#cta-final .cta-dash-donut-wrap span {
  font-size: 0.58rem;
  color: var(--text-muted);
}

#cta-final .cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 0;
}

#cta-final .cta-stat-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(12, 23, 49, 0.07);
  border-radius: var(--radius);
  padding: 1.15rem 1rem;
  box-shadow: 0 2px 12px rgba(12, 23, 49, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

#cta-final .cta-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 179, 33, 0.35);
  box-shadow:
    0 8px 24px rgba(12, 23, 49, 0.08),
    0 0 24px rgba(246, 179, 33, 0.12);
}

#cta-final .cta-stat-card strong {
  display: block;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

#cta-final .cta-stat-card span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
}

@media (max-width: 900px) {
  #cta-final .cta-dash-body {
    grid-template-columns: 1fr 1fr;
  }

  #cta-final .cta-dash-analytics {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  #cta-final .cta-dash-body {
    grid-template-columns: 1fr;
  }

  #cta-final .cta-dash-analytics {
    grid-column: auto;
  }

  #cta-final .cta-stats {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
  }

  #cta-final .cta-band-head h2 {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }
}

@media (max-width: 480px) {
  #cta-final .cta-stats {
    gap: 10px;
  }

  #cta-final .cta-stat-card {
    padding: 1rem 0.85rem;
  }

  #cta-final .cta-stat-card strong {
    font-size: clamp(1.45rem, 6vw, 1.75rem);
  }

  #cta-final .cta-dash-title {
    font-size: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #cta-final .cta-stat-card,
  #cta-final .cta-dashboard-shell {
    transition: none;
  }

  #cta-final .cta-stat-card:hover,
  #cta-final .cta-dashboard-shell:hover {
    transform: none;
  }
}

/* Contact — formulário centralizado */
.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 5vw, 3rem);
}

.contact-form-head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

.contact-form-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-form-head p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.55;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: max(16px, 1rem);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.form-feedback {
  margin: 4px 0 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-feedback.is-success {
  background: rgba(246, 179, 33, 0.14);
  color: var(--blue);
  border: 1px solid rgba(246, 179, 33, 0.45);
}

.form-feedback.is-error {
  background: rgba(12, 23, 49, 0.06);
  color: var(--blue);
  border: 1px solid var(--border-strong);
}

.demo-form .btn-submit {
  margin-top: 8px;
  padding-block: 16px;
  font-size: 1rem;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.12); }
  50% { box-shadow: 0 8px 36px rgba(37, 211, 102, 0.6), 0 4px 16px rgba(37, 211, 102, 0.25); }
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* Footer */
.footer {
  background: var(--blue);
  color: var(--text-soft);
  padding: clamp(3rem, 6vw, 4rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.footer-links {
  min-width: 140px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.72);
}

.footer h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
}

.footer li { margin-bottom: 12px; }

.footer a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}

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

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.footer-contact svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact a:hover svg {
  color: var(--yellow);
}

.footer-bottom {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom strong {
  color: var(--yellow);
  font-weight: 700;
}

/* Scroll reveal — entradas modernas */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}

.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal-scale {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  filter: blur(4px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}

.reveal-scale.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Responsive — mobile-first breakpoints */

/* Tablet landscape / small desktop */
@media (max-width: 1100px) {
  .nav-menu { gap: 20px; }
  .nav-menu a { font-size: 14px; }
  .header-actions .btn-dark { padding-inline: 16px; }
}

@media (max-width: 992px) {
  .benefits-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 420px;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .nav-menu,
  .header-actions .btn-dark {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    font-size: 1.2rem;
  }

  .header-inner {
    gap: 12px;
  }

  .benefits-grid,
  .reviews-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .review-footer {
    flex-wrap: wrap;
  }

  .review-badge {
    white-space: normal;
  }

  .pricing-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-cta-actions .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band-actions .btn {
    width: 100%;
  }

  .price-card .btn,
  .price-card .btn-outline {
    width: 100%;
  }

  .media-window {
    border-radius: var(--radius);
  }

  .feature-card,
  .benefit-card,
  .review-card,
  .problem-card {
    padding: clamp(1.25rem, 4vw, 1.75rem);
  }

  .footer {
    padding-top: clamp(2.5rem, 6vw, 3.5rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
    margin-inline: auto;
  }

  .footer-links {
    min-width: 0;
  }

  .footer-links ul {
    align-items: center;
  }

  .footer-contact ul {
    align-items: center;
  }

  .footer-contact a {
    justify-content: center;
    text-align: left;
    max-width: 320px;
    margin-inline: auto;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    padding-inline: var(--container-pad);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .section-head h2 {
    font-size: clamp(1.45rem, 5.5vw, 1.75rem);
  }

  .cta-band h2 {
    font-size: clamp(1.35rem, 5vw, 1.65rem);
  }

  .price-value {
    font-size: 1.25rem;
  }

  .price-badge {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
  }

  .stats-row,
  .cta-stats {
    gap: 16px;
  }
}

/* Large screens */
@media (min-width: 1400px) {
  :root {
    --content-max: 1240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .feature-card:hover,
  .media-window:hover,
  .review-card:hover,
  .benefit-card:hover,
  .problem-card:hover { transform: none; }
  .btn-primary:hover,
  .btn-dark:hover { transform: none; }
  .btn-submit.is-loading::after { animation: none; }
  .whatsapp-float { animation: none; }
  .whatsapp-float:hover { transform: none; }
}
