/* Base global, componentes principais e responsivo primario */

/*
=============================================================
  FACILITA PAGES — DESIGN SYSTEM v3
  Fontes: Inter (body) + Montserrat (display/headings)
  Background: BRANCO puro
  Cores: verde #52ADF6 (logo) + grafite #1e2340 (logo)
  Responsivo total: 1440 → 1024 → 768 → 480 → 360px
=============================================================
*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img,
video,
svg {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none
}

input,
button,
textarea,
select {
  font: inherit;
  user-select: text;
  -webkit-user-select: text;
}

a {
  text-decoration: none;
  color: inherit
}

ul,
ol {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none
}

:root {
  /* TIPOGRAFIA */
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* ESCALA FLUIDA */
  --fs-h1: clamp(2rem, 4vw + 0.6rem, 3.5rem);
  --fs-h2: clamp(1.6rem, 3vw + 0.6rem, 2.8rem);
  --fs-h3: clamp(1.1rem, 2vw + 0.4rem, 1.6rem);
  --fs-body: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  --fs-sm: clamp(0.8rem, 0.9vw + 0.2rem, 0.88rem);
  --fs-label: clamp(0.68rem, 0.7vw + 0.2rem, 0.76rem);

  /* PALETA — Verde escuro #1B3A2A + Dourado #F5A623 */
  --bg-0: #ffffff;
  --bg-1: #f5f7f5;
  --bg-2: #ffffff;
  --bg-ink: #0D1B12;

  --text-1: #0D1B12;
  --text-2: #2D4238;
  --text-3: #6B7B72;
  --text-inv: #ffffff;

  /* Primária: verde floresta */
  --accent: #1B3A2A;
  --accent-light: #e4ede8;
  --accent-mid: #2D5A3D;
  --accent-dark: #1A4030;

  /* Secundária: dourado */
  --accent-sec: #F5A623;
  --accent-sec-light: #fef3d8;
  --accent-sec-mid: #d4870f;
  --accent-sec-dark: #a86800;

  /* Gradiente identidade */
  --grad-brand: linear-gradient(135deg, #1B3A2A 0%, #2D5A3D 100%);
  --grad-icon: linear-gradient(135deg, #1B3A2A 0%, #2D5A3D 100%);

  /* Destaque dourado (warm highlight) */
  --accent-2: #F5A623;
  --accent-2-light: #fef3d8;

  --shadow-sec: 0 6px 24px rgba(245, 166, 35, 0.3);

  --line: rgba(0, 0, 0, 0.06);
  --line-mid: rgba(0, 0, 0, 0.1);
  --line-strong: rgba(0, 0, 0, 0.18);

  /* RAIOS */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* SOMBRAS */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-accent: 0 6px 24px rgba(27, 58, 42, 0.3);
  --shadow-ink: 0 12px 40px rgba(13, 27, 18, 0.35);

  /* ESPAÇAMENTO */
  --space-2xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-xs: clamp(0.5rem, 1.5vw, 0.75rem);
  --space-sm: clamp(0.75rem, 2vw, 1.25rem);
  --space-md: clamp(1.25rem, 3vw, 2rem);
  --space-lg: clamp(2rem, 5vw, 3.5rem);
  --space-xl: clamp(3rem, 7vw, 6rem);
  --space-2xl: clamp(4rem, 10vw, 8rem);

  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);

  /* MOTION */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.6, -0.05, 0.4, 1.3);
  --dur-fast: 180ms;
  --dur-mid: 300ms;
  --dur-slow: 550ms;
}

/* ============ BASE ============ */
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-2);
  background: var(--bg-0);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============ TIPOGRAFIA ============ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--text-1);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700
}

h1 {
  font-size: var(--fs-h1);
  letter-spacing: -0.03em;
  font-weight: 700
}

h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.025em;
  font-weight: 700
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 600
}

p {
  max-width: 66ch
}

/* ============ CHIP ============ */
.chip {
  display: inline-flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  align-self: flex-start;
  justify-self: start;
  padding: 5px 14px;
  font-size: var(--fs-label);
  font-weight: 700;
  background: transparent;
  color: #1b3a2a;
  border: 1.5px solid #1b3a2a;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-family: var(--font-display);
  position: relative;
}

.chip::before,
.chip::after { content: none }

.chip.warm {
  background: transparent;
  color: #1b3a2a;
  border-color: #1b3a2a;
}

.chip.ink {
  background: transparent;
  color: #1b3a2a;
  border-color: #1b3a2a;
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--dur-mid) var(--ease-expo);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden
}

.btn:active {
  transform: scale(0.97)
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent)
}

