:root {
  --bg-0: #0b2e42; /* azul escuro (manual) */
  --bg-1: #071f2d;
  --blue: #20448c; /* azul principal (manual) */
  --teal: #36a7b7; /* acento (manual) */
  --sand: #ffefd9; /* offwhite (manual) */
  --white: #ffffff;

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.58);

  --card: rgba(255, 255, 255, 0.06);
  --card-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 20px 60px -20px rgba(54, 167, 183, 0.35);

  --radius: 1rem;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1120px;
  --pad: clamp(18px, 4vw, 32px);

  --font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  --font-heading: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(32, 68, 140, 0.35), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(54, 167, 183, 0.22), transparent 55%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

p {
  line-height: 1.65;
  margin: 0 0 14px 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.12;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(34px, 4.8vw, 60px);
  color: var(--sand);
}

h2 {
  font-size: clamp(26px, 3.3vw, 40px);
  color: var(--sand);
}

h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
}

.grad {
  color: var(--teal);
  display: inline;
}

.muted {
  color: var(--muted);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.container {
  width: min(100% - (var(--pad) * 2), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(64px, 8vw, 108px) 0;
}

.section--alt {
  background: radial-gradient(900px 520px at 30% 40%, rgba(32, 68, 140, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section__cta {
  margin-top: 28px;
}

/* Seção Problemas: CTA centralizado + pontos de luz no fundo */
section[aria-labelledby="problemas-titulo"] .section__cta {
  display: flex;
  justify-content: center;
}
section[aria-labelledby="problemas-titulo"] {
  --problem-background: hsl(35 60% 95%);
  --problem-foreground: hsl(205 60% 14%);
  --problem-card: hsl(35 60% 97%);
  --problem-primary: hsl(186 60% 42%);
  --problem-primary-foreground: hsl(35 60% 95%);
  --problem-primary-glow: hsl(186 70% 55%);
  --problem-muted-foreground: hsl(205 25% 35%);
  --problem-border: hsl(35 30% 85%);
  --problem-gradient-hero: radial-gradient(ellipse at 20% 10%, hsl(186 70% 80% / 0.55), transparent 55%),
    radial-gradient(ellipse at 85% 20%, hsl(35 90% 85% / 0.6), transparent 50%),
    radial-gradient(ellipse at 50% 90%, hsl(186 60% 70% / 0.35), transparent 60%),
    linear-gradient(180deg, hsl(35 60% 96%), hsl(35 55% 92%));
  --problem-gradient-cta: linear-gradient(135deg, hsl(186 60% 35%), hsl(186 70% 50%));
  --problem-gradient-card: linear-gradient(160deg, hsl(35 60% 99%), hsl(35 50% 94%));
  --problem-shadow-soft: 0 10px 30px -12px hsl(205 60% 14% / 0.18);
  --problem-shadow-glow: 0 20px 60px -20px hsl(186 60% 42% / 0.45);
  background: var(--problem-gradient-hero);
  border-top: 1px solid hsl(35 30% 85% / 0.45);
  border-bottom: 1px solid hsl(35 30% 85% / 0.45);
}
section[aria-labelledby="problemas-titulo"] .container {
  position: relative;
  z-index: 1;
}
section[aria-labelledby="problemas-titulo"] .section__head h2 {
  font-family: "Sora", "Inter", sans-serif;
  color: var(--problem-foreground);
}
section[aria-labelledby="problemas-titulo"] .section__head .grad {
  color: var(--problem-primary);
}
section[aria-labelledby="problemas-titulo"] .section__head p {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--problem-muted-foreground);
}
section[aria-labelledby="problemas-titulo"]::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(6px 6px at 18% 28%, hsl(186 60% 42% / 0.24), transparent 60%),
    radial-gradient(5px 5px at 32% 62%, hsl(35 90% 85% / 0.34), transparent 60%),
    radial-gradient(7px 7px at 68% 34%, hsl(186 70% 55% / 0.16), transparent 60%),
    radial-gradient(5px 5px at 82% 66%, hsl(186 60% 42% / 0.18), transparent 60%),
    radial-gradient(4px 4px at 56% 78%, hsl(35 90% 85% / 0.22), transparent 60%);
  opacity: 0.8;
  filter: blur(0.2px);
  mix-blend-mode: normal;
}

/* Seção Diferenciais (claro) */
section[aria-labelledby="diferenciais-titulo"] {
  --light-foreground: hsl(205 60% 14%);
  --light-primary: hsl(186 60% 42%);
  --light-muted-foreground: hsl(205 25% 35%);
  --light-border: hsl(35 30% 85%);
  --light-gradient-hero: radial-gradient(ellipse at 20% 10%, hsl(186 70% 80% / 0.55), transparent 55%),
    radial-gradient(ellipse at 85% 20%, hsl(35 90% 85% / 0.6), transparent 50%),
    radial-gradient(ellipse at 50% 90%, hsl(186 60% 70% / 0.35), transparent 60%),
    linear-gradient(180deg, hsl(35 60% 96%), hsl(35 55% 92%));
  --light-gradient-card: linear-gradient(160deg, hsl(35 60% 99%), hsl(35 50% 94%));
  --light-shadow-soft: 0 10px 30px -12px hsl(205 60% 14% / 0.18);
  --light-shadow-glow: 0 20px 60px -20px hsl(186 60% 42% / 0.45);

  background: var(--light-gradient-hero);
  border-top: 1px solid hsl(35 30% 85% / 0.45);
  border-bottom: 1px solid hsl(35 30% 85% / 0.45);
}
section[aria-labelledby="diferenciais-titulo"] .container {
  position: relative;
  z-index: 1;
}
section[aria-labelledby="diferenciais-titulo"] .section__head h2 {
  font-family: "Sora", "Inter", sans-serif;
  color: var(--light-foreground);
}
section[aria-labelledby="diferenciais-titulo"] .section__head .grad {
  color: var(--light-primary);
}
section[aria-labelledby="diferenciais-titulo"] .section__head p {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--light-muted-foreground);
}
section[aria-labelledby="diferenciais-titulo"] .feature {
  background: var(--light-gradient-card);
  border: 1px solid hsl(35 30% 85% / 0.95);
  box-shadow: var(--light-shadow-soft);
  backdrop-filter: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
section[aria-labelledby="diferenciais-titulo"] .feature:hover {
  border-color: hsl(186 60% 42% / 0.28);
  box-shadow: var(--light-shadow-glow);
  transform: translateY(-3px);
}
section[aria-labelledby="diferenciais-titulo"] .feature h3 {
  font-family: "Sora", "Inter", sans-serif;
  color: var(--light-foreground);
}
section[aria-labelledby="diferenciais-titulo"] .feature p {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--light-muted-foreground);
}
section[aria-labelledby="diferenciais-titulo"] .feature--watermark::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -18px;
  width: 180px;
  height: 180px;
  background-image: url("assets/ui/nuvvo-assets-6-watermark.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}
section[aria-labelledby="diferenciais-titulo"] .feature--watermark h3,
section[aria-labelledby="diferenciais-titulo"] .feature--watermark p {
  position: relative;
  z-index: 1;
}

/* Seção Benefícios (claro) */
section[aria-labelledby="beneficios-titulo"] {
  --light-foreground: hsl(205 60% 14%);
  --light-primary: hsl(186 60% 42%);
  --light-muted-foreground: hsl(205 25% 35%);
  --light-border: hsl(35 30% 85%);
  --light-surface: hsl(35 60% 95%);
  --light-surface-gradient: linear-gradient(
    90deg,
    hsl(35 60% 95%) 0%,
    hsl(186 35% 92%) 32%,
    hsl(186 28% 90%) 50%,
    hsl(35 60% 95%) 100%
  );
  --light-gradient-card: linear-gradient(160deg, hsl(35 60% 99%), hsl(35 50% 94%));
  --light-shadow-soft: 0 10px 30px -12px hsl(205 60% 14% / 0.18);
  --light-shadow-glow: 0 20px 60px -20px hsl(186 60% 42% / 0.45);

  background: var(--light-surface-gradient);
  border-top: 0;
  border-bottom: 0;
}
section[aria-labelledby="beneficios-titulo"] .container {
  position: relative;
  z-index: 1;
}
section[aria-labelledby="beneficios-titulo"] .section__head h2 {
  font-family: "Sora", "Inter", sans-serif;
  color: var(--light-foreground);
}
section[aria-labelledby="beneficios-titulo"] .section__head .grad {
  color: var(--light-primary);
}
section[aria-labelledby="beneficios-titulo"] .section__head p {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--light-muted-foreground);
}
section[aria-labelledby="beneficios-titulo"] .bullet {
  background: var(--light-gradient-card);
  border: 1px solid hsl(35 30% 85% / 0.95);
  box-shadow: var(--light-shadow-soft);
  backdrop-filter: none;
  color: var(--light-foreground);
  transition: all 0.3s ease;
}
section[aria-labelledby="beneficios-titulo"] .bullet:hover {
  border-color: hsl(186 60% 42% / 0.28);
  box-shadow: var(--light-shadow-glow);
  transform: translateY(-2px);
}
section[aria-labelledby="beneficios-titulo"] .bullet::before {
  background: var(--light-primary);
  box-shadow: 0 0 18px hsl(186 60% 42% / 0.22);
}

/* Seção Clientes (claro) */
section[aria-labelledby="clientes-titulo"] {
  --light-foreground: hsl(205 60% 14%);
  --light-primary: hsl(186 60% 42%);
  --light-muted-foreground: hsl(205 25% 35%);
  --light-surface: hsl(35 60% 95%);
  --light-surface-gradient: linear-gradient(
    90deg,
    hsl(35 60% 95%) 0%,
    hsl(186 35% 92%) 32%,
    hsl(186 28% 90%) 50%,
    hsl(35 60% 95%) 100%
  );
  --light-gradient-card: linear-gradient(160deg, hsl(35 60% 99%), hsl(35 50% 94%));
  --light-shadow-soft: 0 10px 30px -12px hsl(205 60% 14% / 0.18);
  --light-shadow-glow: 0 20px 60px -20px hsl(186 60% 42% / 0.45);

  background: var(--light-surface-gradient);
  border-top: 0;
  border-bottom: 0;
  margin-top: 0;
}
section[aria-labelledby="clientes-titulo"] .container {
  position: relative;
  z-index: 1;
}
section[aria-labelledby="clientes-titulo"] .section__head h2 {
  font-family: "Sora", "Inter", sans-serif;
  color: var(--light-foreground);
}
section[aria-labelledby="clientes-titulo"] .section__head .grad {
  color: var(--light-primary);
}
section[aria-labelledby="clientes-titulo"] .section__head p {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--light-muted-foreground);
}
section[aria-labelledby="clientes-titulo"] .logo-marquee {
  border: 1px solid hsl(35 30% 85% / 0.95);
  background: linear-gradient(160deg, hsl(35 60% 99%), hsl(35 50% 94%));
  box-shadow: var(--light-shadow-soft);
}
section[aria-labelledby="clientes-titulo"] .logo-pill {
  border: 1px solid hsl(35 30% 85% / 0.95);
  background: linear-gradient(160deg, hsl(35 60% 99%), hsl(35 50% 95%));
  color: var(--light-muted-foreground);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
section[aria-labelledby="clientes-titulo"] .logo-pill--image {
  padding: 8px 14px;
}
section[aria-labelledby="clientes-titulo"] .logo-pill--image img {
  max-width: 112px;
  max-height: 34px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--sand);
  color: #0b2e42;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

/* Header */
.header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: center;
}
.header.is-scrolled {
  /* só altera a barra (efeito de "fixo premium") */
}
.header__bar {
  width: min(calc(100% - 28px), var(--container));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
}
.header.is-scrolled .header__bar {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(54, 167, 183, 0.10);
  border: 1px solid rgba(54, 167, 183, 0.22);
}
.brand__name {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.nav {
  position: relative;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin: 2px 0;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav__panel {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(320px, calc(100vw - 24px));
  padding: 12px;
  border-radius: 16px;
  background: rgba(11, 46, 66, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}
.nav__panel.is-open {
  display: grid;
  gap: 8px;
}
.nav__link {
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  transition: background 150ms ease, color 150ms ease;
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}
.nav__cta {
  margin-top: 6px;
}

/* Desktop nav */
@media (min-width: 920px) {
  .nav__toggle {
    display: none;
  }
  .nav__panel {
    display: flex;
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 6px;
    align-items: center;
  }
  .nav__link {
    padding: 10px 10px;
  }
}

.btn--nav-cta {
  color: #061823;
  background: var(--teal);
  border-color: rgba(54, 167, 183, 0.45);
  box-shadow: 0 14px 40px rgba(54, 167, 183, 0.14);
}
.btn--nav-cta:hover {
  background: rgba(54, 167, 183, 0.92);
  box-shadow: 0 18px 52px rgba(54, 167, 183, 0.18);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  will-change: transform;
}
.btn:focus-visible {
  outline: 3px solid rgba(54, 167, 183, 0.38);
  outline-offset: 2px;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  color: var(--sand);
  background: var(--teal);
  border-color: rgba(54, 167, 183, 0.45);
  box-shadow: 0 18px 44px rgba(54, 167, 183, 0.14);
}
.btn--primary:hover {
  background: rgba(54, 167, 183, 0.92);
  box-shadow: 0 20px 55px rgba(54, 167, 183, 0.18);
}
.btn--ghost {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn--small {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.95rem;
}
.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  padding-top: calc(88px + clamp(50px, 7vw, 90px));
  padding-bottom: clamp(70px, 9vw, 120px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: 34px;
  align-items: start;
  justify-items: center;
}
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    align-items: center;
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 14px 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--teal);
  background: rgba(54, 167, 183, 0.08);
}
.kicker::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, var(--sand), var(--teal));
  box-shadow: 0 0 0 6px rgba(54, 167, 183, 0.09);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  justify-content: center;
}

.hero__pillset {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(54, 167, 183, 0.20);
  backdrop-filter: blur(10px);
  color: rgba(255, 239, 217, 0.92);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
}
.pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(54, 167, 183, 0.26);
}

