/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS — Mesquita Ambiental
   Paleta: petróleo profundo (identidade/marca) + verde
   (ação/CTA) + neutros frios para texto e superfícies.
   Tipografia: Fraunces (display/editorial) + Inter (corpo/UI)
   Assinatura visual: hero diagonal com malha de partículas
═══════════════════════════════════════════════════════════ */

/* ── FONTES LOCAIS (variable fonts — substituem o Google Fonts) ── */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-italic-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
}

@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-italic-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
}

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

:root {
  /* ── COLORS · Primary (petróleo — marca, hero, footer) ── */
  --color-primary: #1B4F5A;
  --color-primary-hover: #236878;
  --color-primary-light: #2E8599;
  --color-primary-tint: #E4F2F5;

  /* ── COLORS · Accent (verde — CTA, ações principais) ──── */
  --color-accent: #1E7E45;
  --color-accent-hover: #34D67A;
  --color-accent-tint: #EAFAF1;
  --btn-hover-dark: #17643A;

  /* ── COLORS · Text ─────────────────────────────────────── */
  --color-text: #111820;
  /* texto principal */
  --color-text-secondary: #4A5568;
  /* texto de apoio */
  --color-text-tertiary: #8A97A8;
  /* texto terciário, placeholders */

  /* ── COLORS · Surface ──────────────────────────────────── */
  --color-bg: #F8FAFB;
  /* fundo base da página */
  --color-surface: #F0F4F6;
  /* seções alternadas */
  --color-white: #FFFFFF;
  --color-border: rgba(17, 24, 32, 0.08);

  /* ── GRADIENTS ─────────────────────────────────────────── */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, #0D2E3D 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);

  /* ── TYPOGRAPHY ────────────────────────────────────────── */
  --font-heading: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  /* ── LAYOUT ────────────────────────────────────────────── */
  --container-max: 1280px;

  /* ── TRANSITIONS ───────────────────────────────────────── */
  --transition-curve: cubic-bezier(0.22, 1, 0.36, 1);
  /* curva usada em toda a UI */
  --transition-fast: 150ms var(--transition-curve);
  --transition-base: 300ms var(--transition-curve);
  --transition-slow: 500ms var(--transition-curve);

  /* ── SPACING ───────────────────────────────────────────── */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-16: 8rem;
  --space-20: 10rem;

  /* ── BORDER RADIUS ─────────────────────────────────────── */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;

  /* ── SHADOWS ───────────────────────────────────────────── */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-2xl: 0 40px 60px -20px rgba(0, 0, 0, 0.3);
  --shadow-primary: 0 20px 60px rgba(27, 79, 90, 0.15);
  /* sombra tingida de --color-primary */
  --shadow-accent: 0 20px 60px rgba(39, 174, 96, 0.15);
  /* sombra tingida de --color-accent */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5%;
}

/* ══ CURSOR GLOW ═══════════════════════════════ */
#glow {
  pointer-events: none;
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 77, 44, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity .4s;
  opacity: 0;
}

/* ══ FEATURED IMAGE ═══════════════════════════════ */
.featured-image {
  margin: 0 0 var(--space-8);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-image figcaption {
  padding: var(--space-3);
  font-size: 0.875rem;
  font-style: italic;
  text-align: center;
}

/* ══ NAV ═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  background: rgba(245, 242, 235, 0.97);
  backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .4s var(--transition-curve);
}

nav.scrolled {
  box-shadow: 0 4px 32px rgba(27, 79, 90, 0.08);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--transition-curve);
}

.logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.05);
}

.logo-mark svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-text span {
  font-size: 0.68rem;
  color: var(--color-text-secondary);
  font-weight: 400;
  letter-spacing: 0.05em;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

nav ul a {
  text-decoration: none;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
}

nav ul a:hover {
  color: var(--color-primary);
  background: var(--color-primary-tint);
}

.nav-cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 0.5rem 1.3rem !important;
  box-shadow: 0 8px 28px rgba(29, 184, 99, 0.40);
  transition: background .25s, transform .2s var(--transition-curve), box-shadow .2s !important;
}

.nav-cta:hover {
  background: var(--btn-hover-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 14px 36px rgba(29, 184, 99, 0.50) !important;
}



/* ── Hamburger ───────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  transition: background .2s;
  z-index: 210;
}

.hamburger:hover {
  background: var(--color-primary-tint);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .35s var(--transition-curve), opacity .25s, width .3s var(--transition-curve);
  transform-origin: center;
}

/* X state */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu drawer ──────────────────────── */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(248, 250, 251, 0.97);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 5% 1.5rem;
    transform: translateX(110%);
    opacity: 0;
    transition: transform .8s var(--transition-curve), opacity .3s var(--transition-curve);
    pointer-events: none;
  }

  nav ul.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }

  nav ul li {
    border-bottom: 1px solid var(--color-border);
  }

  nav ul li:last-child {
    border-bottom: none;
    margin-top: 0.75rem;
  }

  nav ul a {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 1rem;
    border-radius: 0;
    transition: color .2s, padding-left .3s var(--transition-curve);
  }

  nav ul a:hover {
    background: transparent;
    padding-left: 1.5rem;
    color: var(--color-primary);
  }

  .nav-cta {
    display: block;
    text-align: center;
    padding: 0.85rem 1rem !important;
    border-radius: 10px !important;
  }
}