.btn-primary:hover {
  background: var(--accent-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(27, 58, 42, 0.35)
}

.btn-ink {
  background: var(--bg-ink);
  color: var(--text-inv);
  box-shadow: var(--shadow-ink)
}

.btn-ink:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(13, 27, 18, 0.4)
}

.btn-ghost {
  background: transparent;
  color: var(--text-1);
  border: 1.5px solid rgba(13, 27, 18, 0.35);
  overflow: hidden
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #F5A623;
  border-radius: inherit;
  transform: translateY(105%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1
}

.btn-ghost:hover {
  border-color: #F5A623;
  color: #0D1B12;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.35)
}

.btn-ghost:hover::before {
  transform: translateY(0)
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.82rem
}

.btn-gold {
  background: var(--accent-2);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.28);
}

.btn-gold:hover {
  background: var(--accent-sec-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.42);
  color: #fff;
}

/* Verde / CTA WhatsApp — gradiente brand */
.btn-green {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-accent);
  background-size: 160% 160%;
  background-position: 0% 50%;
  transition: all var(--dur-mid) var(--ease-expo);
}

.btn-green:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(27, 58, 42, 0.35);
}

.btn-green:active {
  transform: scale(0.97) translateY(0);
}

.btn-green:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Botão full-width grande — formulário */
.btn-full-lg {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  margin-top: var(--space-xs);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: background var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease)
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--dur-fast) var(--ease)
}

.logo:hover {
  opacity: 0.8
}

.logo img.logo-img {
  height: 36px;
  width: auto;
  display: block
}

.footer-brand .logo .logo-img {
  height: 40px;
  width: auto;
  display: block
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease)
}

.nav-links a:hover {
  color: var(--accent-dark);
  background: var(--accent-light)
}

.nav-links a.active {
  color: var(--accent-2);
  font-weight: 700
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm)
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all var(--dur-mid) var(--ease)
}

/* ============ HERO ============ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px) }
  to   { opacity: 1; transform: translateY(0) }
}

.hero-anim {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-anim-0 { animation-delay: 0ms }
.hero-anim-1 { animation-delay: 100ms }
.hero-anim-2 { animation-delay: 200ms }
.hero-anim-3 { animation-delay: 320ms }
.hero-anim-4 { animation-delay: 440ms }

@media (prefers-reduced-motion: reduce) {
  .hero-anim { animation: none }
}

.hero {
  padding-top: calc(68px + var(--space-xl));
  padding-bottom: calc(var(--space-xl) + 5rem)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center
}

.hero-content {
  position: relative;
  z-index: 2
}

.hero-eyebrow {
  margin-bottom: var(--space-xs)
}

.hero-title {
  font-size: clamp(1.6rem, 3vw + 0.4rem, 2.6rem);
  margin-bottom: var(--space-sm)
}

.hero-tagline {
  display: block;
  font-size: clamp(2.8rem, 6vw + 0.5rem, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em
}

/* Hero eyebrow badge — pill verde com ponto dourado pulsante */
.hero-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 20px 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 100%);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 22px rgba(27, 58, 42, 0.28), 0 1px 0 rgba(255,255,255,0.08) inset;
  position: relative;
  overflow: hidden
}
.hero-label-tag::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2), 0 0 18px rgba(245,166,35,.4);
  animation: hero-dot-pulse 2.2s ease-in-out infinite
}
.hero-label-tag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.13) 58%, transparent 70%);
  animation: hero-shimmer 4s ease-in-out infinite;
  pointer-events: none
}
@keyframes hero-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1) }
  50%       { opacity: .65; transform: scale(.82) }
}
@keyframes hero-shimmer {
  0%        { transform: translateX(-130%) }
  45%, 100% { transform: translateX(130%) }
}

/* Nome destaque — itálico dourado */
.hero-title em,
.hero-title .hero-name {
  font-style: italic;
  color: var(--accent-2);
  display: block;
  font-size: clamp(2rem, 4vw + 0.5rem, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-decoration: none
}

/* Botão com círculo play à direita (legado) */
.btn-with-play {
  padding: 6px 6px 6px 24px;
  gap: 12px;
  overflow: visible
}

.btn-play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #F5A623;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform var(--dur-fast) var(--ease-bounce)
}

.btn-play-circle svg {
  fill: #0D1B12;
  margin-left: 2px
}

.btn-with-play:hover .btn-play-circle {
  transform: scale(1.1)
}

/* Hero CTA — componente dedicado verde floresta + círculo dourado */
.btn-cta-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 7px 7px 26px;
  background: #1B3A2A;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1)
}

.btn-cta-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(27, 58, 42, 0.38);
  color: #ffffff
}

.btn-cta-play:active {
  transform: scale(0.97)
}

