/* ══ VA Training Performance — Light Theme ══════ */

:root {
  --bg:         #ffffff;
  --bg2:        #f4f6f3;
  --bg-dark:    #1a1d1e;
  --bg-dark2:   #212629;
  --card:       #ffffff;
  --border:     #e2e6e0;
  --text:       #1a1d1e;
  --muted:      #687075;
  --green:      #8dc63f;
  --green2:     #a4d952;
  --green-dim:  rgba(141,198,63,.10);
  --white:      #ffffff;
  --shadow-sm:  0 1px 8px rgba(0,0,0,.06);
  --shadow:     0 3px 20px rgba(0,0,0,.08);
  --shadow-md:  0 6px 32px rgba(0,0,0,.11);
  --radius:     12px;
  --radius-lg:  20px;
  --ease:       .3s ease;
  --hh:         70px;
  --fhead:      'Oswald', 'Arial Black', sans-serif;
  --fbody:      'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--hh);
}

body {
  font-family: var(--fbody);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
address { font-style: normal; }
svg { display: block; }

/* ── HEADER ───────────────────────────────────── */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--hh);
  background: rgba(26,29,30,.95);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--ease), box-shadow var(--ease);
}

.header.light {
  background: rgba(255,255,255,.97);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.logo-h {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity var(--ease);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active { color: #fff; }

.header.light .nav-link {
  color: var(--muted);
}
.header.light .nav-link:hover,
.header.light .nav-link.active { color: var(--text); }

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  font-weight: 700;
  padding: 6px 12px;
}

.nav-cta:hover { background: var(--green2) !important; }
.header.light .nav-cta { color: var(--bg-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.header.light .nav-toggle span { background: var(--text); }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (dark) ──────────────────────────────── */

.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--hh) + 56px) 24px 110px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 35%, rgba(141,198,63,.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(141,198,63,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 210px;
  height: auto;
  margin-bottom: 36px;
  animation: logoIn .9s cubic-bezier(.22,.88,.22,1) both;
  border-radius: 8px;
}

@keyframes logoIn {
  from { opacity: 0; transform: scale(.82) translateY(-16px); }
  to   { opacity: 1; transform: none; }
}

.hero-title {
  font-family: var(--fhead);
  font-size: clamp(1.7rem, 4.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeUp .85s .15s cubic-bezier(.22,.88,.22,1) both;
}

.hero-title .green { color: var(--green); }

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 40px;
  animation: fadeUp .85s .28s cubic-bezier(.22,.88,.22,1) both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .85s .4s cubic-bezier(.22,.88,.22,1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  animation: fadeUp .85s .6s both;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: .35; }
  50%      { opacity: 1; }
}

/* ── BUTTONS ──────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 9px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  border: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
  letter-spacing: .2px;
}

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-green {
  background: var(--green);
  color: var(--bg-dark);
}
.btn-green:hover {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(141,198,63,.35);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}

/* ── SECTIONS (light) ─────────────────────────── */

.section { padding: 100px 0; }
.bg2     { background: var(--bg2); }

.section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-label.light { color: rgba(141,198,63,.8); }

.section-title {
  font-family: var(--fhead);
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 44px;
}

.section-sub {
  font-size: .97rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.green { color: var(--green); }

/* ── REVEAL ───────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* ── SOBRE ────────────────────────────────────── */

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.sobre-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: .97rem;
  line-height: 1.78;
}

.quote {
  margin-top: 28px;
  border-left: 3px solid var(--green);
  padding: 16px 20px;
  background: var(--green-dim);
  border-radius: 0 8px 8px 0;
  font-size: .93rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
}

.pillars { display: flex; flex-direction: column; gap: 18px; }

.pillar {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.pillar:hover {
  border-color: var(--green);
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.pillar-n {
  display: block;
  font-family: var(--fhead);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--green);
  opacity: .5;
  line-height: 1;
  margin-bottom: 6px;
}

.pillar h3 { font-size: .97rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.pillar p  { font-size: .85rem; color: var(--muted); line-height: 1.62; }

/* ── PARA QUEM É ──────────────────────────────── */

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.profile-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.profile-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.profile-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}

.profile-icon svg { width: 44px; height: 44px; }

.profile-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.profile-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── SERVIÇOS ─────────────────────────────────── */

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servico-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.servico-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.servico-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.servico-n {
  font-family: var(--fhead);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  opacity: .35;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.servico-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.servico-card > p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 18px;
}

.dot-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }

.dot-list li {
  font-size: .84rem;
  color: var(--muted);
  padding-left: 15px;
  position: relative;
}

.dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* ── DIFERENCIAIS ─────────────────────────────── */

.dif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dif-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.dif-item:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.dif-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1.5px solid rgba(141,198,63,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dif-check svg { width: 16px; height: 16px; }

.dif-item h3 { font-size: .93rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.dif-item p  { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── AVALIAÇÕES ───────────────────────────────── */

.aval-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aval-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.aval-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.aval-icon { margin-bottom: 18px; }
.aval-icon svg { width: 48px; height: 48px; }

.aval-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.aval-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.aval-list li {
  font-size: .84rem;
  color: var(--muted);
  padding-left: 15px;
  position: relative;
  line-height: 1.5;
}

.aval-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* ── EQUIPE ───────────────────────────────────── */

.fundadores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.fundador {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.fundador:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fhead);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green);
}

.avatar-ig {
  font-size: .7rem;
  color: var(--muted);
  text-align: center;
  transition: color var(--ease);
}

.avatar-ig:hover { color: var(--green); }

.fundador-info { display: flex; flex-direction: column; gap: 8px; }

.fundador-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.role {
  font-size: .73rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .3px;
  text-transform: uppercase;
}

.fundador-info p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
  text-align: justify;
}

.tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px; }

.tag {
  font-size: .69rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--green-dim);
  color: #5a8a1a;
  border: 1px solid rgba(141,198,63,.25);
}

.sub-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.sub-desc {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.65;
  max-width: 560px;
}

.membros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.membro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 28px 18px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.membro:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.membro-av {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fhead);
  font-weight: 700;
  font-size: .95rem;
  color: var(--green);
}