/* ========== DROPDOWN MENU ========== */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--transition-curve);
  flex-shrink: 0;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: #fff;
  min-width: 280px;
  padding: 0.5rem 0;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--transition-curve);
  z-index: 999;
  list-style: none;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}

.dropdown:hover>.dropdown-menu,
.dropdown.active>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: var(--color-primary-tint);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  padding-left: 1.75rem;
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(17, 24, 32, 0.04);
    border-radius: 0;
    display: none;
    min-width: 100%;
    padding: 0;
    border: none;
    border-left: 2px solid var(--color-primary);
    margin-left: 0.5rem;
    margin-top: 0;
    pointer-events: auto;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown-menu li a {
    padding: 0.85rem 1.25rem 0.85rem 1.5rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
  }

  .dropdown-menu li:last-child a {
    border-bottom: none;
  }

  .dropdown-menu li a:hover {
    background: var(--color-primary-tint);
    color: var(--color-primary);
    padding-left: 1.75rem;
  }
}


/* ══ HERO ══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* centraliza vertical e horizontal */
  overflow: hidden;
  background: var(--color-primary);
  padding-top: 68px;
  background-image: url("/assets/img/home/mesquita-ambiental-hero-lab.webp");
  background-size: cover;
  background-position: 80% center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(17, 73, 83, 1) 0%,
      rgba(17, 73, 83, .95) 15%,
      rgba(17, 73, 83, .85) 30%,
      rgba(17, 73, 83, .70) 60%,
      rgba(17, 73, 83, .60) 80%,
      rgba(17, 73, 83, .30) 100%),

    linear-gradient(180deg,
      rgba(0, 0, 0, .10) 0%,
      rgba(0, 0, 0, .38) 100%);

  z-index: 1;
}

/* Organic mesh background */
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
}

/* Diagonal cream slice at bottom */
#hero::after {
   content: none;
}

/* Container centralizado */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 800px;
  /* limita largura para leitura confortável */
  margin: 0 auto;
  padding: 6rem 5% 10rem;
  width: 100%;
  text-align: center;
  /* centraliza todo o texto */
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
  margin-bottom: 1.8rem;
  animation: fadeUp .8s var(--transition-curve) .1s both;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--color-accent);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

/* Título */
h1.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4.5vw, 3.125rem);
  /* mín 30px, máx 50px */
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.6rem;
  letter-spacing: -0.025em;
  animation: fadeUp .9s var(--transition-curve) .3s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.3);
}

h1.hero-title em {
  font-style: italic;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 2px 20px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.3);
}

/* Subtítulo */
.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.8rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp .9s var(--transition-curve) .35s both;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

/* Botões centralizados */
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  /* centraliza os botões */
  flex-wrap: wrap;
  animation: fadeUp .9s var(--transition-curve) .5s both;
}

/* Botão primário */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--color-accent);
  color: #fff;
  padding: 0.95rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 28px rgba(29, 184, 99, 0.40);
  transition: background .25s, transform .3s var(--transition-curve), box-shadow .3s;
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.btn-primary:hover {
  background: var(--btn-hover-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(29, 184, 99, 0.50);
}

/* Botão ghost */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color .25s, border-color .25s;
}