.btn-cta-play__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #F5A623;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.btn-cta-play__circle svg {
  fill: #0D1B12;
  margin-left: 2px;
  display: block
}

.btn-cta-play:hover .btn-cta-play__circle {
  transform: scale(1.1)
}

.hero-sub {
  font-size: clamp(0.95rem, 1.2vw + 0.3rem, 1.1rem);
  color: var(--text-2);
  margin-bottom: var(--space-md);
  max-width: 50ch
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-md);
  font-size: 0.82rem;
  color: var(--text-3)
}

.hero-avatars {
  display: flex;
  align-items: center
}

.hero-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  cursor: default;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-avatar:first-child {
  margin-left: 0
}

.hero-avatar:hover {
  transform: scale(1.35) translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  z-index: 2;
  position: relative;
}

.hero-avatar-1 { background-image: url('https://i.pravatar.cc/68?img=11'); }
.hero-avatar-2 { background-image: url('https://i.pravatar.cc/68?img=5'); }
.hero-avatar-3 { background-image: url('https://i.pravatar.cc/68?img=32'); }
.hero-avatar-4 { background-image: url('https://i.pravatar.cc/68?img=47'); }
.hero-avatar-5 { background-image: url('https://i.pravatar.cc/68?img=15'); }
.hero-avatar-6 { background-image: url('https://i.pravatar.cc/68?img=25'); }

.hero-visual {
  position: relative
}

.hero-card-stack {
  position: relative;
  height: 420px
}

.hero-card {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--line-mid);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm);
  transition: transform var(--dur-slow) var(--ease-expo)
}

.hero-card:nth-child(1) {
  top: 0;
  right: 0;
  width: 78%;
  z-index: 3
}

.hero-card:nth-child(2) {
  top: 28%;
  left: 0;
  width: 58%;
  z-index: 2;
  transform: rotate(-3deg)
}

.hero-card:nth-child(3) {
  bottom: 0;
  right: 5%;
  width: 52%;
  z-index: 1;
  transform: rotate(2deg)
}

.hero-card-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  color: var(--text-3);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600
}

.hero-card-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.02em
}

.hero-card-sub {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 3px
}

.hero-card-bar {
  margin-top: 10px;
  height: 5px;
  background: var(--line);
  border-radius: var(--r-full);
  overflow: hidden
}

.hero-card-bar-fill {
  height: 100%;
  border-radius: var(--r-full);
  background: var(--accent);
  animation: barFill 2s var(--ease-expo) 0.8s both
}

@keyframes barFill {
  from {
    width: 0
  }

  to {
    width: var(--fill, 70%)
  }
}

.hero-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  margin-right: 5px;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.35
  }
}

/* ============ MARQUEE ============ */
.marquee-wrapper {
  position: relative;
  z-index: 90;
  height: 140px;
  margin-top: -36px;
  margin-bottom: -36px;
  clip-path: inset(-70px 0 -70px 0);
}

/* both bands absolutely centered — opposite skew forms the X */
.marquee-section {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}

.marquee-section--green {
  background: #1B3A2A;
  padding: 14px 0;
  transform: translateY(-50%) skewY(-5deg);
  z-index: 10;
}

.marquee-section--gold {
  background: #F5A623;
  padding: 14px 0;
  transform: translateY(-50%) skewY(5deg);
  z-index: 20;
}

.marquee-section--green .marquee-item { color: #fff }
.marquee-section--gold .marquee-item  { color: #fff }

.marquee-track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track--rev { animation-direction: reverse }

@keyframes marqueeScroll {
  from { transform: translateX(0) }
  to   { transform: translateX(-33.333%) }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0 var(--space-sm)
}

.marquee-dot {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent !important;
  opacity: 1 !important;
  font-size: 1.1rem;
  line-height: 1;
  color: #fff
}

.marquee-dot::before {
  content: '✻'
}


.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  background: #1B3A2A;
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 32px rgba(13, 27, 18, 0.35);
  z-index: 3;
  white-space: nowrap;
  animation: badgeFloat 4s ease-in-out infinite
}

.hero-float-badge svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #F5A623;
  stroke-width: 2.5;
  flex-shrink: 0
}

.hero-float-badge--tr {
  top: 10%;
  right: -5%;
  animation-delay: 0s
}

.hero-float-badge--bl {
  bottom: 16%;
  left: -8%;
  animation-delay: -2s
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-7px) }
}


/* ============ SEÇÕES ============ */
section {
  position: relative
}

.section-pad {
  padding-block: var(--space-xl)
}

.section-pad-lg {
  padding-block: var(--space-2xl)
}

.section-header {
  margin-bottom: var(--space-lg)
}

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center
}

.section-header.centered .chip {
  align-self: center;
  justify-self: center;
  margin-inline: auto;
}

