/* ================================================================
   AGP Engenharia – main.css
   Estrutura: Custom Properties → Reset → Base → Layout → Componentes
   → Header → Hero → Services → About → MVV → Diferenciais
   → CTA Banner → Contato → Footer → WhatsApp → Animações → Responsive
   ================================================================ */

/* ────────────────────────────────────────────
   CUSTOM PROPERTIES
   ──────────────────────────────────────────── */
:root {
  /* Cores */
  --color-navy:       #0a1628;
  --color-navy-800:   #0f2040;
  --color-navy-700:   #142952;
  --color-blue:       #1e3a5f;
  --color-blue-600:   #1a3356;
  --color-accent:     #2563eb;
  --color-accent-400: #3b82f6;
  --color-accent-300: #60a5fa;
  --color-accent-100: #dbeafe;
  --color-graphite:   #374151;
  --color-gray-600:   #4b5563;
  --color-gray-400:   #9ca3af;
  --color-gray-200:   #e5e7eb;
  --color-gray-100:   #f3f4f6;
  --color-gray-50:    #f8fafc;
  --color-white:      #ffffff;
  --color-success:    #059669;
  --color-error:      #dc2626;
  --color-warning:    #d97706;
  --color-wa-green:   #25d366;
  --color-wa-dark:    #128c7e;

  /* Tipografia */
  --font-sans:      'Inter', system-ui, -apple-system, sans-serif;
  --font-heading:   'Barlow Condensed', 'Inter', sans-serif;

  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-6xl:   3.75rem;
  --text-7xl:   4.5rem;

  --leading-tight:  1.2;
  --leading-snug:   1.35;
  --leading-normal: 1.6;
  --leading-relaxed:1.75;

  --font-light:   300;
  --font-regular: 400;
  --font-medium:  500;
  --font-semi:    600;
  --font-bold:    700;
  --font-extrabold:800;

  /* Espaçamentos */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Bordas */
  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm:  0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md:  0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:  0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:  0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-blue:0 8px 30px rgb(37 99 235 / 0.35);

  /* Transições */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max:  1280px;
  --container-wide: 1440px;
  --header-h:       72px;
  --section-py:     var(--space-24);
}

/* ────────────────────────────────────────────
   RESET & BASE
   ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-graphite);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: var(--radius-sm); }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: var(--leading-tight);
  font-weight: var(--font-bold);
  color: var(--color-navy);
}

/* ────────────────────────────────────────────
   LAYOUT UTILITÁRIOS
   ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section {
  padding-block: var(--section-py);
}

.py-lg { padding-block: var(--space-16); }

/* ────────────────────────────────────────────
   SECTION HEADER (genérico)
   ──────────────────────────────────────────── */
.section-header {
  max-width: 680px;
  margin-bottom: var(--space-16);
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-accent-100);
  color: var(--color-accent);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semi);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-5);
}

.section-badge__icon { width: 16px; height: 16px; }
.section-badge__icon svg { width: 16px; height: 16px; }

.section-badge--light {
  background: rgb(255 255 255 / 0.12);
  color: var(--color-accent-300);
}

.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--font-extrabold);
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}

.section-title--light { color: var(--color-white); }

.section-desc {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  line-height: var(--leading-relaxed);
}

.section-desc--light { color: rgb(255 255 255 / 0.8); }

/* ────────────────────────────────────────────
   BOTÕES
   ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: var(--font-semi);
  font-family: var(--font-sans);
  white-space: nowrap;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 0);
  transition: background var(--transition-fast);
}

.btn:hover::before { background: rgb(255 255 255 / 0.08); }
.btn:active { transform: scale(0.98); }

.btn__icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn__icon svg { width: 20px; height: 20px; }

.btn--sm { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); }
.btn--sm .btn__icon { width: 16px; height: 16px; }
.btn--sm .btn__icon svg { width: 16px; height: 16px; }

.btn--lg { padding: var(--space-4) var(--space-8); font-size: var(--text-lg); border-radius: var(--radius-xl); }

.btn--full { width: 100%; justify-content: center; }

/* Primary */
.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  background: var(--color-accent-400);
  box-shadow: 0 12px 40px rgb(37 99 235 / 0.5);
  transform: translateY(-2px);
}

