/* Sete Services — Light professional theme */

:root {
  --bg: #f8fafc;
  --bg-2: #f1f5f9;
  --surface: #ffffff;
  --surface-elevated: #ffffff;
  --surface-highlight: #f8fafc;
  --stroke: rgba(15, 23, 42, 0.1);
  --stroke-2: rgba(15, 23, 42, 0.06);
  --text: #0f172a;
  --muted: #64748b;
  --faint: #94a3b8;
  --primary: #0284c7;
  --primary-2: #0ea5e9;
  --primary-soft: #e0f2fe;
  --accent: #0284c7;
  --accent-hover: #0369a1;
  --accent-ink: #ffffff;
  --danger: #dc2626;
  --ok: #16a34a;

  --shadow-1: 0 4px 24px rgba(2, 132, 199, 0.08);
  --shadow-2: 0 24px 60px rgba(15, 23, 42, 0.1);
  --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.08);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 20px;

  --container: 73.75rem;
  --gutter: 1.5rem;
  --header-h: 4rem;
  --touch-min: 3rem;
  --sticky-cta-h: 4.5rem;

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-ui: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Plus Jakarta Sans", ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(0.9375rem, 2.5vw, 1rem);
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom));
}

body.is-menu-open {
  overflow: hidden;
  overscroll-behavior-y: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  left: 12px;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.18s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.26s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.34s;
}

/* Typography */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lead,
.section-subtitle {
  margin-top: 14px;
  max-width: 56ch;
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  margin-bottom: 48px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 55%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons — touch-first (min 48×48px) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch-min);
  min-width: var(--touch-min);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

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

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

.btn-primary:active {
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.22);
}

.btn-outline {
  background: var(--surface);
  border-color: var(--stroke);
  color: var(--text);
}

.btn-outline:active {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.btn-lg {
  padding: 0.875rem 1.5rem;
  font-size: clamp(0.9375rem, 2.5vw, 1rem);
  width: 100%;
}

.btn-sm {
  padding: 0.625rem 1rem;
  font-size: clamp(0.8125rem, 2.2vw, 0.875rem);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
  box-shadow: none;
}

.btn-ghost:active {
  color: var(--primary);
  background: var(--primary-soft);
}

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

  .btn-primary:hover {
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.28);
  }

  .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-1);
  }

  .btn-ghost:hover {
    color: var(--primary);
    background: var(--primary-soft);
  }

  .feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(2, 132, 199, 0.25);
    box-shadow: var(--shadow-2);
  }

  .feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-3deg);
  }

  .bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
  }

  .bento-card:hover .bento-media img {
    transform: scale(1.04);
  }

  .trust-item:hover {
    box-shadow: var(--shadow-1);
  }

  .contact-channel:hover {
    transform: translateX(4px);
    border-color: rgba(2, 132, 199, 0.2);
    box-shadow: var(--shadow-1);
  }

  .channel-link:hover {
    color: var(--accent-hover);
  }

  .nav-link:hover {
    color: var(--text);
    background: var(--bg-2);
  }

  .nav-cta-link:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
  }

  .testimonial-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.08);
  }

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

  .footer-social a:hover {
    color: var(--primary);
    transform: translateY(-2px);
  }

  .timeline-step:hover {
    transform: translateY(-4px);
  }

  .timeline-step:hover .timeline-number {
    transform: scale(1.08);
    background: var(--primary);
    color: #fff;
  }
}

.w-100 {
  width: 100%;
}

/* Header — fixo em todas as larguras (sticky quebra com overflow-x no html/body) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--stroke-2);
  backdrop-filter: blur(12px);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

main#conteudo {
  padding-top: var(--header-h);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-1);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-tag {
  display: none;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--faint);
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
}

.nav {
  display: flex;
  align-items: center;
}

/* Drawer — padrão mobile */
.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.375rem;
  width: min(18.75rem, 86vw);
  height: 100dvh;
  padding: calc(var(--header-h) + 0.75rem) 1rem max(1.5rem, env(safe-area-inset-bottom));
  background: var(--surface);
  border-left: 1px solid var(--stroke-2);
  box-shadow: -1rem 0 3rem rgba(15, 23, 42, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  overscroll-behavior-y: contain;
}

.nav-links.is-open {
  transform: translateX(0);
}