.section-header p {
  margin-top: var(--space-xs);
  color: var(--text-3);
  max-width: 54ch
}

/* ============ BENTO ============ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 12px
}

.bento-cell {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-sm);
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--dur-mid) var(--ease), border-color var(--dur-mid) var(--ease), transform var(--dur-mid) var(--ease-expo)
}

.bento-cell:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--line-mid);
  transform: translateY(-2px)
}

.bento-cell.span-4 {
  grid-column: span 4;
  grid-row: span 2
}

.bento-cell.span-8 {
  grid-column: span 8;
  grid-row: span 2
}

.bento-cell.span-5 {
  grid-column: span 5;
  grid-row: span 3
}

.bento-cell.span-7 {
  grid-column: span 7;
  grid-row: span 2
}

.bento-cell.span-6 {
  grid-column: span 6;
  grid-row: span 2
}

.bento-cell.span-4s {
  grid-column: span 4;
  grid-row: span 3
}

.bento-cell.span-8s {
  grid-column: span 8;
  grid-row: span 3
}

.bento-cell.span-12 {
  grid-column: span 12;
  grid-row: span 2
}

.bento-cell.accent-bg {
  background: var(--accent);
  border-color: var(--accent)
}

.bento-cell.accent-bg h3,
.bento-cell.accent-bg p,
.bento-cell.accent-bg .bento-label {
  color: #fff
}

.bento-cell.warm-bg {
  background: var(--bg-ink);
  border-color: var(--bg-ink)
}

.bento-cell.warm-bg h3,
.bento-cell.warm-bg p,
.bento-cell.warm-bg .bento-label {
  color: var(--text-inv)
}

.bento-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
  flex-shrink: 0
}

.bento-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8
}

.bento-cell.accent-bg .bento-icon {
  background: rgba(255, 255, 255, 0.2)
}

.bento-cell.accent-bg .bento-icon svg {
  stroke: #fff
}

.bento-cell.warm-bg .bento-icon {
  background: rgba(255, 255, 255, 0.08)
}

.bento-cell.warm-bg .bento-icon svg {
  stroke: #00c4b4
}

.bento-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px
}

.bento-cell h3 {
  font-size: clamp(0.95rem, 1.3vw + 0.2rem, 1.15rem);
  line-height: 1.25;
  margin-bottom: 5px
}

.bento-cell p {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.55
}

.bento-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 800;
  color: var(--line);
  position: absolute;
  bottom: -8px;
  right: 8px;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none
}

.bento-cell.accent-bg .bento-number {
  color: rgba(255, 255, 255, 0.12)
}

/* ============ MÉTRICAS ============ */
.metrics-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

.metrics-dark .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--space-lg);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
  background: var(--bg-ink);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(13, 27, 18, 0.3), 0 8px 32px rgba(0, 0, 0, 0.15);
}

.metric-item {
  padding: var(--space-md);
  background: var(--bg-1);
  border: 1px solid var(--line);
  text-align: center;
  transition: background var(--dur-mid) var(--ease)
}

.metric-item:first-child {
  border-radius: var(--r-md) 0 0 var(--r-md)
}

.metric-item:last-child {
  border-radius: 0 var(--r-md) var(--r-md) 0
}

.metric-item:hover {
  background: var(--accent-light)
}

.metric-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.03em;
  line-height: 1
}

.metric-number sup {
  font-size: 0.45em;
  color: var(--accent)
}

.metric-label {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 4px
}

/* ============ CARDS ============ */
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  transition: box-shadow var(--dur-mid) var(--ease), transform var(--dur-mid) var(--ease-expo), border-color var(--dur-mid) var(--ease)
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--line-mid);
  transform: translateY(-3px)
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm)
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 6px
}

.card p {
  font-size: 0.85rem;
  color: var(--text-3)
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm)
}

