/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --blue-dark:  #0B1D33;
  --blue-mid:   #163554;
  --blue-light: #1E4D7B;
  --amber:      #F4A30A;
  --amber-dark: #C47F00;
  --white:      #FFFFFF;
  --off-white:  #F0F4F8;
  --gray-light: #E2E8F0;
  --gray-mid:   #94A3B8;
  --gray-text:  #475569;
  --nav-h:      72px;
}

/* ═══════════════════════════════════════════
   BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--blue-dark);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  transition: background .4s, box-shadow .4s;
}
nav.scrolled {
  background: var(--blue-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .08em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 9px;
  color: var(--amber);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta {
  background: var(--amber);
  color: var(--blue-dark) !important;
  padding: 9px 20px;
  border-radius: 5px;
  font-weight: 700 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--amber-dark) !important; color: var(--white) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--blue-dark);
  padding: 24px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  border-top: 2px solid var(--amber);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--blue-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(255,255,255,.018) 40px, rgba(255,255,255,.018) 41px
  );
}
.hero-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(244,163,10,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-glow-2 {
  position: absolute;
  bottom: -300px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,77,123,.4) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 100vh;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--amber);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .95;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.hero-title span { color: var(--amber); }
.hero-sub {
  font-size: 16px;
  color: var(--gray-mid);
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--blue-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--amber); background: rgba(244,163,10,.08); }
.hero-stats { display: flex; gap: 36px; }
.hero-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--amber);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 11px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 3px;
}

/* Hero right — logo centralizada + badges abaixo */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap img {
  width: 280px;
  filter: drop-shadow(0 20px 60px rgba(244,163,10,.25));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Badges em linha abaixo da logo */
.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
}
.hero-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
}
.hero-badge-icon { font-size: 20px; flex-shrink: 0; }
.hero-badge-text { font-size: 13px; font-weight: 600; color: var(--white); }
.hero-badge-sub  { font-size: 11px; color: var(--gray-mid); margin-top: 2px; }

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gray-mid);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-mid), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════ */
section { position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 72px 0; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--amber); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: .02em;
  line-height: 1;
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.section-title-white { color: var(--white); }
.section-sub { font-size: 15px; color: var(--gray-text); line-height: 1.7; max-width: 560px; }
.section-sub-white { color: var(--gray-mid); }

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
#trust { background: var(--amber); padding: 18px 0; overflow: hidden; }
.trust-track {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-dark);
  flex-shrink: 0;
}
.trust-dot { width: 5px; height: 5px; background: var(--blue-dark); border-radius: 50%; opacity: .4; }

/* ═══════════════════════════════════════════
   SOBRE
═══════════════════════════════════════════ */
#sobre { background: var(--white); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-visual { position: relative; }
.sobre-img-wrap {
  background: var(--blue-dark);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sobre-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,.02) 20px, rgba(255,255,255,.02) 21px);
}
.sobre-accent-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--amber);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(244,163,10,.3);
}
.sobre-accent-card .num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: var(--blue-dark); line-height: 1; }
.sobre-accent-card .lbl { font-size: 11px; font-weight: 700; color: var(--blue-dark); text-transform: uppercase; letter-spacing: .08em; }
.sobre-nr-badge {
  position: absolute;
  top: -16px; left: -16px;
  background: var(--blue-mid);
  border: 2px solid var(--amber);
  border-radius: 8px;
  padding: 12px 16px;
}
.sobre-nr-badge span { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; color: var(--amber); letter-spacing: .1em; display: block; }
.sobre-text { font-size: 15px; color: var(--gray-text); line-height: 1.8; margin-bottom: 20px; }
.sobre-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.sobre-pill {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-mid);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════
   SERVIÇOS