.nav-link {
  display: flex;
  align-items: center;
  min-height: var(--touch-min);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav-link:active {
  color: var(--text);
  background: var(--bg-2);
}

.nav-link.is-active {
  color: var(--primary);
  background: var(--primary-soft);
  border-color: rgba(2, 132, 199, 0.15);
}

.nav-cta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--stroke-2);
}

.nav-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.nav-cta-link:active {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.nav-cta .btn {
  width: 100%;
}

.nav-toggle {
  display: flex;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
  width: var(--touch-min);
  height: var(--touch-min);
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition:
    transform 0.32s var(--ease),
    top 0.32s var(--ease),
    background 0.2s var(--ease),
    opacity 0.2s var(--ease);
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--surface);
  border-color: var(--stroke);
  box-shadow: var(--shadow-1);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15, 23, 42, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(4px);
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-header.is-menu-open {
  z-index: 110;
}

.nav-toggle:active {
  background: var(--bg-2);
}

/* Hero — mobile-first */
.hero {
  position: relative;
  padding: 2.25rem 0 2.5rem;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--stroke-2);
}

.hero-accent {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(14, 165, 233, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(2, 132, 199, 0.08), transparent 50%),
    radial-gradient(ellipse 45% 40% at 50% 100%, rgba(14, 165, 233, 0.06), transparent 55%),
    radial-gradient(ellipse 35% 30% at 70% 40%, rgba(224, 242, 254, 0.5), transparent 60%);
  pointer-events: none;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  display: block;
}

/* Grade sutil em toda a seção */
.hero-shape--grid {
  inset: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(2, 132, 199, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 132, 199, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 95% 90% at 50% 45%, black 15%, transparent 78%);
  opacity: 0.9;
  animation: heroGridDrift 40s linear infinite;
}

/* Anéis — cantos opostos */
.hero-shape--ring {
  width: clamp(72px, 14vw, 140px);
  height: clamp(72px, 14vw, 140px);
  right: 4%;
  top: 8%;
  border: 2px solid rgba(2, 132, 199, 0.2);
  border-radius: 50%;
  animation: heroFloatA 18s var(--ease) infinite;
}

.hero-shape--ring-b {
  width: clamp(48px, 9vw, 88px);
  height: clamp(48px, 9vw, 88px);
  left: 6%;
  bottom: 10%;
  border-width: 2px;
  opacity: 0.55;
  animation: heroFloatA 22s var(--ease) infinite reverse;
}

/* Quadrados — esquerda e direita */
.hero-shape--square {
  width: clamp(36px, 6vw, 56px);
  height: clamp(36px, 6vw, 56px);
  left: 12%;
  top: 22%;
  border: 2px solid rgba(14, 165, 233, 0.22);
  border-radius: 10px;
  animation: heroSpin 28s linear infinite;
}

.hero-shape--square-b {
  width: clamp(44px, 7vw, 64px);
  height: clamp(44px, 7vw, 64px);
  right: 18%;
  bottom: 14%;
  left: auto;
  animation: heroSpin 34s linear infinite reverse;
}

/* Cápsulas — topo e centro */
.hero-shape--pill {
  width: clamp(70px, 12vw, 120px);
  height: clamp(22px, 3vw, 32px);
  left: 4%;
  top: 6%;
  background: linear-gradient(90deg, rgba(2, 132, 199, 0.12), rgba(14, 165, 233, 0.05));
  border-radius: 999px;
  animation: heroFloatB 14s var(--ease) infinite;
}

.hero-shape--pill-b {
  width: clamp(56px, 10vw, 96px);
  height: clamp(18px, 2.5vw, 26px);
  right: 32%;
  top: 38%;
  left: auto;
  animation: heroFloatB 17s var(--ease) infinite reverse;
}

/* Linhas — atravessando a seção */
.hero-shape--line {
  width: min(42vw, 280px);
  height: 2px;
  left: 8%;
  top: 48%;
  background: linear-gradient(90deg, transparent, rgba(2, 132, 199, 0.3), transparent);
  transform: rotate(-14deg);
  animation: heroFloatC 12s var(--ease) infinite;
}

.hero-shape--line-b {
  width: min(36vw, 220px);
  height: 2px;
  right: 6%;
  left: auto;
  top: 18%;
  transform: rotate(12deg);
  animation: heroFloatC 15s var(--ease) infinite reverse;
}