/* ============ DEPOIMENTOS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm)
}

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: box-shadow var(--dur-mid) var(--ease), transform var(--dur-mid) var(--ease-expo)
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px)
}

.testimonial-stars {
  display: flex;
  gap: 2px
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: #f59e0b;
  stroke: none
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1
}

.testimonial-text::before {
  content: '\201C'
}

.testimonial-text::after {
  content: '\201D'
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
  border: 2px solid var(--line)
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-1)
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-3)
}

/* ============ PREÇOS ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  align-items: stretch
}

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--space-md);
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-mid) var(--ease), transform var(--dur-mid) var(--ease-expo)
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px)
}

.pricing-card.featured {
  border-color: var(--accent);
  background: var(--bg-ink);
  box-shadow: var(--shadow-accent), var(--shadow-ink)
}

.pricing-card.featured * {
  color: var(--text-inv)
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.04em
}

.pricing-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px
}

.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw + 0.4rem, 2.6rem);
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px
}

.pricing-card.featured .pricing-price {
  color: var(--text-inv)
}

.pricing-price sub {
  font-size: 0.4em;
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0
}

.pricing-desc {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0
}

.pricing-tech {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #22a86e;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--line)
}

.pricing-tech svg {
  width: 14px;
  height: 14px;
  stroke: #22a86e;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0
}

.pricing-tech-warm {
  color: var(--accent-2);
  border-bottom-color: rgba(255,255,255,0.1)
}

.pricing-tech-warm svg {
  stroke: var(--accent-2)
}

.pricing-badge-warm {
  background: var(--accent-2)
}

.pricing-example-box {
  background: var(--accent-light);
  border-radius: var(--r-md);
  padding: 10px 14px;
  margin-bottom: var(--space-sm);
  margin-top: auto
}

.pricing-example-box p {
  font-size: 0.8rem;
  color: var(--text-2);
  margin: 0;
  max-width: none
}

.pricing-example-box span {
  font-size: 0.72rem;
  color: var(--text-3);
  display: block;
  margin-top: 3px
}

.pricing-example-box-dark {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1)
}

.pricing-example-box-dark p {
  color: rgba(255,255,255,0.8)
}

.pricing-example-box-dark p strong {
  color: var(--accent-2)
}

.btn-ghost-inv {
  background: #fff;
  color: var(--bg-ink);
  border: none;
  font-weight: 700
}

.btn-ghost-inv:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md)
}

.pricing-card-purple {
  border-color: rgba(105,119,197,0.3)
}

.pricing-badge-purple {
  background: var(--accent-sec)
}

.pricing-tech-purple {
  color: var(--accent-sec);
  border-bottom-color: var(--accent-sec-light)
}

.pricing-tech-purple svg {
  stroke: var(--accent-sec)
}

.pricing-card-purple .pricing-features li svg {
  stroke: var(--accent-sec)
}

.pricing-example-box-purple {
  background: var(--accent-sec-light);
  border: 1px solid rgba(105,119,197,0.15)
}

.pricing-example-box-purple p {
  color: var(--text-2)
}

.pricing-example-box-purple p strong {
  color: var(--accent-sec)
}

.pricing-example-box-purple span {
  color: var(--text-3)
}

.btn-purple {
  background: var(--accent-sec);
  color: #fff;
  box-shadow: var(--shadow-sec)
}

.btn-purple:hover {
  background: var(--accent-sec-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(105,119,197,0.35)
}

.pricing-example {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: var(--space-sm);
  text-align: center
}

.pricing-features {
  flex: 1;
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-2)
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.75)
}

.pricing-features li svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 2px
}

.pricing-card > .btn {
  margin-top: auto;
  flex-shrink: 0
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--bg-ink);
  border-radius: var(--r-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.18), transparent 70%);
  pointer-events: none
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 196, 180, 0.12), transparent 70%);
  pointer-events: none
}

.cta-band h2 {
  color: var(--text-inv);
  position: relative;
  z-index: 1
}

.cta-band p {
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
  margin-inline: auto;
  margin-top: var(--space-xs)
}

.cta-band .btn-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-md);
  position: relative;
  z-index: 1
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-ink);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--space-xl) 0 var(--space-lg)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg)
}

.footer-brand p {
  margin-top: var(--space-xs);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 36ch
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-inv);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm)
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.footer-col ul a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  overflow-wrap: anywhere;
  transition: color var(--dur-fast) var(--ease)
}

.footer-col ul a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: var(--space-md);
  padding-bottom: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.75rem
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--dur-fast) var(--ease)
}

.footer-legal a:hover {
  color: #fff
}

/* ============ FABs ============ */
.fab-group {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end
}

.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-mid) var(--ease-bounce), box-shadow var(--dur-mid) var(--ease);
  cursor: pointer;
  border: none
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg)
}

.fab:active {
  transform: scale(0.95)
}

.fab-whatsapp {
  background: #25d366;
  animation: fabWiggle 4s ease-in-out 3s infinite
}

.fab-top {
  background: var(--bg-2);
  border: 1px solid var(--line-mid);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: opacity var(--dur-mid) var(--ease), transform var(--dur-mid) var(--ease-bounce)
}

.fab-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1)
}

.fab-top:hover {
  transform: scale(1.1) !important
}

.fab svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-width: 2.2
}

.fab-whatsapp svg {
  stroke: #fff
}

.fab-top svg {
  stroke: var(--text-1)
}