/* WhatsApp */
.btn--whatsapp {
  background: var(--color-wa-green);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgb(37 211 102 / 0.35);
}
.btn--whatsapp:hover {
  background: #22c55e;
  box-shadow: 0 8px 30px rgb(37 211 102 / 0.5);
  transform: translateY(-2px);
}

/* WhatsApp outline */
.btn--whatsapp-outline {
  background: transparent;
  color: var(--color-wa-green);
  border-color: var(--color-wa-green);
}
.btn--whatsapp-outline:hover {
  background: var(--color-wa-green);
  color: var(--color-white);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn--ghost:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* White */
.btn--white {
  background: var(--color-white);
  color: var(--color-navy);
}
.btn--white:hover {
  background: var(--color-gray-100);
  transform: translateY(-2px);
}

/* Spinner no botão de submit */
.btn__spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgb(255 255 255 / 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn__text { opacity: 0.6; }
.btn.is-loading .btn__spinner { display: inline-block; }

/* ────────────────────────────────────────────
   HEADER
   ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
  will-change: background;
}

.site-header.is-scrolled {
  background: rgb(10 22 40 / 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.06), var(--shadow-xl);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  height: var(--header-h);
}

/* Logo */
.site-header__brand { flex-shrink: 0; }

.site-header__text-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-extrabold);
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.logo-sub {
  font-size: var(--text-xs);
  color: var(--color-accent-300);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.site-header__brand .custom-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Navegação */
.site-nav { flex: 1; }

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.site-nav__menu li a {
  display: block;
  padding: var(--space-2) var(--space-3);
  color: rgb(255 255 255 / 0.85);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.site-nav__menu li a:hover,
.site-nav__menu li.current-menu-item a {
  color: var(--color-white);
  background: rgb(255 255 255 / 0.1);
}

/* Actions header */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
}

/* Hamburguer */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 0.1);
  transition: background var(--transition-fast);
}

.nav-toggle:hover { background: rgb(255 255 255 / 0.15); }

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-800) 40%, var(--color-blue) 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgb(37 99 235 / 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgb(30 58 95 / 0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Partículas decorativas */
.hero__particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero__particle {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0;
  animation: float-particle 6s ease-in-out infinite;
}

.hero__particle:nth-child(1) { width: 4px; height: 4px; left: 15%; top: 30%; animation-delay: 0s;   animation-duration: 8s; }
.hero__particle:nth-child(2) { width: 6px; height: 6px; left: 75%; top: 20%; animation-delay: 1.5s; animation-duration: 6s; }
.hero__particle:nth-child(3) { width: 3px; height: 3px; left: 55%; top: 70%; animation-delay: 3s;   animation-duration: 9s; }
.hero__particle:nth-child(4) { width: 5px; height: 5px; left: 30%; top: 80%; animation-delay: 2s;   animation-duration: 7s; }
.hero__particle:nth-child(5) { width: 4px; height: 4px; left: 85%; top: 60%; animation-delay: 4s;   animation-duration: 8s; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding-block: var(--space-20);
  width: 100%;
}

/* Hero content */
.hero__content { color: var(--color-white); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgb(37 99 235 / 0.2);
  border: 1px solid rgb(37 99 235 / 0.4);
  border-radius: var(--radius-full);
  color: var(--color-accent-300);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}

.hero__badge-icon { width: 16px; height: 16px; }
.hero__badge-icon svg { width: 16px; height: 16px; }

.hero__title {
  font-size: clamp(var(--text-4xl), 5.5vw, var(--text-7xl));
  font-weight: var(--font-extrabold);
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}

.hero__subtitle {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-xl));
  color: rgb(255 255 255 / 0.75);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 500px;
}

/* Stats hero */
.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  padding: var(--space-5) var(--space-6);
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
}

.hero__stat { display: flex; flex-direction: column; gap: 2px; }

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-extrabold);
  color: var(--color-accent-300);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: rgb(255 255 255 / 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgb(255 255 255 / 0.15);
  flex-shrink: 0;
}

/* CTAs hero */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* Hero visual */
.hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__visual-card {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero__visual-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semi);
  box-shadow: var(--shadow-blue);
}

.hero__visual-badge svg { width: 14px; height: 14px; }