.btn-ghost:hover {
  color: #fff;
  border-color: var(--color-accent);
}

.btn-ghost svg {
  width: 14px;
  height: 14px;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 4;
  animation: fadeIn 1s var(--transition-curve) 1.2s both;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  position: relative;
}

.mouse::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) translateY(9px);
    opacity: .3;
  }
}

/* Animações auxiliares */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ══ STATS STRIP ═══════════════════════════════ */
#stats {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 1rem 2rem;
  border-right: 1px solid var(--color-border);
  text-align: center;
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* ══ SECTION COMMONS ════════════════════════════ */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-hover);
  margin-bottom: 1rem;
}

.sec-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--color-primary-hover);
}

h2.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

h2.sec-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-primary-hover);
}

.sec-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 540px;
}

/* ══ TRUST / BLOCO 2 ════════════════════════════ */
#confianca {
  padding: 6rem 0;
  background: var(--color-bg);
}

#confianca .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* Left column — text only */
/*.trust-left {}*/

/* Right column — green card with stats */
.trust-right {
  position: relative;
}

.trust-visual {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D2E3D 100%);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.trust-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200, 149, 42, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(107, 203, 119, 0.1) 0%, transparent 45%);
}

.tv-inner {
  position: relative;
  z-index: 1;
}

.tv-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
  margin-bottom: 1.5rem;
}

/* Cards grid inside green box */
.tv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tv-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.4rem;
  backdrop-filter: blur(12px);
  transition: background .3s, transform .3s var(--transition-curve), border-color .3s;
}

.tv-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.tv-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200, 149, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.tv-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent-hover);
  fill: none;
  stroke-width: 1.5;
}

.tv-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.tv-card-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* ══ RESPONSIVE ═════════════════════════════════ */
@media (max-width: 1024px) {
  #confianca .wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .trust-left {
    text-align: center;
  }

  .sec-body {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .tv-cards {
    grid-template-columns: 1fr;
  }

  .trust-visual {
    padding: 1.8rem;
    box-shadow: 0 30px 80px rgba(27, 79, 90, 0.25);
  }
}

/* ══ TRUST STRIP — Credenciais e Prova Social ══════════ */
.trust-strip {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-strip-item {
  padding: 0 2rem;
  border-right: 1px solid var(--color-border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-strip-item:last-child {
  border-right: none;
}

.trust-strip-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-accent);
  transition: background 0.3s, transform 0.3s var(--transition-curve);
}
.trust-strip-icon svg {
  width: 24px;
  height: 24px;
}
.trust-strip-item:hover .trust-strip-icon {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}

.trust-strip-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.trust-strip-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 220px;
}

/* ══ RESPONSIVE ═════════════════════════════════════════ */
@media (max-width: 900px) {
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 0;
  }
  .trust-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2rem;
  }
  .trust-strip-item:nth-child(2n) {
    border-right: none;
  }
  .trust-strip-item:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 560px) {
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip-item {
    border-bottom: 1px solid var(--color-border);
    padding: 0 0 2rem;
  }
  .trust-strip-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ══ SERVIÇOS — ESTILO PILARES ══════════════════ */
#servicos {
  padding: 6rem 0;
  background: linear-gradient(160deg, #1B4F5A 0%, #123842 100%);
  position: relative;
  overflow: hidden;
}

#servicos::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

#servicos::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

#servicos .wrap {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5%;
}

/* Header */
.servicos-header {
  text-align: center;
  margin-bottom: 4rem;
}

.servicos-header .sec-tag {
  color: var(--color-accent-hover);
  justify-content: center;
}

.servicos-header .sec-tag::before {
  background: var(--color-accent-hover);
}

.servicos-header h2.sec-title {
  color: #fff;
  margin-bottom: 1rem;
}

.servicos-header h2.sec-title em {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-weight: 300;
}

.servicos-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ══ SERVIÇOS — GRID DE CARDS ═══════════════════ */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.servico-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--transition-curve), box-shadow 0.4s var(--transition-curve), background 0.4s;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.servico-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.servico-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--transition-curve);
}