@keyframes fabWiggle {

  0%,
  100% {
    transform: scale(1) rotate(0deg)
  }

  5% {
    transform: scale(1.08) rotate(-8deg)
  }

  10% {
    transform: scale(1.08) rotate(8deg)
  }

  15% {
    transform: scale(1) rotate(0deg)
  }
}

.fab-tooltip {
  position: absolute;
  right: 58px;
  background: var(--bg-ink);
  color: var(--text-inv);
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease)
}

.fab:hover .fab-tooltip {
  opacity: 1
}

/* ============ FORM ============ */
.form-group {
  margin-bottom: var(--space-sm)
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 5px;
  font-family: var(--font-display)
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line-mid);
  border-radius: var(--r-md);
  background: var(--bg-2);
  color: var(--text-1);
  font-size: 1rem;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  outline: none
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 58, 42, 0.15)
}

textarea {
  resize: vertical;
  min-height: 120px
}

.delay-1 {
  transition-delay: 80ms
}

.delay-2 {
  transition-delay: 160ms
}

.delay-3 {
  transition-delay: 240ms
}

.delay-4 {
  transition-delay: 320ms
}

/* ============ UTILITÁRIOS ============ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0
}

.text-accent {
  color: var(--accent)
}

.text-warm {
  color: var(--accent-2)
}

.text-muted {
  color: var(--text-3)
}

.text-center {
  text-align: center
}

.mt-xs {
  margin-top: var(--space-xs)
}

.mt-sm {
  margin-top: var(--space-sm)
}

.mt-md {
  margin-top: var(--space-md)
}

.mt-lg {
  margin-top: var(--space-lg)
}

.bg-1 {
  background: var(--bg-1)
}

.bg-2 {
  background: var(--bg-2)
}

.bg-warm {
  background: var(--accent-2-light)
}

.bg-green-tint {
  background: var(--accent-light)
}

/* ============ PAGE HERO ============ */
.page-hero {
  padding-top: calc(68px + var(--space-xl));
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--line)
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.page-hero .chip {
  margin-bottom: var(--space-xs);
  align-self: center;
  justify-self: center;
  margin-inline: auto;
}

.page-hero h1 {
  margin-bottom: var(--space-xs);
  text-align: center;
  max-width: 100%;
  word-break: break-word
}

.page-hero p {
  color: var(--text-3);
  max-width: 54ch;
  text-align: center
}

/* ============ 404 ============ */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg)
}

.page-404 .giant-num {
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 900;
  color: var(--line);
  letter-spacing: -0.04em;
  line-height: 0.9;
  pointer-events: none
}

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm)
}

.blog-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--dur-mid) var(--ease), transform var(--dur-mid) var(--ease-expo)
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--accent-light);
  position: relative;
  overflow: hidden
}

.blog-card-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  letter-spacing: -0.03em
}

.blog-card-body {
  padding: var(--space-sm)
}

.blog-card-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.72rem;
  color: var(--text-3);
  font-family: var(--font-display);
  font-weight: 600
}

.blog-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  transition: color var(--dur-fast) var(--ease)
}

.blog-card:hover h3 {
  color: var(--accent)
}

.blog-card p {
  font-size: 0.82rem;
  color: var(--text-3)
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  transform: translateY(calc(100% + 50px));
  z-index: 300;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(27, 58, 42, 0.15);
  border-radius: 20px;
  box-shadow:
    0 24px 64px rgba(30, 35, 64, 0.13),
    0 4px 16px rgba(30, 35, 64, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 20px 20px 20px;
  max-width: 520px;
  width: calc(100% - 3rem);
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  /* linha accent no topo */
  overflow: hidden;
}

/* barra gradiente no topo */
.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 20px 20px 0 0;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner[aria-hidden="true"] {
  pointer-events: none;
}

/* Ícone do cookie */
.cookie-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  align-self: flex-start;
  margin-top: 2px;
}

.cookie-icon svg {
  width: 22px;
  height: 22px;
}

/* Bloco de texto */
.cookie-content {
  flex: 1;
  min-width: 0;
}

.cookie-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.cookie-banner p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-3);
  margin: 0;
  max-width: none;
}

.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.cookie-banner p a:hover {
  opacity: 0.75;
}

/* Botões */
.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  align-items: stretch;
  min-width: 120px;
}

.cookie-actions .btn {
  min-width: 120px;
  min-height: 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 18px;
  justify-content: center;
  box-shadow: none;
}

.cookie-actions .btn.btn-ghost {
  border-color: rgba(30, 35, 64, 0.12);
  background: rgba(248, 250, 255, 0.8);
  color: var(--text-2);
  font-size: 0.76rem;
}

.cookie-actions .btn.btn-ghost:hover {
  background: rgba(248, 250, 255, 0.8);
  border-color: rgba(30, 35, 64, 0.12);
  transform: none;
  box-shadow: none;
  color: var(--text-2);
}