.hero__content {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.hero__content h1 {
  font-size: clamp(38px, 5.2vw, 66px);
  max-width: 32ch;
  margin-inline: auto;
  margin-bottom: 16px;
  text-wrap: balance;
}
.hero__content h1 .grad {
  display: block;
}
.hero__content .lead {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .hero__content h1 {
    font-size: clamp(34px, 8.2vw, 46px);
    max-width: 22ch;
  }
}

.hero__visual {
  display: none !important;
}
.hero__trust {
  display: none !important;
}

.btn--whatsapp {
  color: #ffffff;
  background: #25d366;
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 20px 60px -24px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 20px 55px rgba(37, 211, 102, 0.20);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  font-size: 0.95rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.dot--teal {
  background: var(--teal);
  box-shadow: 0 0 22px rgba(54, 167, 183, 0.35);
}
.dot--blue {
  background: var(--blue);
  box-shadow: 0 0 22px rgba(32, 68, 140, 0.35);
}
.dot--sand {
  background: var(--sand);
  box-shadow: 0 0 22px rgba(255, 239, 217, 0.18);
}

/* hero visuals */
.hero-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 100px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(600px 280px at 40% 20%, rgba(54, 167, 183, 0.24), transparent 60%),
    radial-gradient(600px 280px at 80% 80%, rgba(32, 68, 140, 0.24), transparent 60%);
  pointer-events: none;
}
.hero-card__top {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 18px 10px 18px;
}
.hero-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-card__label {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-card__sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 2px;
}
.hero-card__canvas {
  position: relative;
  padding: 0 18px 6px 18px;
}
.hero-card__canvas svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: radial-gradient(520px 240px at 20% 25%, rgba(54, 167, 183, 0.12), transparent 60%),
    radial-gradient(520px 240px at 85% 70%, rgba(32, 68, 140, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-card__metrics {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 10px 18px 18px 18px;
}
.metric {
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.metric__label {
  font-size: 0.85rem;
  color: var(--muted-2);
}
.metric__value {
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 6px;
}

/* Background layers */
.bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bg-layer__glow {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.8;
}
.bg-layer__glow--one {
  left: -220px;
  top: -240px;
  background: radial-gradient(circle at 30% 30%, rgba(54, 167, 183, 0.35), transparent 60%);
}
.bg-layer__glow--two {
  right: -260px;
  top: -240px;
  background: radial-gradient(circle at 30% 30%, rgba(32, 68, 140, 0.42), transparent 60%);
}
.bg-layer__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(60% 50% at 50% 35%, rgba(0, 0, 0, 1), transparent 75%);
  opacity: 0.18;
}
.bg-layer__noise {
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 4px);
  opacity: 0.04;
  mix-blend-mode: overlay;
}

/* Layout grids */
.grid {
  display: grid;
  gap: 14px;
}
.cards--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .cards--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1060px) {
  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 18px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(54, 167, 183, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}
.card::before {
  display: none;
}
.card::after {
  display: none;
}
.card h3 {
  color: rgba(255, 239, 217, 0.94);
}
.card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(54, 167, 183, 0.24);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}
.card p {
  color: var(--muted);
  margin: 0;
}

section[aria-labelledby="problemas-titulo"] .card {
  background: var(--problem-gradient-card);
  border: 1px solid hsl(35 30% 85% / 0.9);
  box-shadow: var(--problem-shadow-soft);
  backdrop-filter: none;
}
section[aria-labelledby="problemas-titulo"] .card h3 {
  font-family: "Sora", "Inter", sans-serif;
  color: var(--problem-foreground);
}
section[aria-labelledby="problemas-titulo"] .card p {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--problem-muted-foreground);
}
section[aria-labelledby="problemas-titulo"] .card:hover {
  background: linear-gradient(160deg, hsl(35 60% 99%), hsl(35 50% 95%));
  border-color: hsl(186 60% 42% / 0.28);
  box-shadow: var(--problem-shadow-glow);
}
section[aria-labelledby="problemas-titulo"] .section__cta .btn--primary {
  color: var(--problem-primary-foreground);
  background: var(--problem-gradient-cta);
  border-color: hsl(186 60% 42% / 0.28);
  box-shadow: var(--problem-shadow-glow);
}
section[aria-labelledby="problemas-titulo"] .section__cta .btn--primary:hover {
  background: linear-gradient(135deg, hsl(186 60% 33%), hsl(186 70% 47%));
}