.servico-card:hover .servico-card-img img {
  transform: scale(1.06);
}

.servico-card-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.3rem 0.75rem;
  background: rgba(13, 46, 61, 0.75);
  backdrop-filter: blur(6px);
  color: var(--color-accent-hover);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: 1px solid rgba(200, 149, 42, 0.3);
}

.servico-card-content {
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.servico-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.servico-card-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.4rem;
  flex: 1;
}

.servico-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.7rem 1.3rem;
  border-radius: 9px;
  transition: background 0.25s, transform 0.25s var(--transition-curve), box-shadow 0.25s;
  box-shadow: 0 6px 22px rgba(29, 184, 99, 0.35);
}

.servico-card-cta:hover {
  background: var(--btn-hover-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(29, 184, 99, 0.45);
}

/* Responsivo */
@media (max-width: 1100px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}

/* ══ SETORES ════════════════════════════════════ */
#setores {
  padding: 6rem 0;
  background: var(--color-bg);
}

.setores-header {
  text-align: center;
  margin-bottom: 3rem;
}

.setores-header .sec-tag {
  justify-content: center;
}

.setores-header .sec-tag::before {
  display: none;
}

.setores-header h2.sec-title {
  text-align: center;
  margin-bottom: 0.75rem;
}

.setores-header p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0 auto;
  max-width: 480px;
  text-align: center;
}

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

.setor-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  cursor: default;
  transition: border-color .3s, transform .3s var(--transition-curve), box-shadow .3s, background .3s;
  position: relative;
  overflow: hidden;
}

.setor-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary-tint) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
}

.setor-card:hover {
  border-color: var(--color-primary-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 77, 44, 0.1);
}

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

.setor-card.cta-card {
  background: linear-gradient(135deg, #1E8449 0%, #145A32 100%);
  border-color: transparent;
  grid-column: span 2;
  position: relative;
  overflow: hidden;
}

.setor-card.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {

  0%,
  100% {
    box-shadow: 0 20px 50px rgba(39, 174, 96, 0.15);
  }

  50% {
    box-shadow: 0 20px 60px rgba(39, 174, 96, 0.35);
  }
}

.setor-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary-tint);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
  position: relative;
  z-index: 1;
}

.setor-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
}

.setor-card:hover .setor-ico {
  background: var(--color-primary-hover);
}

.setor-card:hover .setor-ico svg {
  stroke: #fff;
}

.setor-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.setor-card p {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.setor-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary-hover);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
  transition: gap .25s var(--transition-curve);
}

.setor-link:hover {
  gap: 0.55rem;
}

.setor-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.cta-card .setor-ico {
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 1;
}

.cta-card .setor-ico svg {
  stroke: #FFFFFF;
}

.cta-card h3 {
  color: #fff;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.85);
}

.cta-card .setor-link {
  color: #fff;
  font-weight: 700;
}

/* ══ DIFERENCIAIS / BLOCO 5 ════════════════════ */
#diferenciais {
  padding: 6rem 0;
  background: linear-gradient(160deg, var(--color-accent-tint) 0%, var(--color-surface) 100%);
}

.diferenciais-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.diferenciais-header .sec-tag {
  justify-content: center;
}

.diferenciais-header .sec-tag::before {
  display: none;
}

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

.dif-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--transition-curve);
}

.dif-card:hover {
  border-color: var(--color-primary-hover);
  box-shadow: 0 12px 32px rgba(11, 77, 44, 0.07);
  transform: translateY(-3px);
}

/* Número começa com cor pálida (já existe) */
.dif-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-tertiary);
  line-height: 1;
  margin-bottom: 0.75rem;
  user-select: none;
  transition: color .3s;
  /* ← ADICIONE: transição suave */
}

.dif-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.dif-card p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}


/* No hover do card, o número muda de cor */
.dif-card:hover .dif-num {
  color: var(--color-primary-hover);
  /* ← ADICIONE: mesma cor do hover do arquivo 2 */
}

/* ══ FAQ ════════════════════════════════════════ */
#faq {
  padding: 6rem 0;
  background: var(--color-bg);
}

#faq .wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

/*.faq-left {}*/
.faq-left .sec-body {
  margin-top: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  font-family: var(--font-body);
}