.hero__img-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 6 / 5;
  background: var(--color-blue);
  box-shadow: var(--shadow-2xl), 0 0 0 1px rgb(255 255 255 / 0.08);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.hero__img:hover { transform: scale(1.03); }

.hero__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img-wrapper--placeholder .hero__img { display: none; }
.hero__img-wrapper:not(.hero__img-wrapper--placeholder) .hero__img-placeholder { display: none; }

.hero__img-placeholder svg { width: 100%; height: 100%; }

/* Cards flutuantes */
.hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  font-size: var(--text-sm);
  font-weight: var(--font-semi);
  color: var(--color-navy);
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

.hero__float-card--1 { bottom: 24px; left: -24px; animation-delay: 0s; }
.hero__float-card--2 { top: 40px; right: -16px; animation-delay: 1.5s; }

.float-card__icon { width: 20px; height: 20px; color: var(--color-accent); }
.float-card__icon svg { width: 20px; height: 20px; }

/* Scroll down */
.hero__scroll-down {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 50%;
  color: var(--color-white);
  animation: bounce-down 2s ease-in-out infinite;
  transition: background var(--transition-fast);
}

.hero__scroll-down:hover { background: rgb(255 255 255 / 0.2); }
.hero__scroll-down svg { width: 20px; height: 20px; }

/* ────────────────────────────────────────────
   SERVIÇOS
   ──────────────────────────────────────────── */
.section--services {
  background: var(--color-gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent-300);
}

/* Card com imagem destacada */
.service-card__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
}

.service-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%);
  position: relative;
  overflow: hidden;
}

.service-card__icon-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgb(37 99 235 / 0.3), transparent 70%);
}

.service-card__icon { width: 32px; height: 32px; color: var(--color-accent-300); position: relative; z-index: 1; }
.service-card__icon svg { width: 32px; height: 32px; }

.service-card__body { flex: 1; padding: var(--space-5); }

.service-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-semi);
  color: var(--color-accent);
  background: var(--color-accent-100);
  padding: 2px var(--space-2);
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-3);
}

.service-card__title {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  line-height: var(--leading-snug);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: var(--leading-normal);
}

.service-card__footer {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
}

.service-card__link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-semi);
  color: var(--color-accent);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card__link:hover { color: var(--color-navy); gap: var(--space-3); }

.service-card__arrow { width: 16px; height: 16px; }
.service-card__arrow svg { width: 16px; height: 16px; }

.services-cta {
  text-align: center;
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.services-cta p {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
}

/* ────────────────────────────────────────────
   SOBRE
   ──────────────────────────────────────────── */
.section--about { background: var(--color-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* Visual / imagem */
.about-visual { position: relative; }

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 7 / 8;
  background: var(--color-blue);
  box-shadow: var(--shadow-2xl);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-placeholder {
  position: absolute;
  inset: 0;
}

.about-img-placeholder svg { width: 100%; height: 100%; }

.about-img-wrapper--placeholder .about-img { display: none; }
.about-img-wrapper:not(.about-img-wrapper--placeholder) .about-img-placeholder { display: none; }

.about-badge {
  position: absolute;
  bottom: var(--space-6);
  right: calc(-1 * var(--space-8));
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-blue);
}

.about-badge__number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  line-height: 1;
}

.about-badge__label {
  font-size: var(--text-xs);
  opacity: 0.9;
  white-space: nowrap;
}

.about-deco {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 160px;
  height: 160px;
  z-index: -1;
  opacity: 0.4;
}

.about-deco__grid {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, var(--color-accent) 1px, transparent 1px);
  background-size: 16px 16px;
}

/* Conteúdo textual */
.about-content__title { margin-bottom: var(--space-5); }
.about-content__text { color: var(--color-gray-600); line-height: var(--leading-relaxed); margin-bottom: var(--space-5); }

.about-checklist { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-8); }

.about-checklist__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-graphite);
}

.about-checklist__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-100);
  border-radius: 50%;
  color: var(--color-accent);
}

.about-checklist__icon svg { width: 12px; height: 12px; }

.about-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }

/* ────────────────────────────────────────────
   MISSÃO / VISÃO / VALORES
   ──────────────────────────────────────────── */