.membro h4 { font-size: .9rem; font-weight: 700; color: var(--text); }

.membro a {
  font-size: .76rem;
  color: var(--muted);
  transition: color var(--ease);
}

.membro a:hover { color: var(--green); }

.membro-esp {
  font-size: .68rem;
  color: var(--green);
  font-style: italic;
  text-align: center;
  width: 100%;
  opacity: .85;
}

.membro-cref {
  font-size: .72rem;
  color: var(--muted);
  opacity: .7;
  border-top: 1px solid var(--border);
  padding-top: 7px;
  margin-top: 2px;
  width: 100%;
  text-align: center;
}

/* ── CTA FINAL (dark) ─────────────────────────── */

.cta-final {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 30% 50%, rgba(141,198,63,.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
}

.cta-text h2 {
  font-family: var(--fhead);
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}

.cta-text p {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  margin-bottom: 16px;
}

.contact-block address {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
}

.contact-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(141,198,63,.1);
  color: var(--green);
  font-size: .83rem;
  font-weight: 600;
  border: 1px solid rgba(141,198,63,.2);
  transition: background var(--ease);
  align-self: flex-start;
  margin-top: 4px;
}

.btn-map:hover { background: rgba(141,198,63,.18); }
.btn-map svg   { width: 15px; height: 15px; }

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
  padding: 4px 0;
}

.social-link:hover { color: var(--green); }
.social-link svg   { width: 18px; height: 18px; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────── */

.footer {
  background: var(--bg-dark2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  align-items: start;
}

.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  max-width: 280px;
}

.footer-address {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  line-height: 1.75;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: color var(--ease);
}

.footer-links a:hover { color: var(--green); }

.footer-copy {
  grid-column: 1 / -1;
  font-size: .75rem;
  color: rgba(255,255,255,.22);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ── WHATSAPP FLOAT ───────────────────────────── */

.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: transform var(--ease), box-shadow var(--ease);
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

.wa-btn svg { width: 28px; height: 28px; }

.wa-opts {
  display: flex;
  flex-direction: column;
  gap: 7px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.96);
  transform-origin: bottom right;
  transition: opacity var(--ease), transform var(--ease);
}

.wa-opts.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.wa-opt {
  padding: 10px 15px;
  background: var(--white);
  border-radius: 8px;
  font-size: .83rem;
  color: #111;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.14);
  transition: transform var(--ease);
}

.wa-opt:hover { transform: translateX(-4px); }

/* ── RESPONSIVE ───────────────────────────────── */

@media (max-width: 1024px) {
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .nav-menu {
    position: fixed;
    top: var(--hh);
    left: 0; right: 0;
    background: rgba(26,29,30,.98);
    border-bottom: 1px solid rgba(255,255,255,.06);
    flex-direction: column;
    padding: 20px;
    gap: 6px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .header.light .nav-menu { background: rgba(255,255,255,.98); border-color: var(--border); }
  .nav-toggle { display: flex; }
  .nav-link    { padding: 12px 16px; width: 100%; }
  .nav-cta     { margin-top: 10px; }

  .sobre-grid,
  .fundadores,
  .cta-inner   { grid-template-columns: 1fr; gap: 32px; }
  .servicos-grid,
  .aval-grid   { grid-template-columns: 1fr; }
  .dif-grid    { grid-template-columns: 1fr; }
  .section     { padding: 72px 0; }
  .cta-final   { padding: 72px 0; }
  .hero-logo   { width: 185px; }
}

@media (max-width: 640px) {
  .profiles-grid { grid-template-columns: 1fr 1fr; }
  .membros       { grid-template-columns: 1fr; }
  .fundador      { flex-direction: column; }
  .hero-ctas     { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-btns      { flex-direction: column; }
  .footer-inner  { grid-template-columns: 1fr; gap: 24px; }
}