.faq-q span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  transition: color .2s;
}

.faq-q:hover span {
  color: var(--color-primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, transform .3s var(--transition-curve);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-text-secondary);
  fill: none;
  stroke-width: 2;
  transition: transform .3s var(--transition-curve);
}

.faq-item.open .faq-icon {
  background: var(--color-primary-tint);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  stroke: var(--color-primary);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .8s var(--transition-curve), padding .3s;
}

.faq-a p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  padding-bottom: 1.3rem;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

/* ══ CTA SECTION ════════════════════════════════ */
#cta-final {
  padding: 6rem 0;
  background: linear-gradient(160deg, #0D2E3D 0%, #061B24 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(39,174,96,0.12) 0%, transparent 55%);
  pointer-events: none;
}

#cta-final::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner .sec-tag {
  color: var(--color-accent-hover);
  justify-content: center;
}

.cta-inner .sec-tag::before {
  background: var(--color-accent-hover);
  display: none;
}

.cta-inner h2.sec-title {
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.cta-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transition: transform .25s var(--transition-curve), box-shadow .25s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
}

.btn-white svg {
  width: 17px;
  height: 17px;
  stroke: var(--color-primary-hover);
  fill: none;
  stroke-width: 2;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: border-color .25s, color .25s, transform .25s var(--transition-curve);
}

.btn-outline-white:hover {
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ── CTA FINAL — variante clara ────────────────────────────
   .cta-final--light → sobrescreve o fundo escuro padrão do
   #cta-final (base.css) para um fundo claro, usado quando a
   seção anterior já é escura (evita dois blocos escuros
   consecutivos no scroll). Mantém a mesma estrutura e força
   visual do CTA, só invertendo o esquema de cor. */
#cta-final.cta-final--light {
  background: var(--color-surface);
}

#cta-final.cta-final--light::before {
  background: radial-gradient(ellipse at 30% 30%, rgba(39,174,96,0.08) 0%, transparent 55%);
}

#cta-final.cta-final--light::after {
  opacity: 0.05;
}

#cta-final.cta-final--light .sec-tag {
  color: var(--color-primary-hover);
}

#cta-final.cta-final--light .sec-tag::before {
  background: var(--color-primary-hover);
  display: block;
}

#cta-final.cta-final--light .cta-inner h2.sec-title {
  color: var(--color-text);
}

#cta-final.cta-final--light .cta-inner p {
  color: var(--color-text-secondary);
}

#cta-final.cta-final--light .btn-white {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 28px rgba(39,174,96,0.35);
}
#cta-final.cta-final--light .btn-white:hover {
  background: var(--btn-hover-dark);
  box-shadow: 0 14px 38px rgba(39,174,96,0.45);
}
#cta-final.cta-final--light .btn-white svg {
  stroke: #fff;
}

#cta-final.cta-final--light .btn-outline-white {
  color: var(--color-primary);
  border-color: var(--color-border);
}
#cta-final.cta-final--light .btn-outline-white:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-tint);
  color: var(--color-primary-hover);
}

/* ══ CONTATO ════════════════════════════════════ */
#contato {
  padding: 6rem 0;
  background: var(--color-surface);
}

#contato .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/*.contato-left {}*/
.c-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.c-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: border-color .3s, transform .3s var(--transition-curve);
}

.c-item:hover {
  border-color: var(--color-primary-hover);
  transform: translateX(4px);
}

.c-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary-tint);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.c-item:hover .c-ico {
  background: var(--color-primary-hover);
}

.c-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
  transition: stroke .3s;
}

.c-item:hover .c-ico svg {
  stroke: #fff;
}