/* Pontos — espalhados */
.hero-shape--dot {
  width: 12px;
  height: 12px;
  left: 42%;
  top: 12%;
  background: var(--primary-2);
  border-radius: 50%;
  opacity: 0.35;
  animation: heroPulse 6s var(--ease) infinite;
}

.hero-shape--dot-b {
  width: 8px;
  height: 8px;
  right: 8%;
  top: 52%;
  left: auto;
  animation-delay: -2s;
}

.hero-shape--dot-c {
  width: 10px;
  height: 10px;
  left: 22%;
  bottom: 22%;
  top: auto;
  animation-delay: -4s;
}

/* Arcos — laterais */
.hero-shape--arc {
  width: clamp(56px, 10vw, 84px);
  height: clamp(56px, 10vw, 84px);
  left: 2%;
  top: 52%;
  border: 2px solid rgba(2, 132, 199, 0.2);
  border-color: rgba(2, 132, 199, 0.28) transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(45deg);
  animation: heroFloatD 20s var(--ease) infinite;
}

.hero-shape--arc-b {
  width: clamp(48px, 8vw, 72px);
  height: clamp(48px, 8vw, 72px);
  right: 2%;
  left: auto;
  top: auto;
  bottom: 32%;
  transform: rotate(-120deg);
  animation: heroFloatD 24s var(--ease) infinite reverse;
}

/* Hexágono — centro-direita */
.hero-shape--hex {
  width: clamp(48px, 8vw, 72px);
  height: clamp(48px, 8vw, 72px);
  left: 58%;
  bottom: 8%;
  background: rgba(224, 242, 254, 0.45);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: heroFloatE 16s var(--ease) infinite;
}

@keyframes heroGridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 56px 56px;
  }
}

@keyframes heroFloatA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-16px, 12px) scale(1.04);
  }
}

@keyframes heroFloatB {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-24px, 8px);
  }
}

@keyframes heroFloatC {
  0%,
  100% {
    transform: rotate(-18deg) translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: rotate(-12deg) translateX(-20px);
    opacity: 0.85;
  }
}

@keyframes heroFloatD {
  0%,
  100% {
    transform: rotate(-40deg) translate(0, 0);
  }
  50% {
    transform: rotate(-28deg) translate(-12px, 10px);
  }
}

@keyframes heroFloatE {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -14px) rotate(8deg);
  }
}

@keyframes heroSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.55;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: none;
}

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

.hero-eyebrow {
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: none;
}

.hero-subtitle {
  margin-top: 18px;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
}

.hero-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.hero-process-step[aria-hidden="true"] {
  display: none;
}

.hero-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.875rem 0.5rem;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-sm);
}

.hero-process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--primary-soft);
  font-size: 0.625rem;
}

.hero-process-label {
  font-size: clamp(0.6875rem, 2.5vw, 0.75rem);
  line-height: 1.25;
}

.hero-process-sep {
  display: none;
}

.hero-benefits {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.hero-benefits li {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.875rem 1rem 0.875rem 2.5rem;
  border-bottom: 1px solid var(--stroke-2);
  background: transparent;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

.hero-benefits li:last-child {
  border-bottom: none;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stroke-2);
}

.hero-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-sm);
}

.hero-metric dt {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}

.hero-metric dd {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

/* Trust */
.trust {
  background: var(--bg);
  border-block: 1px solid var(--stroke-2);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

.trust-item {
  text-align: left;
  padding: 1.125rem 1rem;
  background: var(--surface);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius);
  transition: box-shadow 0.2s var(--ease);
}

.trust-item:active {
  box-shadow: var(--shadow-1);
}

.trust-value {
  display: block;
  font-weight: 800;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text);
}

.trust-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

/* Sections */
.section {
  padding: clamp(3rem, 10vw, 6.25rem) 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-alt {
  background: var(--bg-2);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s var(--ease-bounce),
    border-color 0.3s,
    box-shadow 0.3s;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  color: var(--primary);
  margin-bottom: 18px;
  transition: transform 0.35s var(--ease-bounce);
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 14px;
  color: var(--muted);
}

/* Solutions bento */
.solution-lab {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  text-align: left;
  border: 2px solid var(--stroke-2);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.35s var(--ease-bounce);
}

.bento-media {
  display: block;
  aspect-ratio: 2 / 1;
  width: 100%;
  overflow: hidden;
  background: var(--bg-2);
}

.bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}

.bento-card.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12), var(--shadow-2);
}