═══════════════════════════════════════════ */
#servicos { background: var(--off-white); }
.servicos-header { text-align: center; margin-bottom: 56px; }
.servicos-header .section-sub { margin: 0 auto; }
.servicos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: transform .3s, box-shadow .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,29,51,.12); }
.svc-card-top {
  background: var(--blue-dark);
  padding: 22px 22px 18px;
  border-bottom: 3px solid var(--amber);
  display: flex;
  align-items: center;
  gap: 14px;
}
.svc-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.svc-title { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--white); line-height: 1.2; }
.svc-body { padding: 18px 22px 22px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.svc-list li { display: flex; gap: 9px; font-size: 13px; color: var(--gray-text); line-height: 1.4; }
.svc-list li::before { content: '▸'; color: var(--amber); font-size: 11px; margin-top: 1px; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   DIFERENCIAIS
═══════════════════════════════════════════ */
#diferenciais { background: var(--blue-dark); }
.dif-header { text-align: center; margin-bottom: 56px; }
.dif-header .section-sub { margin: 0 auto; }
.dif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.dif-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--amber);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: background .3s;
}
.dif-card:hover { background: rgba(255,255,255,.07); }
.dif-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.dif-title { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--white); margin-bottom: 8px; }
.dif-desc { font-size: 12px; color: var(--gray-mid); line-height: 1.6; }
.dif-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.06); border-radius: 12px; overflow: hidden; }
.dif-stat { background: rgba(255,255,255,.03); padding: 28px 20px; text-align: center; }
.dif-stat-val { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: var(--amber); line-height: 1; }
.dif-stat-lbl { font-size: 11px; color: var(--gray-mid); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }

/* ═══════════════════════════════════════════
   PROCESSO
═══════════════════════════════════════════ */
#processo { background: var(--white); }
.processo-header { text-align: center; margin-bottom: 64px; }
.processo-header .section-sub { margin: 0 auto; }
.processo-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.processo-step {
  position: relative;
  background: var(--off-white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid var(--gray-light);
  transition: border-color .3s;
}
.processo-step:hover { border-color: var(--amber); }
.processo-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  border-radius: 12px 12px 0 0;
}
.processo-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--amber); line-height: 1; opacity: .8; margin-bottom: 8px; }
.processo-title { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 10px; letter-spacing: .04em; }
.processo-desc { font-size: 13px; color: var(--gray-text); line-height: 1.65; }

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
#cta-banner { background: var(--amber); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
#cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(0,0,0,.03) 30px, rgba(0,0,0,.03) 31px);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 60px); color: var(--blue-dark); letter-spacing: .02em; margin-bottom: 12px; }
.cta-banner-sub { font-size: 16px; color: var(--blue-mid); font-weight: 500; margin-bottom: 32px; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue-dark); color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 6px;
  transition: background .2s, transform .2s;
}
.btn-dark:hover { background: var(--blue-mid); transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   CONTATO
═══════════════════════════════════════════ */
#contato { background: var(--off-white); }
.contato-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contato-cards-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.c-card {
  background: var(--white);
  border-radius: 10px;
  padding: 18px 20px;
  border-left: 4px solid var(--amber);
  display: flex; gap: 16px; align-items: center;
  box-shadow: 0 2px 12px rgba(11,29,51,.06);
  transition: transform .2s, box-shadow .2s;
}
.c-card:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(11,29,51,.1); }
.c-card-icon { font-size: 24px; width: 44px; text-align: center; }
.c-card-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 3px; }
.c-card-val { font-size: 15px; font-weight: 600; color: var(--blue-dark); }
.c-card-hint { font-size: 11px; color: var(--gray-mid); margin-top: 2px; }

.contato-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(11,29,51,.1);
  border-top: 4px solid var(--amber);
}
.form-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: .04em; color: var(--blue-dark); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--gray-text); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-mid); }
.form-input, .form-select, .form-textarea {
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: 7px;
  padding: 12px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--blue-dark);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(244,163,10,.15);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; margin-top: 8px;
  background: var(--amber); color: var(--blue-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px; border-radius: 7px; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--amber-dark); transform: translateY(-2px); }
.form-privacy { font-size: 11px; color: var(--gray-mid); text-align: center; margin-top: 12px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer { background: var(--blue-dark); border-top: 3px solid var(--amber); padding: 48px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 44px; }
.footer-logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--white); letter-spacing: .08em; }
.footer-logo-sub { font-size: 9px; color: var(--amber); letter-spacing: .14em; text-transform: uppercase; }
.footer-desc { font-size: 13px; color: var(--gray-mid); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gray-mid);
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--amber); color: var(--blue-dark); }
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 13px; color: var(--gray-mid); transition: color .2s; }
.footer-links li a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: var(--gray-mid); letter-spacing: .04em; }
.footer-cnpj { font-size: 11px; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  animation: pulse-wa 3s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; padding-top: calc(var(--nav-h) + 40px); }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { width: 100%; }
  .hero-badges { max-width: 100%; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-visual { max-width: 480px; margin: 0 auto; }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .dif-stats { grid-template-columns: 1fr 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .servicos-grid { grid-template-columns: 1fr; }
  .processo-steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-logo-wrap img { width: 200px; }
}