.section--mvv {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-800) 60%, var(--color-blue) 100%);
  position: relative;
  overflow: hidden;
}

.mvv__bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 0% 0%,  rgb(37 99 235 / 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgb(30 58 95 / 0.4) 0%, transparent 50%);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.mvv-card {
  position: relative;
  padding: var(--space-10) var(--space-8);
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-2xl);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mvv-card--blue::before   { background: var(--color-accent); }
.mvv-card--navy::before   { background: var(--color-accent-400); }
.mvv-card--accent::before { background: var(--color-wa-green); }

.mvv-card:hover {
  transform: translateY(-8px);
  background: rgb(255 255 255 / 0.08);
  box-shadow: 0 20px 60px rgb(0 0 0 / 0.3);
}

.mvv-card:hover::before { opacity: 1; }

.mvv-card__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-6);
}

.mvv-card__icon {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  color: var(--color-accent-300);
}

.mvv-card__icon svg { width: 36px; height: 36px; }

.mvv-card__icon-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgb(37 99 235 / 0.3);
  border-radius: 50%;
  animation: pulse-ring 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.mvv-card--navy  .mvv-card__icon { color: var(--color-accent-400); }
.mvv-card--accent .mvv-card__icon { color: #4ade80; }

.mvv-card__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-extrabold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.mvv-card__text {
  font-size: var(--text-sm);
  color: rgb(255 255 255 / 0.7);
  line-height: var(--leading-relaxed);
}

/* ────────────────────────────────────────────
   DIFERENCIAIS
   ──────────────────────────────────────────── */
.section--differentials { background: var(--color-white); }

.diff-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-20);
  align-items: start;
}

/* Stat numbers */
.diff-stats {
  display: flex;
  gap: var(--space-8);
  margin: var(--space-8) 0;
  padding: var(--space-6);
  background: var(--color-gray-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
}

.diff-stat { display: flex; flex-direction: column; gap: 4px; }
.diff-stat strong {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-extrabold);
  color: var(--color-accent);
  line-height: 1;
}
.diff-stat span { font-size: var(--text-xs); color: var(--color-gray-600); text-transform: uppercase; letter-spacing: 0.04em; }

.diff-header__btn { margin-top: var(--space-4); }

/* Items */
.diff-items { display: flex; flex-direction: column; gap: var(--space-6); }

.diff-item {
  display: grid;
  grid-template-columns: auto 56px 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.diff-item:hover {
  border-color: var(--color-accent-300);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.diff-item__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--color-gray-200);
  line-height: 1;
  user-select: none;
  min-width: 48px;
}

.diff-item__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-accent-100);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.diff-item__icon { width: 24px; height: 24px; color: var(--color-accent); }
.diff-item__icon svg { width: 24px; height: 24px; }

.diff-item__content { padding-top: 2px; }

.diff-item__title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.diff-item__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: var(--leading-relaxed);
}

/* ────────────────────────────────────────────
   CTA BANNER
   ──────────────────────────────────────────── */
.section--cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 50%, var(--color-navy-800) 100%);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-20);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-banner__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-banner__bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgb(37 99 235 / 0.2) 0%, transparent 70%);
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-banner__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgb(37 99 235 / 0.2);
  border: 2px solid rgb(37 99 235 / 0.3);
  border-radius: var(--radius-2xl);
  flex-shrink: 0;
}

.cta-banner__icon { width: 40px; height: 40px; color: var(--color-accent-300); }
.cta-banner__icon svg { width: 40px; height: 40px; }

.cta-banner__title {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: var(--font-extrabold);
  color: var(--color-white);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.cta-banner__desc {
  font-size: var(--text-base);
  color: rgb(255 255 255 / 0.75);
  max-width: 500px;
  line-height: var(--leading-relaxed);
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* ────────────────────────────────────────────
   FORMULÁRIO DE CONTATO
   ──────────────────────────────────────────── */
.section--contact { background: var(--color-gray-50); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-12);
  align-items: start;
}

/* Info lateral */
.contact-info {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%);
  color: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-8);
  position: sticky;
  top: calc(var(--header-h) + var(--space-8));
}

.contact-info__title {
  color: var(--color-white);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-8);
}

