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

:root {
  --blue-900: #0a1628;
  --blue-800: #0d1f3c;
  --blue-700: #112d54;
  --blue-600: #1a3f70;
  --blue-500: #1e56a0;
  --blue-400: #2563eb;
  --blue-300: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;

  --gold:     #f59e0b;
  --gold-light: #fde68a;
  --gold-dark: #b45309;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --white: #ffffff;
  --success: #10b981;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14), 0 8px 24px rgba(0,0,0,.08);
  --shadow-blue: 0 8px 32px rgba(37,99,235,.28);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--blue-400); border-radius: 99px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .22s ease;
  border: 2px solid transparent;
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-500) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-300) 0%, var(--blue-400) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,.38);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.38);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--blue-400);
  border-color: var(--blue-100);
}
.btn-ghost:hover {
  background: var(--blue-50);
  border-color: var(--blue-300);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: all .3s ease;
  padding: 0;
}
#header.top {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
#header.scrolled {
  background: rgba(10,22,40,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-300));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(37,99,235,.4);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-sub {
  font-size: .68rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 4px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links li a {
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  transition: all .2s;
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.btn-nav {
  margin-left: 12px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .88rem;
  transition: all .22s;
  box-shadow: var(--shadow-blue);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,.45); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 9px 10px;
  margin-left: 16px;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg,
    #050d1a 0%,
    #081629 25%,
    #0d2247 55%,
    #112d60 80%,
    #1a3f70 100%);
}

/* animated orbs */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out 3s infinite;
}

/* grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) translate(0,0); opacity: 1; }
  50% { transform: scale(1.08) translate(10px,-10px); opacity: .75; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 28px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,.1);
  color: var(--gold);
  border: 1px solid rgba(245,158,11,.25);
  padding: 7px 16px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 28px;
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-text h1 .accent { color: var(--gold); }
.hero-text h1 .accent-blue { color: var(--blue-300); }

.hero-text p {
  color: rgba(255,255,255,.65);
  font-size: 1.07rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  padding: 7px 14px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 500;
}
.pill-icon { font-size: .9rem; }

/* hero right — stat cards */
.hero-cards { display: flex; flex-direction: column; gap: 16px; }

.hero-stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background .3s, border .3s;
}
.hero-stat-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}
.hsc-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.hsc-icon.blue { background: rgba(37,99,235,.2); }
.hsc-icon.gold { background: rgba(245,158,11,.15); }
.hsc-icon.green { background: rgba(16,185,129,.15); }
.hsc-body { flex: 1; }
.hsc-body strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.hsc-body span { font-size: .82rem; color: rgba(255,255,255,.5); }
.hsc-badge {
  background: rgba(16,185,129,.18);
  color: #6ee7b7;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
}

/* ===== SECTION SHELLS ===== */
.section { padding: 108px 0; }
.section-light { background: var(--slate-50); }
.section-dark {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--blue-800) 100%);
  color: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-400);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--blue-400);
  border-radius: 2px;
}
.section-label.light { color: var(--gold); }
.section-label.light::before { background: var(--gold); }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-desc { color: var(--slate-500); font-size: 1.05rem; max-width: 560px; }
.section-desc.light { color: rgba(255,255,255,.6); }

.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head.center .section-label { justify-content: center; }
.section-head.center .section-desc { margin: 0 auto; }

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

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 40px 36px 44px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-300));
  opacity: 0;
  transition: opacity .3s;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--blue-100);
}
.svc-card:hover::before { opacity: 1; }

.svc-card.featured {
  background: linear-gradient(145deg, var(--blue-900) 0%, var(--blue-700) 100%);
  border-color: transparent;
  color: var(--white);
}
.svc-card.featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 1;
}
.svc-card.featured:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(10,22,40,.5); }
.svc-card.featured .svc-tag { background: rgba(245,158,11,.15); color: var(--gold); border-color: rgba(245,158,11,.2); }
.svc-card.featured .svc-title { color: var(--white); }
.svc-card.featured .svc-desc { color: rgba(255,255,255,.6); }
.svc-card.featured .svc-list li { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.07); }
.svc-card.featured .svc-list li::before { color: var(--gold); }
.svc-card.featured .svc-link { color: var(--gold); }

.svc-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.6rem;
}
.icon-blue { background: var(--blue-50); }
.icon-navy { background: rgba(255,255,255,.1); }
.icon-amber { background: #fef3c7; }
.icon-green { background: #d1fae5; }

.svc-tag {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-500);
  border: 1px solid var(--blue-100);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.svc-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.svc-desc {
  color: var(--slate-500);
  font-size: .92rem;
  line-height: 1.68;
  margin-bottom: 24px;
}
.svc-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 28px; }
.svc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--slate-700);
  padding: 7px 0;
  border-bottom: 1px solid var(--slate-100);
}
.svc-list li::before { content: '→'; color: var(--blue-400); font-weight: 800; font-size: .8rem; flex-shrink: 0; }
.svc-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue-400);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.svc-link:hover { gap: 10px; }