.bento-kicker {
  display: block;
  padding: 16px 20px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.bento-title {
  display: block;
  padding: 6px 20px 20px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.25;
}

.solution-detail {
  padding: clamp(28px, 4vw, 36px);
  background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.solution-panel {
  display: none;
  animation: panelIn 0.45s var(--ease);
}

.solution-panel.is-active {
  display: block;
}

.solution-panel.is-active.is-entering {
  animation: panelIn 0.45s var(--ease);
}

.solution-panel[hidden] {
  display: none !important;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.solution-panel h3 {
  margin-top: 10px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 28ch;
}

.solution-panel > p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 52ch;
}

.panel-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.panel-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 500;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.solution-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--stroke-2);
  font-size: 13px;
  color: var(--muted);
}

.solution-flow span:first-of-type,
.solution-flow span:nth-of-type(3),
.solution-flow span:nth-of-type(5) {
  font-weight: 800;
  color: var(--primary);
  font-size: 12px;
}

.solution-flow strong {
  color: var(--text);
  font-weight: 700;
}

.flow-line {
  flex: 1 1 24px;
  min-width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-soft), var(--primary));
  border-radius: 2px;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
}

.timeline::before {
  display: none;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.25rem;
  padding: 1.125rem 1rem;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius);
}

.timeline-number {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-min);
  height: var(--touch-min);
  margin-bottom: 0;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--primary);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--primary);
  box-shadow: var(--shadow-1);
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: none;
  margin-inline: 0;
}

/* Testimonials */
.testimonial-shell {
  max-width: 820px;
  margin-inline: auto;
}

.testimonial-card {
  position: relative;
  padding: clamp(36px, 5vw, 48px);
  background: var(--surface);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  min-height: 260px;
}

.testimonial-quote-mark {
  position: absolute;
  top: 12px;
  left: 28px;
  font-family: Georgia, serif;
  font-size: 88px;
  line-height: 1;
  color: rgba(2, 132, 199, 0.12);
  pointer-events: none;
}

.testimonial-stage {
  position: relative;
  min-height: 160px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: block;
  animation: panelIn 0.5s var(--ease);
}

.testimonial-slide blockquote {
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  max-width: 36ch;
}

.testimonial-slide figcaption {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-name {
  font-weight: 700;
  font-size: 15px;
}

.quote-role {
  font-size: 13px;
  color: var(--muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.testimonial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--stroke);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.25s var(--ease-bounce);
}

.testimonial-btn:active {
  border-color: var(--primary);
  color: var(--primary);
}

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

.testimonial-dot {
  padding: 0;
  border: none;
  cursor: pointer;
}

/* Contact */
.contact {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(14, 165, 233, 0.1), transparent 60%),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}

.contact-channels {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-channel {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius);
  transition:
    transform 0.3s var(--ease-bounce),
    box-shadow 0.3s,
    border-color 0.3s;
}

.contact-channel:active {
  border-color: rgba(2, 132, 199, 0.2);
  box-shadow: var(--shadow-1);
}

.channel-icon {
  flex-shrink: 0;
  color: var(--primary);
}

.channel-title {
  font-size: 15px;
  font-weight: 700;
}

.channel-text {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.channel-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  margin-top: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

.channel-link:active {
  color: var(--accent-hover);
}

.fineprint {
  margin-top: 20px;
  font-size: 12px;
  color: var(--faint);
}

.form-card {
  padding: clamp(24px, 4vw, 32px);
  background: var(--surface);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: var(--touch-min);
  padding: 0.75rem 0.875rem;
  background: var(--bg);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--faint);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea {
  border-color: var(--danger);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.5rem;
}

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

.form-status {
  margin-top: 14px;
  font-size: 13px;
  min-height: 1.2em;
}

.form-status.is-error {
  color: var(--danger);
}

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

/* Footer */
.site-footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--stroke-2);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 340px;
}