/* Serviços: borda um pouco mais forte + hover com glow */
#servicos .card {
  border-color: rgba(54, 167, 183, 0.18);
}
#servicos .card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(54, 167, 183, 0.26);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

.card--icon .card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(54, 167, 183, 0.12);
  border: 0;
  padding: 10px;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

/* Features */
.features {
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
.feature {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(54, 167, 183, 0.15);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
}
.feature h3 {
  color: rgba(255, 239, 217, 0.94);
}
.feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* About */
.about {
  display: grid;
  gap: 18px;
  align-items: center;
}
@media (min-width: 980px) {
  .about {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
  }
}
.about-panel {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
}
.about-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(520px 240px at 15% 35%, rgba(54, 167, 183, 0.20), transparent 60%),
    radial-gradient(520px 240px at 85% 75%, rgba(32, 68, 140, 0.24), transparent 60%);
  pointer-events: none;
}
.about-panel__badge {
  position: relative;
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 239, 217, 0.10);
  border: 1px solid rgba(255, 239, 217, 0.22);
  color: rgba(255, 239, 217, 0.92);
  font-weight: 600;
}
.about-panel__stack {
  position: relative;
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.stack-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.stack-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 0 22px rgba(54, 167, 183, 0.22);
}
.about-panel__asset {
  position: relative;
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}
.about-panel .watermark {
  position: absolute;
  inset: auto -40px -40px auto;
  width: 240px;
  height: 240px;
  background-image: url("assets/brand/nuvvo-icone-azul-escuro.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.08;
  transform: rotate(-8deg);
  pointer-events: none;
  filter: blur(0.2px);
}

/* Bullets */
.bullets {
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .bullets {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 18px;
  }
}
.bullet {
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(54, 167, 183, 0.15);
  position: relative;
  overflow: hidden;
  font-weight: 500;
}
.bullet::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(54, 167, 183, 0.28);
}
.bullet {
  padding-left: 34px;
}