.contact-info__list { display: flex; flex-direction: column; gap: var(--space-6); margin-bottom: var(--space-8); }

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-info__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgb(255 255 255 / 0.1);
  border-radius: var(--radius-lg);
}

.contact-info__icon { width: 22px; height: 22px; color: var(--color-accent-300); }
.contact-info__icon svg { width: 22px; height: 22px; }

.contact-info__label {
  display: block;
  font-size: var(--text-xs);
  color: rgb(255 255 255 / 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: var(--text-base);
  color: var(--color-white);
  font-weight: var(--font-medium);
  transition: color var(--transition-fast);
}

a.contact-info__value:hover { color: var(--color-accent-300); }

.contact-wa-btn { margin-top: var(--space-2); width: 100%; justify-content: center; }

.contact-hours {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.contact-hours__title {
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: var(--font-semi);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.contact-hours__icon { width: 16px; height: 16px; color: var(--color-accent-300); }
.contact-hours__icon svg { width: 16px; height: 16px; }

.contact-hours p {
  font-size: var(--text-sm);
  color: rgb(255 255 255 / 0.7);
  margin-bottom: var(--space-1);
}

/* Form */
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-200);
}

.contact-form { display: flex; flex-direction: column; gap: var(--space-5); }

.form-row { display: flex; gap: var(--space-5); }
.form-row--2 > * { flex: 1; min-width: 0; }

.form-group { display: flex; flex-direction: column; gap: var(--space-2); }

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--font-semi);
  color: var(--color-graphite);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-required { color: var(--color-error); }

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-graphite);
  background: var(--color-gray-50);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.12);
}

.form-input.is-error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgb(220 38 38 / 0.1);
}

.form-input.is-valid {
  border-color: var(--color-success);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  background-size: 18px;
  padding-right: var(--space-10);
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  display: none;
}

.form-error.is-visible { display: block; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form-privacy {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
}

.form-response {
  display: none;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  text-align: center;
}

.form-response.is-success {
  display: block;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-response.is-error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────── */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
}

.footer-top { padding-block: var(--space-20); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
}

.footer-logo__name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-extrabold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.footer-logo .custom-logo { filter: brightness(0) invert(1); max-height: 48px; width: auto; }

.footer-tagline {
  font-size: var(--text-sm);
  color: rgb(255 255 255 / 0.6);
  line-height: var(--leading-relaxed);
  margin: var(--space-4) 0 var(--space-3);
}

.footer-legal-line {
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.4);
  margin-bottom: var(--space-1);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.08);
  color: rgb(255 255 255 / 0.6);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer-social__link:hover {
  background: var(--color-accent);
  color: #fff;
}

.footer-whatsapp { margin-top: var(--space-5); }

.footer-col__title {
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: var(--font-semi);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }

.footer-links li a {
  font-size: var(--text-sm);
  color: rgb(255 255 255 / 0.65);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--color-accent-300);
  padding-left: var(--space-2);
}

.footer-contact { display: flex; flex-direction: column; gap: var(--space-4); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.footer-contact__icon { width: 18px; height: 18px; color: var(--color-accent-300); flex-shrink: 0; margin-top: 2px; }
.footer-contact__icon svg { width: 18px; height: 18px; }

.footer-contact a,
.footer-contact span {
  font-size: var(--text-sm);
  color: rgb(255 255 255 / 0.7);
  line-height: var(--leading-normal);
  transition: color var(--transition-fast);
}

.footer-contact a:hover { color: var(--color-accent-300); }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.08);
  padding-block: var(--space-6);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: var(--text-sm);
  color: rgb(255 255 255 / 0.5);
}

.footer-copy a:hover { color: var(--color-accent-300); }

.footer-legal {
  font-size: var(--text-xs);
  color: rgb(255 255 255 / 0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ────────────────────────────────────────────
   WHATSAPP FLUTUANTE
   ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-wa-green);
  color: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 24px rgb(37 211 102 / 0.5);
  transition: all var(--transition-base);
  cursor: pointer;
}

.whatsapp-float:hover {
  padding-right: var(--space-6);
  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 40px rgb(37 211 102 / 0.6);
  transform: translateY(-3px);
}

.whatsapp-float__icon { width: 28px; height: 28px; flex-shrink: 0; }
.whatsapp-float__icon svg { width: 28px; height: 28px; }