.cookie-actions .btn.btn-ghost::before {
  display: none;
}

.cookie-actions .btn.btn-green {
  box-shadow: 0 8px 20px rgba(27, 58, 42, 0.28);
  font-size: 0.8rem;
}

/* Mobile ≤ 560px — empilha verticalmente */
@media (max-width: 560px) {
  .cookie-banner {
    bottom: 14px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    flex-wrap: wrap;
    padding: 18px 16px;
    border-radius: 16px;
    gap: 12px;
  }

  .cookie-icon {
    display: none;
  }

  .cookie-content {
    width: 100%;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
    min-width: 0;
  }

  .cookie-actions .btn {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 360px) {
  .cookie-actions {
    flex-direction: column-reverse;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

/* ============ MOBILE NAV ============ */
/* Mobile nav — abre da esquerda para direita em scale */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  z-index: 99;
  background: var(--bg-0);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 4px;
  transform: translateX(-105%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
}

.mobile-nav.open {
  transform: translateX(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Overlay escuro atrás do menu */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Links do menu mobile com ícones */
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-1);
  padding: 14px 16px;
  border-radius: var(--r-md);
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: var(--accent-light);
  color: var(--accent);
}

.mobile-nav a svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--text-3);
  transition: color 0.3s ease;
}

.mobile-nav a:hover svg {
  color: var(--accent);
}

/* Botão CTA no mobile nav */
.mobile-nav .btn {
  margin-top: auto;
  justify-content: center;
  color: #fff;
}

/* Animação stagger dos links (entram um a um) */
.mobile-nav a {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    color 0.3s ease;
}

.mobile-nav.open a:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.08s
}

.mobile-nav.open a:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.13s
}

.mobile-nav.open a:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s
}

.mobile-nav.open a:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.23s
}

.mobile-nav.open a:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s
}

.mobile-nav.open a:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.33s
}

.mobile-nav.open a:nth-child(7) {
  opacity: 1;
  transform: none;
  transition-delay: 0.38s
}

/* Separador antes do botão CTA */
.mobile-nav .mobile-nav-divider {
  height: 1px;
  background: var(--line);
  margin: var(--space-sm) 0;
}

/* ============ LEGAL ============ */
.legal-body {
  max-width: 720px;
  margin-inline: auto
}

.legal-body h2 {
  font-size: 1.2rem;
  margin-top: var(--space-md);
  margin-bottom: 6px
}

.legal-body p,
.legal-body li {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 6px
}

.legal-body ul {
  padding-left: 1.5rem
}

.legal-body ul li {
  list-style: disc
}

.legal-body a {
  color: var(--accent)
}

.legal-meta {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 600
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-sm) 0;
  font-size: 0.82rem
}

.cookies-table th {
  text-align: left;
  padding: 8px 12px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-2);
  font-weight: 600
}

.cookies-table td {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--text-2);
  vertical-align: top
}

/* ===================================================================
   RESPONSIVE — COMPLETO
   1440 → 1280 → 1024 → 900 → 768 → 640 → 480 → 375 → 320
   =================================================================== */

/* --- Tablet landscape (≤1024px) --- */
@media (max-width: 1024px) {
  .bento-grid {
    grid-auto-rows: 95px
  }

  .bento-cell.span-4 {
    grid-column: span 6
  }

  .bento-cell.span-8 {
    grid-column: span 6
  }

  .bento-cell.span-8s {
    grid-column: span 12;
    grid-row: span 2
  }

  .bento-cell.span-4s {
    grid-column: span 6
  }

  .bento-cell.span-5 {
    grid-column: span 6
  }

  .bento-cell.span-7 {
    grid-column: span 6
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md)
  }

  .hero-card-stack {
    height: 380px
  }
}