/* Logos marquee */
.logo-marquee {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  padding: 16px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-marquee__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 22s linear infinite;
  padding-left: 12px;
}
.logo-pill {
  min-width: 140px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Diagnóstico */
.section--spotlight {
  padding: clamp(70px, 8vw, 110px) 0;
  background: radial-gradient(900px 520px at 20% 20%, rgba(255, 239, 217, 0.12), transparent 55%),
    radial-gradient(900px 520px at 80% 10%, rgba(32, 68, 140, 0.34), transparent 60%),
    radial-gradient(900px 520px at 70% 90%, rgba(54, 167, 183, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.diag {
  display: grid;
  gap: 18px;
  align-items: start;
}
@media (min-width: 980px) {
  .diag {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
    align-items: center;
  }
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  padding-left: 26px;
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--sand), var(--teal));
  box-shadow: 0 0 22px rgba(255, 239, 217, 0.14);
}

.form {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: rgba(11, 46, 66, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 100px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}
.form label {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}
.form span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.80);
}
.form input,
.form select {
  height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font);
}
.form input::placeholder {
  color: rgba(255, 255, 255, 0.50);
}
.form input:focus,
.form select:focus {
  outline: 3px solid rgba(54, 167, 183, 0.30);
  outline-offset: 2px;
}
.form select option {
  color: #081f2d;
}
.form__row {
  display: grid;
  gap: 12px;
}
@media (min-width: 820px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.form__check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 14px;
}
.form__check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.form__hint {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.9rem;
}
.form__msg {
  margin: 10px 0 0 0;
  color: rgba(255, 239, 217, 0.92);
  font-weight: 600;
}
.form .is-error {
  border-color: rgba(255, 140, 140, 0.6) !important;
  outline-color: rgba(255, 140, 140, 0.4) !important;
}