.whatsapp-float__tooltip {
  font-size: var(--text-sm);
  font-weight: var(--font-semi);
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width var(--transition-base), opacity var(--transition-base);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  max-width: 120px;
  opacity: 1;
}

/* Pulso animado */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--color-wa-green);
  opacity: 0.35;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* ────────────────────────────────────────────
   SCROLL TO TOP
   ──────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: var(--space-8);
  left: var(--space-8);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all var(--transition-base);
}

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

.scroll-top:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

.scroll-top svg { width: 20px; height: 20px; }

/* ────────────────────────────────────────────
   TEMPLATES INTERNOS (page / single / index)
   ──────────────────────────────────────────── */
.main-content {
  padding-top: var(--header-h);
  min-height: 60vh;
}

.page-content__banner {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-8);
}

.page-content__title,
.single-content__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  margin-bottom: var(--space-4);
}

.single-content__meta {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  margin-bottom: var(--space-4);
}

.entry-content {
  max-width: 72ch;
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-graphite);
}

.entry-content h2,
.entry-content h3 { color: var(--color-navy); margin: var(--space-8) 0 var(--space-4); }
.entry-content p  { margin-bottom: var(--space-5); }
.entry-content ul,
.entry-content ol { padding-left: var(--space-6); margin-bottom: var(--space-5); }
.entry-content li { margin-bottom: var(--space-2); }
.entry-content a  { color: var(--color-accent); text-decoration: underline; }
.entry-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-6);
  margin: var(--space-6) 0;
  color: var(--color-gray-600);
  font-style: italic;
}