/* ===== ATENDIMENTO ===== */
.aten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.aten-card {
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.aten-card.pf {
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
}
.aten-card.pj {
  background: linear-gradient(145deg, var(--blue-900) 0%, var(--blue-600) 100%);
  border: 1.5px solid rgba(255,255,255,.06);
}

.aten-card .watermark {
  position: absolute;
  right: -20px; bottom: -30px;
  font-size: 8rem;
  opacity: .04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.aten-label {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 24px;
}
.pf .aten-label { background: var(--blue-50); color: var(--blue-500); border: 1px solid var(--blue-100); }
.pj .aten-label { background: rgba(245,158,11,.12); color: var(--gold); border: 1px solid rgba(245,158,11,.2); }

.aten-card h3 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.pf h3 { color: var(--slate-900); }
.pj h3 { color: var(--white); }

.aten-card > p { font-size: .95rem; line-height: 1.7; margin-bottom: 32px; }
.pf > p { color: var(--slate-500); }
.pj > p { color: rgba(255,255,255,.6); }

.aten-features { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.af-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.pf .af-item { border-color: var(--slate-200); }
.pj .af-item { border-color: rgba(255,255,255,.07); }
.af-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
}
.pf .af-check { background: var(--blue-50); color: var(--blue-400); border: 1.5px solid var(--blue-100); }
.pj .af-check { background: rgba(245,158,11,.15); color: var(--gold); border: 1.5px solid rgba(245,158,11,.2); }
.af-item span { font-size: .92rem; }
.pf .af-item span { color: var(--slate-700); }
.pj .af-item span { color: rgba(255,255,255,.75); }

/* ===== SOBRE ===== */
.sobre-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.num-cell {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.num-cell:nth-child(1) { background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); }
.num-cell:nth-child(2) { background: linear-gradient(135deg, var(--blue-700), var(--blue-600)); }
.num-cell:nth-child(3) { background: var(--slate-50); }
.num-cell:nth-child(4) { background: var(--white); }

.num-val {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}
.num-cell:nth-child(1) .num-val,
.num-cell:nth-child(2) .num-val { color: var(--white); }
.num-cell:nth-child(3) .num-val,
.num-cell:nth-child(4) .num-val { color: var(--slate-900); }

.num-label { font-size: .82rem; font-weight: 500; }
.num-cell:nth-child(1) .num-label,
.num-cell:nth-child(2) .num-label { color: rgba(255,255,255,.55); }
.num-cell:nth-child(3) .num-label,
.num-cell:nth-child(4) .num-label { color: var(--slate-500); }

.sobre-text .section-label { margin-bottom: 14px; }
.sobre-text p { color: var(--slate-500); font-size: .97rem; line-height: 1.78; margin-bottom: 14px; }

.diffs { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.diff-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.diff-item:hover { border-color: var(--blue-100); box-shadow: var(--shadow-sm); }
.diff-ic {
  width: 40px; height: 40px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.diff-item strong { display: block; font-size: .93rem; color: var(--slate-900); margin-bottom: 3px; font-weight: 600; }
.diff-item p { font-size: .85rem; color: var(--slate-500); margin: 0; }

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.contact-form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group + .form-group { }
.form-group label { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .02em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .93rem;
  color: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group select option { background: var(--slate-900); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-300);
  box-shadow: 0 0 0 3px rgba(59,130,246,.18);
  background: rgba(255,255,255,.09);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-gap { display: flex; flex-direction: column; gap: 16px; }

.form-success-msg {
  display: none;
  padding: 14px 18px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: var(--radius-sm);
  color: #6ee7b7;
  font-size: .9rem;
  font-weight: 500;
}
.form-success-msg.show { display: flex; align-items: center; gap: 10px; }

.contact-info-panel { display: flex; flex-direction: column; gap: 20px; }

.cip-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.cip-sub { color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: 12px; }

.ci-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background .25s;
}
.ci-item:hover { background: rgba(255,255,255,.07); }
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ci-icon.blue { background: rgba(37,99,235,.18); }
.ci-icon.green { background: rgba(16,185,129,.15); }
.ci-icon.amber { background: rgba(245,158,11,.12); }
.ci-icon.slate { background: rgba(255,255,255,.07); }
.ci-body strong { display: block; color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 2px; }
.ci-body span { color: rgba(255,255,255,.5); font-size: .83rem; }

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 15px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  transition: all .22s;
  margin-top: 4px;
  box-shadow: 0 6px 24px rgba(37,211,102,.25);
}
.btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.35); }
.btn-wa svg { width: 20px; height: 20px; }

/* ===== FOOTER ===== */
footer {
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-main {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 60px;
  padding: 72px 28px 56px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background .2s;
}
.social-btn:hover { background: rgba(255,255,255,.12); }

.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,.45);
  font-size: .88rem;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: rgba(255,255,255,.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 22px 28px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-cnpj {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  padding: 7px 16px;
  border-radius: 99px;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.footer-cnpj::before {
  content: 'CNPJ';
  font-weight: 800;
  color: var(--gold);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .sobre-wrap { grid-template-columns: 1fr; gap: 56px; }
  .sobre-numbers { max-width: 520px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .hero-stat-card { flex: 1; min-width: 220px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .aten-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,22,40,.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 16px 20px 24px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 11px 14px; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }
  .aten-card { padding: 36px 28px; }
  .hero-inner { padding: 60px 28px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-cards { display: none; }
}

@media (max-width: 520px) {
  .sobre-numbers { grid-template-columns: 1fr; }
  .num-cell { padding: 28px 24px; }
}