/* --- Tablet portrait (≤768px) --- */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-visual {
    display: none
  }

  .hero-title {
    font-size: clamp(1.4rem, 5vw, 2rem)
  }

  .nav-links {
    display: none
  }

  .nav-cta {
    display: none
  }

  .menu-toggle {
    display: flex
  }

  .bento-cell {
    grid-column: span 12 !important;
    grid-row: span 1 !important;
    min-height: auto;
    padding: var(--space-sm)
  }

  .bento-number {
    display: none
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .metric-item:first-child {
    border-radius: var(--r-md) 0 0 0
  }

  .metric-item:nth-child(2) {
    border-radius: 0 var(--r-md) 0 0
  }

  .metric-item:nth-child(3) {
    border-radius: 0 0 0 var(--r-md)
  }

  .metric-item:last-child {
    border-radius: 0 0 var(--r-md) 0
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto
  }

  .pricing-name,
  .pricing-price,
  .pricing-desc {
    text-align: center
  }

  .pricing-tech {
    justify-content: center
  }

  .pricing-card > .btn {
    align-self: center;
    width: 100%
  }

  /* Conteúdo fora dos cards — centrado no mobile */
  .section-header {
    text-align: center;
    align-items: center
  }

  .section-header .chip {
    align-self: center;
    margin-inline: auto
  }

  .section-header p {
    margin-inline: auto
  }

  .service-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .service-info .chip {
    align-self: center;
    margin-inline: auto
  }

  .service-info p {
    max-width: 100%
  }

  .service-tag {
    justify-content: center
  }

  .service-price-tag,
  .service-price-value {
    text-align: center
  }

  .service-info .btn {
    align-self: center
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

  .cards-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md)
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .cta-band {
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--r-lg)
  }

  .section-pad {
    padding-block: var(--space-lg)
  }

  .section-pad-lg {
    padding-block: var(--space-xl)
  }
}

/* --- Phablet (≤640px) --- */
@media (max-width: 640px) {
  .hero {
    padding-top: calc(68px + var(--space-lg))
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto
  }

  .hero-actions .btn,
  .hero-actions .btn-cta-play {
    width: 100%;
    justify-content: center
  }

  .hero-proof {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr
  }

  .metric-number {
    font-size: clamp(1.5rem, 6vw, 2rem)
  }

  .cta-band h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem)
  }

  .cta-band .btn-row {
    flex-direction: column;
    align-items: stretch;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto
  }

  .cta-band .btn-row .btn {
    justify-content: center;
    width: 100%
  }
}

/* --- Mobile (≤480px) --- */
@media (max-width: 480px) {
  :root {
    --gutter: 1rem
  }

  .site-header {
    height: 60px
  }

  .header-inner {
    min-height: 60px;
    gap: 12px
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    flex-shrink: 0
  }

  .menu-toggle span {
    width: 18px
  }

  h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem)
  }

  h2 {
    font-size: clamp(1.3rem, 5vw, 1.8rem)
  }

  .chip {
    font-size: 0.65rem;
    padding: 4px 10px
  }

  .btn {
    padding: 11px 20px;
    font-size: 0.82rem
  }

  .btn-sm {
    padding: 8px 14px;
    font-size: 0.78rem
  }

  .fab {
    width: 44px;
    height: 44px
  }

  .fab svg {
    width: 18px;
    height: 18px
  }

  .fab-group {
    bottom: 16px;
    right: 14px
  }

  .metric-item {
    padding: var(--space-sm)
  }

  .metric-number {
    font-size: 1.5rem
  }

  .footer-col h4 {
    font-size: 0.72rem
  }

  .footer-col ul a {
    font-size: 0.78rem
  }

  .footer-bottom {
    font-size: 0.68rem
  }

  .footer-legal {
    gap: 10px
  }

  .pricing-card {
    padding: var(--space-sm)
  }

  .testimonial-card {
    padding: var(--space-sm)
  }

  .card {
    padding: var(--space-sm)
  }

  .mobile-nav a {
    font-size: 1rem;
    padding: 13px 14px
  }

}

/* --- Small mobile (≤375px) --- */
@media (max-width: 375px) {
  :root {
    --gutter: 0.75rem
  }

  h1 {
    font-size: 1.5rem
  }

  h2 {
    font-size: 1.25rem
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.78rem
  }

  .logo img.logo-img {
    height: 30px;
    max-width: 150px
  }

  .site-header {
    height: 56px
  }

  .header-inner {
    min-height: 56px
  }

  .mobile-nav {
    width: 100%;
    max-width: none;
    padding: 84px 18px 28px
  }

  .mobile-nav a {
    font-size: 0.96rem;
    padding: 12px 13px
  }

  .fab-group {
    bottom: 12px;
    right: 10px
  }

  .metric-item {
    padding: var(--space-xs)
  }

  .metric-number {
    font-size: 1.3rem
  }

  .metric-label {
    font-size: 0.68rem
  }
}

/* --- Very small mobile (≤320px) --- */
@media (max-width: 320px) {
  :root {
    --gutter: 0.625rem
  }

  h1 {
    font-size: 1.35rem
  }

  .hero-sub {
    font-size: 0.85rem
  }

  .btn {
    padding: 9px 14px;
    font-size: 0.75rem
  }

  .footer-grid {
    gap: var(--space-sm)
  }

  .mobile-nav {
    padding: 78px 14px 24px
  }

  .mobile-nav a {
    font-size: 0.9rem;
    gap: 10px;
    padding: 11px 12px
  }

  .mobile-nav a svg {
    width: 18px;
    height: 18px
  }

}

