/* =========================================
   JV Representações — Design System
   ========================================= */

:root {
  /* Brand */
  --primary: #004aad;
  --primary-dark: #00377f;
  --primary-light: #1a64c8;
  --primary-50: #eef4ff;
  --primary-100: #dbe7ff;
  --primary-200: #b8cffe;

  /* Logo accents */
  --accent-yellow: #f4b400;
  --accent-orange: #f08a3c;
  --accent-green: #4a8c3c;

  /* Neutrals */
  --white: #ffffff;
  --neutral-50: #f8faff;
  --neutral-100: #f1f5fa;
  --neutral-200: #e4ebf3;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0b1220;

  /* Tokens */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(0, 74, 173, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 74, 173, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 74, 173, 0.12);
  --shadow-xl: 0 24px 60px rgba(0, 74, 173, 0.18);

  --container: 1200px;
  --header-h: 76px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   Reset & Base
   ========================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--neutral-900);
  letter-spacing: -0.02em;
}

ul { list-style: none; }

::selection { background: var(--primary); color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =========================================
   Container
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn--sm { padding: 9px 18px; font-size: 0.875rem; }
.btn--lg { padding: 16px 28px; font-size: 1rem; }

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 74, 173, 0.25);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 74, 173, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary-200);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--neutral-700);
  border-color: var(--neutral-200);
}
.btn--ghost:hover {
  background: var(--neutral-100);
  border-color: var(--neutral-300);
  color: var(--neutral-900);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--accent {
  background: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(240, 138, 60, 0.4);
}
.btn--accent:hover {
  background: #e07628;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(240, 138, 60, 0.55);
}

/* =========================================
   Typography Helpers
   ========================================= */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--primary-50);
  border-radius: 999px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-700);
}
.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(74, 140, 60, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 140, 60, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(74, 140, 60, 0.06); }
}

.chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.chip--blue {
  background: var(--primary-50);
  color: var(--primary);
}

/* =========================================
   Header
   ========================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(0, 74, 173, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  z-index: 100;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header.is-scrolled {
  background: rgba(0, 55, 127, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 55, 127, 0.25);
}

/* Header CTA — laranja destaca melhor sobre azul */
.header .btn--primary {
  background: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(240, 138, 60, 0.35);
}
.header .btn--primary:hover {
  background: #e07628;
  box-shadow: 0 6px 18px rgba(240, 138, 60, 0.5);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.brand__fallback {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--accent-yellow);
  color: var(--neutral-900);
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
}
.brand__name span { color: var(--accent-yellow); font-weight: 700; }

.brand--light { color: var(--white); }
.brand--light .brand__name span { color: var(--accent-yellow); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  transition: var(--transition);
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}
.nav__link.is-active { color: var(--accent-yellow); }

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

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 14s ease-in-out infinite;
}
.blob--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0, 74, 173, 0.35), transparent 70%);
  top: -100px; left: -120px;
}
.blob--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(244, 180, 0, 0.25), transparent 70%);
  bottom: -80px; right: -80px;
  animation-delay: -4s;
}
.blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(74, 140, 60, 0.18), transparent 70%);
  top: 40%; right: 30%;
  animation-delay: -8s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 22px 0 20px;
  letter-spacing: -0.03em;
}
.hero__subtitle {
  font-size: 1.12rem;
  color: var(--neutral-600);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--neutral-200);
}
.stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat span {
  display: block;
  font-size: 0.82rem;
  color: var(--neutral-500);
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.3;
}

/* Hero visual card */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.hero__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 420px;
  text-align: center;
  z-index: 2;
}
.hero__card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at top right, rgba(0, 74, 173, 0.18), transparent 60%),
              radial-gradient(circle at bottom left, rgba(244, 180, 0, 0.18), transparent 60%);
  border-radius: var(--radius-xl);
  z-index: -1;
  filter: blur(20px);
}
.hero__logo {
  height: 140px;
  width: auto;
  margin: 0 auto 20px;
  object-fit: contain;
}
.hero__card-content h3 {
  font-size: 1.4rem;
  margin: 14px 0 10px;
}
.hero__card-content p {
  color: var(--neutral-600);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.hero__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  padding: 10px 16px;
  background: var(--primary-50);
  border-radius: 10px;
  transition: var(--transition);
}
.hero__card-link:hover {
  background: var(--primary);
  color: var(--white);
}