/* Posts grid (index) */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.post-card {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.post-card__img-link { display: block; }
.post-card__img { width: 100%; height: 220px; object-fit: cover; }
.post-card__body { padding: var(--space-6); }
.post-card__date { font-size: var(--text-xs); color: var(--color-gray-400); display: block; margin-bottom: var(--space-2); }
.post-card__title { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.post-card__title a:hover { color: var(--color-accent); }
.post-card__excerpt { font-size: var(--text-sm); color: var(--color-gray-600); margin-bottom: var(--space-4); }

/* Breadcrumbs */
.breadcrumbs {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  margin-bottom: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumbs a { color: var(--color-accent); }
.breadcrumbs a:hover { text-decoration: underline; }

/* Pagination */
.pagination { margin-top: var(--space-8); }
.pagination .nav-links { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-3);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  transition: all var(--transition-fast);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* ────────────────────────────────────────────
   ANIMAÇÕES
   ──────────────────────────────────────────── */

/* Partículas hero */
@keyframes float-particle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  20%       { opacity: 0.6; }
  80%       { opacity: 0.3; }
  50%       { opacity: 0.8; transform: translateY(-40px) scale(1.2); }
}

/* Float cards hero */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Seta bounce hero */
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

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

/* Pulse ring MVV */
@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 0.8; }
  50%  { transform: scale(1.15); opacity: 0.3; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* Pulse glow WhatsApp */
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50%       { transform: scale(1.35); opacity: 0; }
}

/* Scroll reveal */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"]   { transform: translateY(24px); }
[data-animate="fade-right"]{ transform: translateX(-32px); }
[data-animate="fade-left"] { transform: translateX(32px); }

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

/* ────────────────────────────────────────────
   HERO NORMS (usados no preview e no tema)
   ──────────────────────────────────────────── */
.hero__norms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.hero__norm-badge {
  padding: 3px var(--space-3);
  background: rgb(37 99 235 / 0.15);
  border: 1px solid rgb(37 99 235 / 0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-accent-300);
  font-weight: var(--font-semi);
}

/* ────────────────────────────────────────────
   RESPONSIVO
   ──────────────────────────────────────────── */

/* ≤ 1280px */
@media (max-width: 1280px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-grid .footer-col--brand { grid-column: 1; }
  .diff-layout   { gap: var(--space-12); }
}

/* ≤ 1024px */
@media (max-width: 1024px) {
  :root { --section-py: var(--space-20); }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
  }
  .hero__content        { display: flex; flex-direction: column; align-items: center; }
  .hero__badge          { align-self: center; }
  .hero__subtitle       { margin-inline: auto; max-width: 560px; }
  .hero__norms          { justify-content: center; }
  .hero__stats          { justify-content: center; width: 100%; }
  .hero__ctas           { justify-content: center; }
  .hero__visual         { justify-content: center; }
  .hero__visual-card    { max-width: 480px; }

  .about-grid    { grid-template-columns: 1fr; }
  .about-visual  { order: -1; }
  .about-badge   { right: var(--space-6); }

  .mvv-grid      { grid-template-columns: 1fr 1fr; }

  .diff-layout   { grid-template-columns: 1fr; }
  .diff-header   { position: static; }

  .cta-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-banner__icon-wrap { margin-inline: auto; }
  .cta-banner__desc { margin-inline: auto; }
  .cta-banner__actions { flex-direction: row; justify-content: center; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-info   { position: static; }

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

  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
}

/* ≤ 768px */
@media (max-width: 768px) {
  :root {
    --section-py: var(--space-14);
    --header-h:   64px;
  }

  /* Header mobile */
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgb(10 22 40 / 0.98);
    backdrop-filter: blur(16px);
    padding: var(--space-4) var(--space-6) var(--space-6);
    border-top: 1px solid rgb(255 255 255 / 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base);
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav__menu { flex-direction: column; gap: var(--space-1); }
  .site-nav__menu li a { padding: var(--space-3) var(--space-4); font-size: var(--text-base); border-radius: var(--radius-lg); }

  .site-header__actions .btn--whatsapp { display: none; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr; }
  .mvv-grid      { grid-template-columns: 1fr; }

  /* Hero mobile — tudo centralizado */
  .hero__inner {
    text-align: center;
    padding-block: var(--space-12) var(--space-8);
  }
  .hero__content        { align-items: center; }
  .hero__badge          { font-size: var(--text-xs); padding: var(--space-2) var(--space-3); max-width: 90vw; text-align: center; }
  .hero__title          { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero__subtitle       { font-size: var(--text-base); max-width: 100%; }
  .hero__norms          { justify-content: center; }
  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-4) var(--space-6);
    padding: var(--space-4);
  }
  .hero__stat-divider   { display: none; }
  .hero__stat           { text-align: center; min-width: 80px; }
  .hero__ctas           { flex-direction: column; align-items: center; width: 100%; }
  .hero__ctas .btn      { width: 100%; justify-content: center; max-width: 320px; }
  .hero__visual         { display: none; } /* oculta visual em telas pequenas */

  .diff-item { grid-template-columns: auto 1fr; }
  .diff-item__number { display: none; }

  .form-row--2 { flex-direction: column; }

  .contact-form-wrap { padding: var(--space-6); }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom__inner { flex-direction: column; text-align: center; }

  .about-badge { right: var(--space-4); bottom: var(--space-4); }

  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; max-width: 320px; }

  .whatsapp-float { bottom: var(--space-6); right: var(--space-4); }
  .scroll-top     { bottom: var(--space-6); left: var(--space-4); width: 36px; height: 36px; }

  /* Diff stats empilhados */
  .diff-stats { flex-wrap: wrap; gap: var(--space-4); }
}

/* ≤ 480px */
@media (max-width: 480px) {
  .container { padding-inline: var(--space-4); }

  /* Hero */
  .hero__badge { max-width: calc(100vw - var(--space-8)); flex-wrap: wrap; justify-content: center; line-height: 1.4; }
  .hero__title { font-size: clamp(1.6rem, 8vw, 2.25rem); }
  .hero__stats { gap: var(--space-3) var(--space-4); }
  .hero__stat-number { font-size: var(--text-xl); }

  /* Header logo compacto */
  .logo-main { font-size: var(--text-lg); }
  .logo-sub  { font-size: 10px; }

  /* About */
  .about-badge {
    right: var(--space-2);
    padding: var(--space-3) var(--space-4);
  }
  .about-badge__number { font-size: var(--text-2xl); }

  /* Contact */
  .contact-info { padding: var(--space-5); }

  /* CTA banner */
  .cta-banner__title { font-size: var(--text-2xl); }

  /* Footer */
  .footer-logo__name { font-size: var(--text-xl); }
}

/* Redução de movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1; transform: none; }
}