.footer-tagline {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.footer-nav a {
  display: flex;
  align-items: center;
  min-height: var(--touch-min);
  padding: 0.25rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-nav a:active {
  color: var(--primary);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  width: 100%;
  padding-top: 0.25rem;
  border-top: 1px solid var(--stroke-2);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  padding: 0.25rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s, transform 0.25s var(--ease-bounce);
}

.footer-social a:active {
  color: var(--primary);
}

.footer-copy {
  width: 100%;
  font-size: 12px;
  color: var(--faint);
  padding-top: 16px;
  border-top: 1px solid var(--stroke-2);
}

/* Sticky CTA — mobile (thumb zone) */
.sticky-cta {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 0.75rem var(--gutter);
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--stroke-2);
  backdrop-filter: blur(12px);
  box-shadow: 0 -0.5rem 2rem rgba(15, 23, 42, 0.1);
}

.sticky-cta .btn {
  width: 100%;
  min-height: var(--touch-min);
}

/* Voltar ao topo — mobile */
.back-to-top {
  position: fixed;
  right: var(--gutter);
  bottom: calc(var(--sticky-cta-h) + 0.75rem + env(safe-area-inset-bottom));
  z-index: 81;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-min);
  height: var(--touch-min);
  padding: 0;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition:
    opacity 0.25s var(--ease),
    visibility 0.25s var(--ease),
    transform 0.25s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.back-to-top:active {
  transform: scale(0.96);
}

.back-to-top.is-visible:active {
  transform: scale(0.96);
}

body.is-menu-open .back-to-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Testimonial controls — touch */
.testimonial-btn {
  min-width: var(--touch-min);
  min-height: var(--touch-min);
}

.testimonial-dot {
  position: relative;
  width: var(--touch-min);
  height: var(--touch-min);
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  border-radius: 50%;
  background: transparent;
}

.testimonial-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--stroke);
  transition: background 0.25s, transform 0.25s var(--ease-bounce);
}

.testimonial-dot.is-active::before {
  background: var(--primary);
  transform: scale(1.2);
}

.testimonial-dot.is-active {
  background: transparent;
  transform: none;
}

.testimonial-slide blockquote {
  font-size: clamp(1.125rem, 4vw, 1.625rem);
}

.testimonial-card {
  min-height: auto;
  padding: 1.75rem 1.25rem;
}

.form-card {
  padding: 1.25rem;
}

.panel-list {
  flex-direction: column;
  gap: 0.5rem;
}

.feature-card {
  padding: 1.375rem 1.25rem;
}

.feature-card:active {
  border-color: rgba(2, 132, 199, 0.2);
}

.bento-card:active {
  border-color: var(--primary);
}

/* Progressive enhancement — tablet */
@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 2rem 0;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-metric {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.875rem 0.625rem;
  }

  .hero-metric dt {
    font-size: 0.5625rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--faint);
  }

  .hero-metric dd {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
  }

  .testimonial-card {
    padding: 2rem 1.75rem;
  }

  .form-card {
    padding: 1.5rem;
  }
}