/* CTA final */
.cta-final {
  padding: clamp(64px, 8vw, 96px) 0;
}
.cta-final__inner {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: clamp(34px, 5vw, 52px) clamp(22px, 4vw, 34px);
  background: linear-gradient(135deg, hsl(186 60% 35%), hsl(186 70% 50%));
  border: 0;
  box-shadow: 0 20px 60px -20px hsl(186 60% 42% / 0.45);
  color: var(--sand);
}
.cta-final__watermark {
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 384px;
  height: 384px;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  filter: saturate(0.95) contrast(1.05);
}
.cta-final__inner h2 {
  color: var(--sand);
}
.cta-final__inner .lead {
  color: rgba(255, 255, 255, 0.82);
}
.cta-final__inner .grad {
  color: rgba(255, 255, 255, 0.98);
}
.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* Footer */
.footer {
  padding: 52px 0 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
}
.footer__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 980px) {
  .footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 22px;
  }
}
.footer h3 {
  margin-bottom: 12px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
}
.footer a:hover {
  color: rgba(255, 239, 217, 0.92);
}
.footer__bottom {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.62);
}

.animate-spin-slow {
  animation: spin 28s linear infinite;
}
.animate-spin-slower {
  animation: spin 45s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .card,
  .reveal,
  .logo-marquee__track {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .reveal {
    opacity: 1;
  }
}