.float-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--neutral-800);
  border: 1px solid var(--neutral-100);
  z-index: 3;
}
.float-tag svg { color: var(--primary); }
.float-tag--1 {
  top: 40px; left: -10px;
  animation: floatY 5s ease-in-out infinite;
}
.float-tag--2 {
  bottom: 60px; right: -10px;
  animation: floatY 5s ease-in-out infinite -2.5s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================================
   Strip
   ========================================= */
.strip {
  padding: 36px 0;
  background: var(--primary);
  color: var(--white);
}
.strip__label {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 18px;
}
.strip__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
}
.strip__item span { font-size: 1.2rem; }
.strip__divider {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

/* =========================================
   Sections
   ========================================= */
.section {
  padding: 100px 0;
  position: relative;
}
.section--alt {
  background: linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 100%);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section__title {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin: 8px 0 16px;
}
.section__lead {
  font-size: 1.1rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

.section__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.section__grid--reverse { grid-template-columns: 1.15fr 1fr; }

.section__content .section__title { text-align: left; }
.section__content .section__lead {
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.section__content p {
  color: var(--neutral-600);
  margin-bottom: 18px;
}

/* Media card */
.section__media {
  position: relative;
}
.media-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  overflow: hidden;
}
.media-card__shape {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 74, 173, 0.15), transparent 70%);
  top: -80px;
  right: -80px;
}
.media-card img {
  position: relative;
  height: 220px;
  width: auto;
  z-index: 1;
}
.media-stat {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--white);
  padding: 22px 26px;
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--neutral-200);
  max-width: 220px;
}
.media-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.media-stat span {
  display: block;
  font-size: 0.85rem;
  color: var(--neutral-600);
  margin-top: 6px;
  line-height: 1.4;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 32px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--neutral-800);
}
.check-list svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 4px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 50%;
  box-sizing: content-box;
}

/* =========================================
   Cards (Segmentos)
   ========================================= */
.cards {
  display: grid;
  gap: 24px;
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}
.card--featured {
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-50) 100%);
  border-color: var(--primary-200);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 20px;
  color: var(--white);
}
.card__icon--orange { background: linear-gradient(135deg, var(--accent-orange), #ff7a3d); }
.card__icon--green { background: linear-gradient(135deg, var(--accent-green), #6bb04f); }
.card__icon--yellow { background: linear-gradient(135deg, var(--accent-yellow), #ffd13a); color: var(--neutral-900); }

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.card p {
  color: var(--neutral-600);
  font-size: 0.97rem;
  margin-bottom: 20px;
  line-height: 1.65;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
  transition: var(--transition);
}
.card__link:hover { gap: 10px; }

/* =========================================
   Bento Grid
   ========================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
}
.bento__item {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.bento__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}
.bento__item--big {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  padding: 40px;
}
.bento__item--big h3, .bento__item--big p { color: var(--white); }
.bento__item--big p { opacity: 0.9; }

.bento__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-50);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.bento__item--big .bento__icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 64px;
  height: 64px;
}

.bento__item h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.bento__item--big h3 { font-size: 1.6rem; }
.bento__item p {
  color: var(--neutral-600);
  font-size: 0.93rem;
  line-height: 1.65;
  flex: 1;
}
.bento__item--big p { color: rgba(255, 255, 255, 0.92); }
.bento__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 10px 18px;
  background: var(--accent-orange);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  width: fit-content;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(240, 138, 60, 0.35);
}
.bento__link:hover { transform: translateX(4px); background: #e07628; }

/* =========================================
   Steps
   ========================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  margin-bottom: 60px;
}
.steps__line {
  position: absolute;
  top: 32px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--primary-200) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  text-align: center;
  z-index: 1;
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  margin: -52px auto 16px;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 24px rgba(0, 74, 173, 0.3);
}
.step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.step p { color: var(--neutral-600); font-size: 0.95rem; }

.steps__cta { text-align: center; }

/* =========================================
   CTA Banner
   ========================================= */
.cta-banner {
  margin: 0 24px 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 70px 50px;
  position: relative;
  overflow: hidden;
  max-width: calc(var(--container) - 0px);
  margin-left: auto;
  margin-right: auto;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.cta-banner::before {
  width: 320px; height: 320px;
  background: rgba(244, 180, 0, 0.3);
  top: -80px; right: -80px;
}
.cta-banner::after {
  width: 260px; height: 260px;
  background: rgba(74, 140, 60, 0.25);
  bottom: -100px; left: -60px;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0;
}
.cta-banner__content { flex: 1 1 320px; min-width: 0; }
.cta-banner__content h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  overflow-wrap: break-word;
  hyphens: auto;
}
.cta-banner__content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 600px;
}
.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================
   Contato
   ========================================= */
.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-list__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-list strong {
  display: block;
  color: var(--neutral-900);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-list a, .contact-list span {
  color: var(--neutral-700);
  font-size: 1rem;
  transition: var(--transition);
}
.contact-list a:hover { color: var(--primary); }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-card__header { margin-bottom: 24px; }
.form-card__header h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.form-card__header p { color: var(--neutral-500); font-size: 0.95rem; }

.form { display: grid; gap: 16px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-700);
}
.form__field input,
.form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--neutral-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--neutral-900);
  transition: var(--transition);
  resize: vertical;
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.12);
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--neutral-400); }

.form__submit { margin-top: 8px; justify-content: center; }
.form__note {
  font-size: 0.9rem;
  color: var(--neutral-600);
  text-align: center;
  min-height: 1.2em;
}
.form__note.is-success { color: var(--accent-green); font-weight: 600; }
.form__note.is-error { color: #d33b3b; font-weight: 600; }

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: 80px 0 0;
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer__brand p {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--neutral-400);
  max-width: 360px;
}
.footer__col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a, .footer__col li {
  color: var(--neutral-400);
  font-size: 0.93rem;
  transition: var(--transition);
}
.footer__col a:hover { color: var(--accent-yellow); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--neutral-500);
}
.footer__bottom a { color: var(--accent-yellow); font-weight: 600; }