.c-det strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.c-det span {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

.form-wrap {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.8rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.f-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.f-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

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

input,
textarea,
select {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  border-radius: 9px;
  width: 100%;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-tertiary);
}

input:focus,
textarea:focus {
  border-color: var(--color-primary-hover);
  box-shadow: 0 0 0 3px rgba(26, 122, 74, 0.1);
}

textarea {
  height: 120px;
  resize: vertical;
}

.btn-form {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 9px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background .25s, transform .3s var(--transition-curve), box-shadow .3s;
  box-shadow: 0 4px 18px rgba(29, 184, 99, 0.40);
  letter-spacing: 0.02em;
}

.btn-form svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.btn-form:hover {
  background: var(--btn-hover-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(29, 184, 99, 0.50);
}

/* ══ FOOTER ════════════════════════════════════ */
footer {
  background: #0D1B2A;
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.f-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.f-brand-logo .logo-mark {
  background: var(--color-primary-hover);
}

.f-brand-logo .logo-text strong {
  color: #fff;
}

.f-brand-logo .logo-text span {
  color: rgba(255, 255, 255, 0.6);
}

.f-brand>p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.f-social {
  display: flex;
  gap: 0.6rem;
}

.f-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, transform .3s var(--transition-curve);
}

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

.f-social svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.6);
  fill: none;
  stroke-width: 1.5;
}

.f-col h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.2rem;
}

.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.f-col ul a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}

.f-col ul a:hover {
  color: var(--color-accent-hover);
  padding-left: 4px;
}

.fc-item {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.fc-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.48);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ══ WHATSAPP FLOAT ════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #075E54;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.8rem 1.4rem 0.8rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(7, 94, 84, 0.45);
  transition: transform .3s var(--transition-curve), box-shadow .3s;
  animation: fadeUp .8s var(--transition-curve) 1.5s both;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(7, 94, 84, 0.55);
}

.wa-float svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* ══ ANIMATIONS ═════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--transition-curve), transform .7s var(--transition-curve);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

.stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--transition-curve), transform .6s var(--transition-curve);
}

.stagger.in>*:nth-child(1) {
  transition-delay: 0s;
}

.stagger.in>*:nth-child(2) {
  transition-delay: .08s;
}

.stagger.in>*:nth-child(3) {
  transition-delay: .16s;
}

.stagger.in>*:nth-child(4) {
  transition-delay: .24s;
}

.stagger.in>*:nth-child(5) {
  transition-delay: .32s;
}

.stagger.in>*:nth-child(6) {
  transition-delay: .40s;
}

.stagger.in>*:nth-child(7) {
  transition-delay: .48s;
}

.stagger.in>*:nth-child(8) {
  transition-delay: .56s;
}

.stagger.in>* {
  opacity: 1;
  transform: none;
}

/* ══ RESPONSIVE ═════════════════════════════════ */
@media (max-width: 1100px) {

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

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

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

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  #confianca .wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  #faq .wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  #contato .wrap {
    grid-template-columns: 1fr;
  }

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

  .footer-top .f-brand {
    grid-column: 1 / -1;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 4rem 5% 8rem;
  }

  h1.hero-title {
    font-size: 2.1rem;
  }

  .servicos-grid,
  .servicos-grid-2 {
    grid-template-columns: 1fr;
  }

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

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

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

  .f-row {
    grid-template-columns: 1fr;
  }

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

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

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .wa-float span {
    display: none;
  }

  .wa-float {
    padding: 0.9rem;
  }

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

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* ══ SECTION / SECTION HEAD (movido de pages.css — usado também na Home) ══ */
.section { padding: var(--space-12) 0; background: var(--color-bg); }
.section--alt { background: var(--color-surface); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-8);
}
.section-head .sec-tag { justify-content: center; }
.section-head .sec-tag::before { display: none; }
.section-head .sec-body { margin: 0 auto; }

/* ══ CARD GRID / ICON CARD (movido de pages.css — usado também na Home) ══ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
}
.card-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.icon-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}
.icon-card:hover {
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-primary);
  transform: translateY(-4px);
}
.icon-card-ico {
  width: 46px; height: 46px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
  transition: background var(--transition-base);
}
.icon-card:hover .icon-card-ico { background: var(--color-primary); }
.icon-card-ico svg { width: 21px; height: 21px; stroke: var(--color-primary); fill: none; stroke-width: 1.5; transition: stroke var(--transition-base); }
.icon-card:hover .icon-card-ico svg { stroke: var(--color-white); }
.icon-card-ico--num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
}
.icon-card:hover .icon-card-ico--num { color: var(--color-white); }
.icon-card h3, .icon-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.icon-card p { font-size: 0.875rem; color: var(--color-text-secondary); line-height: 1.65; margin: 0; }
.icon-card { text-decoration: none; display: block; }