/* Progressive enhancement — desktop */
@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }

  .sticky-cta {
    display: none;
  }

  .back-to-top {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .brand-tag {
    display: block;
  }

  .brand-mark {
    width: 2.75rem;
    height: 2.75rem;
  }

  .nav-links {
    position: static;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
    overflow: visible;
    overscroll-behavior: auto;
  }

  .nav-links.is-open {
    transform: none;
  }

  .nav-link {
    min-height: var(--touch-min);
    padding: 0.5rem 0.75rem;
  }

  .nav-cta {
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
    margin-top: 0;
    margin-left: 0.75rem;
    padding-top: 0;
    padding-left: 1rem;
    border-top: none;
    border-left: 1px solid var(--stroke-2);
  }

  .nav-cta-link {
    width: auto;
    padding: 0.5rem 0.875rem;
  }

  .nav-cta .btn {
    width: auto;
  }

  .hero {
    padding: 3.5rem 0 4rem;
  }

  .hero-inner {
    max-width: 45rem;
  }

  .hero-process {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-top: 2rem;
    background: transparent;
    border: none;
  }

  .hero-process-step {
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    text-align: left;
  }

  .hero-process-step[aria-hidden="true"] {
    display: flex;
  }

  .hero-process-sep {
    display: block;
    width: 2rem;
    height: 1px;
    margin: 0 0.75rem;
    background: var(--stroke);
    flex-shrink: 0;
  }

  .hero-benefits {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-top: 1.5rem;
    border: none;
    background: transparent;
    overflow: visible;
  }

  .hero-benefits li {
    padding: 0 0 0 1.125rem;
    border: none;
    font-size: 0.875rem;
  }

  .hero-benefits li::before {
    left: 0;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .hero-actions .btn {
    width: auto;
  }

  .btn-lg {
    width: auto;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 2.5rem 0;
  }

  .trust-item {
    text-align: center;
    padding: 0 1rem;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .section-head {
    margin-bottom: 3rem;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.75rem 1.5rem;
  }

  .panel-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    isolation: isolate;
  }

  .timeline::before {
    display: block;
    content: "";
    position: absolute;
    top: calc(3.5rem / 2 - 1.5px);
    left: 16%;
    right: 16%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-soft), var(--primary-soft));
    border-radius: 4px;
    z-index: 0;
    pointer-events: none;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 1s var(--ease);
  }

  .timeline.is-visible::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--primary-soft));
    transform: scaleX(1);
  }

  .timeline-step {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0 0.75rem;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: transform 0.35s var(--ease-bounce);
  }

  .timeline-number {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    background: var(--surface);
    box-shadow: 0 0 0 0.375rem var(--bg-2);
    transition: transform 0.35s var(--ease-bounce), background 0.3s, color 0.3s;
  }

  .timeline-title {
    font-size: 1.125rem;
  }

  .timeline-text {
    max-width: 24ch;
    margin-inline: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2rem, 5vw, 3rem);
  }

  .form-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-actions .btn {
    width: auto;
  }

  .form-card {
    padding: clamp(1.5rem, 4vw, 2rem);
  }

  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    gap: 0.5rem 1.25rem;
  }

  .footer-nav a {
    display: inline-flex;
    min-height: var(--touch-min);
    padding: 0.25rem 0;
  }

  .footer-social {
    width: auto;
    padding-top: 0;
    border-top: none;
  }

  .footer-social a {
    min-height: var(--touch-min);
  }

  .site-footer {
    padding: 2.5rem 0;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-accent,
  .hero-shape,
  .hero-shape--grid {
    animation: none;
  }

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

/* Modern dynamic redesign */
:root {
  --bg: #eef5fb;
  --bg-2: #e4edf7;
  --surface: #ffffff;
  --surface-elevated: rgba(255, 255, 255, 0.9);
  --surface-highlight: #f3f8fc;
  --stroke: rgba(15, 23, 42, 0.12);
  --stroke-2: rgba(15, 23, 42, 0.08);
  --text: #07111f;
  --muted: #506174;
  --faint: #7c8da1;
  --primary: #0067ff;
  --primary-2: #10b7ff;
  --primary-soft: #dff2ff;
  --accent: #00a86b;
  --accent-hover: #008f5c;
  --accent-ink: #ffffff;
  --shadow-1: 0 16px 40px rgba(0, 103, 255, 0.12);
  --shadow-2: 0 28px 80px rgba(7, 17, 31, 0.18);
  --shadow-soft: 0 18px 50px rgba(7, 17, 31, 0.1);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 28px;
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 183, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 90% 12%, rgba(0, 168, 107, 0.11), transparent 28rem),
    var(--bg);
}

.site-header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.08);
}

.brand-mark {
  box-shadow: 0 12px 28px rgba(0, 103, 255, 0.18);
}

.brand-name {
  font-weight: 800;
}

.nav-link,
.nav-cta-link {
  letter-spacing: -0.01em;
}

.btn {
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
  transform: translateZ(0);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
}

.btn span,
.btn svg {
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 18px 38px rgba(0, 103, 255, 0.26);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(7, 17, 31, 0.08);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover::before {
    transform: translateX(120%);
  }
}

.hero {
  min-height: auto;
  padding: clamp(3.75rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 6rem);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.9), rgba(10, 35, 67, 0.78)),
    radial-gradient(circle at 78% 18%, rgba(16, 183, 255, 0.35), transparent 28rem),
    radial-gradient(circle at 20% 95%, rgba(0, 168, 107, 0.22), transparent 26rem),
    #07111f;
  border-bottom: none;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9rem;
  background: linear-gradient(to bottom, transparent, rgba(238, 245, 251, 0.98));
  pointer-events: none;
  z-index: 0;
}

.hero-accent {
  background:
    radial-gradient(ellipse 40% 36% at 85% 18%, rgba(16, 183, 255, 0.34), transparent 65%),
    radial-gradient(ellipse 34% 28% at 20% 88%, rgba(0, 168, 107, 0.2), transparent 62%);
}

.hero-shape--grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 90% 90% at 58% 42%, black 5%, transparent 76%);
}