/* =========================================
   WhatsApp Float
   ========================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: var(--transition);
  animation: pulseWa 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  background: #1ebe57;
}
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* =========================================
   Reveal animation
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { min-height: 380px; }
  .section__grid, .section__grid--reverse {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .section__grid--reverse > .section__content { order: -1; }
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__item--big { grid-column: span 2; grid-row: auto; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    z-index: 99;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 10px;
    color: var(--neutral-700);
  }
  .nav__link:hover {
    color: var(--primary);
    background: var(--primary-50);
  }
  .nav__link.is-active {
    color: var(--primary);
    background: var(--primary-50);
  }

  .menu-toggle { display: flex; }
  .header__actions .btn--sm { display: none; }

  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .stat strong { font-size: 1.7rem; }

  .section { padding: 70px 0; }
  .section__header { margin-bottom: 40px; }

  .strip__items { gap: 14px; }
  .strip__divider { display: none; }

  .cards--3 { grid-template-columns: 1fr; }

  .bento { grid-template-columns: 1fr; }
  .bento__item--big { grid-column: span 1; }

  .steps { grid-template-columns: 1fr; gap: 50px; }
  .steps__line { display: none; }

  .cta-banner { padding: 44px 24px; margin: 0 16px 70px; border-radius: var(--radius-lg); }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-banner__content h2 { font-size: 1.45rem; line-height: 1.25; }
  .cta-banner__content p { font-size: 0.98rem; }

  .form-card { padding: 28px 22px; }
  .form__row { grid-template-columns: 1fr; }

  .footer { padding-top: 60px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
  .footer__bottom-inner { justify-content: center; text-align: center; }

  .float-tag--1 { top: 10px; left: 10px; font-size: 0.78rem; padding: 10px 14px; }
  .float-tag--2 { bottom: 20px; right: 10px; font-size: 0.78rem; padding: 10px 14px; }

  .media-card { padding: 50px 24px; min-height: 320px; }
  .media-stat { right: 10px; bottom: 10px; padding: 16px 18px; }
  .media-stat strong { font-size: 1.6rem; }

  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .brand__name span { display: none; }
  .hero__actions .btn { width: 100%; }
  .cta-banner__actions { width: 100%; }
  .cta-banner__actions .btn { flex: 1; }
}