.hero-shape--ring,
.hero-shape--square,
.hero-shape--arc {
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-shape--pill,
.hero-shape--hex {
  background: rgba(255, 255, 255, 0.12);
}

.hero-shape--line {
  background: linear-gradient(90deg, transparent, rgba(16, 183, 255, 0.7), transparent);
}

.hero-shape--dot {
  background: #5eead4;
}

.hero-inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content {
  max-width: 46rem;
}

.hero .eyebrow {
  color: #7dd3fc;
}

.hero-title {
  max-width: 13ch;
  color: #ffffff;
  font-size: clamp(2.5rem, 10vw, 5.75rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.text-gradient {
  background: linear-gradient(120deg, #7dd3fc 0%, #ffffff 45%, #86efac 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-process-step,
.hero-metric,
.hero-benefits {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
}

.hero-process-num {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(16, 183, 255, 0.45), rgba(0, 168, 107, 0.45));
}

.hero-process-label,
.hero-metric dd {
  color: #ffffff;
}

.hero-benefits li,
.hero-metric dt {
  color: rgba(255, 255, 255, 0.72);
}

.hero-benefits li::before {
  background: #5eead4;
  box-shadow: 0 0 0 6px rgba(94, 234, 212, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 27rem;
  display: none;
}

.ops-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  color: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.ops-card-main {
  position: absolute;
  inset: 3rem 2rem auto 0;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 2rem;
}

.ops-label,
.ops-card-float span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ops-card-main strong {
  display: block;
  margin-top: 0.75rem;
  max-width: 10ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.ops-progress {
  margin-top: 2rem;
  height: 0.65rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.ops-progress span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5eead4, #38bdf8, #ffffff);
  animation: opsPulse 3.8s var(--ease) infinite;
}

.ops-card-main ul {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.ops-card-main li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.ops-card-main li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #7dd3fc;
  font-size: 0.75rem;
  font-weight: 800;
}

.ops-card-float {
  position: absolute;
  width: min(12rem, 46%);
  padding: 1rem;
  border-radius: 1.25rem;
  animation: heroFloatB 8s var(--ease) infinite;
}

.ops-card-float strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
  line-height: 1.1;
}

.ops-card-top {
  top: 0;
  right: 0;
}

.ops-card-bottom {
  right: 1rem;
  bottom: 1rem;
  animation-delay: -2.8s;
}

@keyframes opsPulse {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10%);
  }
}

.trust {
  margin-top: -1px;
  background: rgba(255, 255, 255, 0.72);
  border-block: none;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.8) inset;
}

.trust-item,
.feature-card,
.bento-card,
.solution-detail,
.testimonial-card,
.form-card,
.contact-channel {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.trust-value,
.feature-title,
.bento-title,
.timeline-title,
.channel-title,
.quote-name {
  letter-spacing: -0.025em;
}

.section {
  position: relative;
}

.section-alt {
  background:
    radial-gradient(circle at 8% 12%, rgba(16, 183, 255, 0.12), transparent 24rem),
    rgba(255, 255, 255, 0.34);
}

.section-title {
  max-width: 13ch;
  color: var(--text);
  font-size: clamp(2rem, 6vw, 4.2rem);
  letter-spacing: -0.06em;
}

.section-subtitle,
.lead {
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% 25%;
  height: 8rem;
  background: radial-gradient(circle, rgba(16, 183, 255, 0.16), transparent 65%);
  pointer-events: none;
}

.feature-icon {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 32px rgba(0, 103, 255, 0.2);
}

.solution-lab {
  gap: clamp(1rem, 3vw, 1.75rem);
}

.bento-card {
  isolation: isolate;
}

.bento-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 10rem;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.9), transparent 0.35rem),
    linear-gradient(135deg, rgba(0, 103, 255, 0.95), rgba(16, 183, 255, 0.78));
}

.bento-media::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.15rem;
}

.bento-media::after {
  content: "";
  position: absolute;
  width: 54%;
  height: 54%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(0.5px);
}

.bento-media span {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(7, 17, 31, 0.16);
}

.bento-media span:nth-child(1) {
  width: 5rem;
  height: 5rem;
}

.bento-media span:nth-child(2),
.bento-media span:nth-child(3) {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
}

.bento-media span:nth-child(2) {
  left: 17%;
  bottom: 21%;
}

.bento-media span:nth-child(3) {
  top: 19%;
  right: 18%;
}

.bento-media-acesso {
  background: linear-gradient(135deg, #0f766e, #10b7ff);
}

.bento-media-operacao {
  background: linear-gradient(135deg, #1d4ed8, #7c3aed);
}

.bento-media-controle {
  background: linear-gradient(135deg, #0f172a, #0067ff);
}

.bento-card.is-active {
  border-color: rgba(0, 103, 255, 0.65);
  box-shadow: 0 0 0 5px rgba(0, 103, 255, 0.12), var(--shadow-2);
}

.solution-detail {
  background:
    radial-gradient(circle at 96% 12%, rgba(16, 183, 255, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 249, 255, 0.76));
}

.solution-panel h3 {
  max-width: 18ch;
  font-size: clamp(1.65rem, 4vw, 3rem);
  letter-spacing: -0.05em;
}

.panel-list li {
  padding: 0.6rem 0.85rem 0.6rem 2rem;
  border-radius: 999px;
  background: rgba(0, 103, 255, 0.07);
}

.panel-list li::before {
  left: 0.85rem;
}

.timeline-step {
  box-shadow: var(--shadow-soft);
}

.timeline-number {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
}

.testimonial-shell {
  max-width: 58rem;
}

.testimonial-card {
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(16, 183, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.testimonial-slide blockquote {
  max-width: 32ch;
  letter-spacing: -0.035em;
}

.contact {
  background:
    radial-gradient(circle at 88% 20%, rgba(16, 183, 255, 0.27), transparent 28rem),
    radial-gradient(circle at 12% 90%, rgba(0, 168, 107, 0.16), transparent 26rem),
    linear-gradient(135deg, #07111f, #0b2545);
}

/* Texto claro só na coluna sobre fundo escuro — não nos cards brancos */
.contact-copy .eyebrow {
  color: #bae6fd;
}

.contact-copy .section-title {
  color: #ffffff;
}

.contact-copy .section-subtitle {
  color: #e2e8f0;
}

.contact-copy .fineprint {
  color: #cbd5e1;
}

.contact-channel,
.form-card {
  color: var(--text);
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.contact-channel .channel-title {
  color: var(--text);
}

.contact-channel .channel-text {
  color: var(--muted);
}

.contact-channel .channel-icon {
  color: var(--primary);
}

.contact-channel .channel-link {
  color: var(--primary);
}

.contact-channel .channel-link:active,
.contact-channel .channel-link:focus-visible {
  color: var(--accent-hover);
}

.contact .form-card .label {
  color: #334155;
}

.contact .form-card .field input,
.contact .form-card .field select,
.contact .form-card .field textarea {
  color: var(--text);
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.14);
}

.contact .form-card .field input::placeholder,
.contact .form-card .field textarea::placeholder {
  color: #64748b;
}

.contact .form-card .form-status.is-error {
  color: var(--danger);
}

.contact .form-card .form-status.is-ok {
  color: var(--ok);
}

.contact .form-card .btn-outline {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.14);
  color: var(--text);
}

.site-footer {
  background: #07111f;
  border-top-color: rgba(255, 255, 255, 0.12);
}

.site-footer,
.site-footer .brand-name {
  color: #ffffff;
}

.site-footer .footer-tagline,
.footer-nav a,
.footer-social a,
.footer-copy {
  color: rgba(255, 255, 255, 0.66);
}

.sticky-cta {
  background: rgba(7, 17, 31, 0.84);
  border-top-color: rgba(255, 255, 255, 0.12);
}

.back-to-top {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--primary-2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .hero-visual {
    display: block;
  }

  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.92fr);
    max-width: var(--container);
  }

  .hero-content {
    max-width: none;
  }

  .hero {
    padding: clamp(5rem, 8vw, 7.5rem) 0 clamp(4rem, 8vw, 6.5rem);
  }

  .hero-benefits,
  .hero-process-step,
  .hero-metric {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
  }

  .hero-process-sep {
    background: rgba(255, 255, 255, 0.22);
  }

  .trust-grid {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow-soft);
  }

  .trust-item {
    padding: 1.6rem;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
  }

  .trust-item:last-child {
    border-right: none;
  }

  .solution-lab {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(26rem, 1.1fr);
    align-items: stretch;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .testimonial-card {
    padding: clamp(3rem, 6vw, 4.5rem);
  }
}

@media (max-width: 767px) {
  .hero-title,
  .section-title {
    max-width: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .bento-media {
    min-height: 8.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn::before,
  .ops-card-float,
  .ops-progress span {
    animation: none;
    transition: none;
  }
}
