/* ============================================
   Sky Bridge Logistics — Landing Page Styles
   ============================================ */

:root {
  --navy: #0E2A47;
  --navy-deep: #0A1F36;
  --white: #FFFFFF;
  --blue: #0052A3;
  --blue-dark: #003D7A;
  --gray-metal: #6E6E6E;
  --gray-light: #D9D9D9;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --header-height: 90px;
  --container-max: 1200px;
  --radius: 8px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; margin: 0 0 var(--space-sm); line-height: 1.2; }
p { margin: 0 0 var(--space-sm); color: var(--gray-metal); }
button { font-family: inherit; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--blue); color: var(--white); padding: 12px 20px; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.container.narrow { max-width: 760px; }

.section { padding: var(--space-xl) 0; }
@media (min-width: 768px) { .section { padding: var(--space-2xl) 0; } }

.dark-section {
  background: var(--navy);
  color: var(--white);
}
.dark-section h2 { color: var(--white); }
.dark-section p { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-xs);
}
.eyebrow-light { color: #7FB4E8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,82,163,0.25); }
.btn-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.dark-section .btn-secondary { border-color: var(--white); color: var(--white); }
.dark-section .btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: rgba(255,255,255,0.88); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-md);
}
.logo-img { height: 72px; width: auto; filter: brightness(0) invert(1); }
.main-nav { display: none; }
.main-nav ul { display: flex; gap: var(--space-lg); }
.nav-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.nav-link:hover { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: var(--space-sm); }

.lang-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 12px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 600;
}
.lang-flag { opacity: 0.5; }
.lang-flag[data-current="true"] { opacity: 1; }
.lang-sep { opacity: 0.4; }

.btn-header-cta { display: none; padding: 10px 20px; font-size: 13px; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-sm) 20px var(--space-md);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: var(--space-md); }
.mobile-nav .nav-link { display: block; padding: 12px 0; color: var(--white); font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-lang-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 999px;
  padding: 10px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
}
.mobile-lang-toggle span { opacity: 0.5; }
.mobile-lang-toggle span[data-current="true"] { opacity: 1; }

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .lang-toggle { display: flex; }
  .btn-header-cta { display: inline-flex; }
  .hamburger, .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #071B36;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  background: linear-gradient(
    180deg,
    rgba(7,27,54,.92) 0%,
    rgba(7,27,54,.55) 45%,
    rgba(7,27,54,0) 80%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding-top: 76px;
  padding-bottom: 32px;
}
.hero-visual {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 4px;
  overflow: hidden;
}
.hero-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 941 / 942;
  object-fit: cover;
  object-position: center 100%;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #7FB4E8;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 15px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.badge-icon { width: 16px; height: 16px; flex-shrink: 0; }
.hero h1 {
  font-size: 30px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 .highlight { color: #7FB4E8; }
.hero-subtitle {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-cta-block { margin-bottom: 0; }
.hero-cta-block .btn { width: fit-content; min-width: 228px; }
.hero-secondary-link {
  display: inline-block;
  color: #7FB4E8;
  font-weight: 600;
  font-size: 14px;
  margin-top: 30px;
  border-bottom: 1px solid rgba(127,180,232,0.5);
}
.hero-secondary-link::after { content: '\2192'; margin-left: 4px; }
.hero-secondary-link:hover { border-bottom-color: #7FB4E8; }

@media (min-width: 1024px) {
  .hero {
    display: block;
    min-height: 820px;
  }
  .hero::before {
    display: block;
    background: linear-gradient(
      90deg,
      rgba(7,27,54,.95) 0%,
      rgba(7,27,54,.55) 45%,
      rgba(7,27,54,0) 80%
    );
  }
  .hero-content {
    max-width: 545px;
    min-height: 820px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 84px;
    padding-bottom: 156px;
  }
  .hero-content .badge { margin-bottom: 30px; padding: 8px 16px; }
  .hero h1 { font-size: 44px; line-height: 1.2; margin-bottom: 26px; }
  .hero-subtitle { margin-bottom: 42px; max-width: 540px; }
  .hero-cta-block .btn { width: auto; min-width: 0; padding: 14px 30px; }
  .hero-secondary-link { margin-top: 36px; }
  .hero-visual {
    position: absolute;
    inset: 0;
    width: auto;
    margin-top: 0;
    z-index: 0;
  }
  .hero-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    pointer-events: none;
  }
}

/* Hero mobile/tablet — composição centralizada e proporcional */
@media (max-width: 1023px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 12px;
  }
  .hero h1 { width: 100%; margin-bottom: 14px; }
  .badge {
    padding: 6px 12px;
    font-size: 11px;
    margin-bottom: 16px;
  }
  .badge-icon { width: 13px; height: 13px; }
  .hero-subtitle { margin-bottom: 20px; }
  .hero-cta-block .btn { padding: 13px 28px; min-width: 210px; }
  .hero-secondary-link { margin-top: 18px; }
  .hero-visual { margin-top: 0; }
  .hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, #071B36 0%, rgba(7,27,54,0) 100%);
    z-index: 1;
    pointer-events: none;
  }
}

/* ---------- Como funciona ---------- */
.how-it-works h2, .modalidades h2, .diferenciais h2, .para-quem h2, .faq-section h2, .about-section h2 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: var(--space-lg);
  max-width: 640px;
}
@media (min-width: 768px) {
  .how-it-works h2, .modalidades h2, .diferenciais h2, .para-quem h2, .faq-section h2, .about-section h2 { font-size: 36px; }
}

.how-it-works { background: #F5F8FB; }

.hiw-header {
  max-width: 680px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}
.hiw-header h2 { margin: 0 auto var(--space-md); max-width: 100%; }
.hiw-header p {
  font-size: 16px;
  color: var(--gray-metal);
  margin: 0 auto;
  max-width: 560px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  box-shadow: 0 8px 24px rgba(14,42,71,0.05);
}
.step-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-sm);
}
.step-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 14px; margin: 0; }

.section-cta { margin-top: var(--space-lg); }
.section-cta-center,
.section-cta-center-mobile { display: flex; justify-content: center; }
.section-cta-center .btn,
.section-cta-center-mobile .btn { width: fit-content; }

@media (min-width: 1024px) {
  .section-cta-center-mobile { display: block; }
  .section-cta-center-mobile .btn { width: auto; }
}

/* ---------- Modalidades ---------- */
.modal-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.modal-card {
  flex: 1 1 300px;
  max-width: 380px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: var(--space-lg);
}
.modal-card svg { width: 40px; height: 40px; color: var(--blue); margin-bottom: var(--space-sm); }
.modal-card h3 { font-size: 22px; color: var(--navy); }
.modal-card p { font-size: 14px; margin: 0; }

/* ---------- Diferenciais ---------- */
.diferenciais {
  padding: var(--space-xl) 0;
}

.dif-header {
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}
.dif-header .eyebrow { margin-bottom: var(--space-sm); }
.dif-header h2 {
  color: var(--white);
  margin: 0 auto var(--space-md);
  max-width: 100%;
}
.dif-header p {
  font-size: 16px;
  margin: 0 auto;
  max-width: 540px;
}

.dif-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) { .dif-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dif-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .dif-grid { grid-template-columns: repeat(5, 1fr); } }

.dif-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.dif-card:hover {
  transform: translateY(-4px);
  border-color: rgba(127,180,232,0.6);
  background: rgba(255,255,255,0.07);
}

.dif-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.dif-icon svg { width: 34px; height: 34px; color: #7FB4E8; }

.dif-card h3 {
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--white);
  margin: 0 0 8px;
}
.dif-card p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ---------- Para quem ---------- */
.para-quem-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.para-quem-text { flex: 1 1 55%; }
.para-quem-image { flex: 1 1 45%; }
.para-quem-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}
.para-quem p { font-size: 16px; color: var(--gray-metal); }
.para-quem .section-cta { margin-top: var(--space-md); }

@media (min-width: 1024px) {
  .para-quem-inner { flex-direction: row; align-items: center; gap: var(--space-2xl); }
}

/* ---------- Sobre ---------- */
.about-section {
  position: relative;
  background-color: #EEF3F8;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(14,42,71,0.08) 1px, transparent 0);
  background-size: 22px 22px;
}
.about-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.about-text { flex: 1 1 50%; }
.about-image {
  flex: 1 1 50%;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(14,42,71,0.18);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  display: block;
}
.about-lead {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}
.about-section p { font-size: 16px; color: var(--gray-metal); }
.about-text .section-cta { margin-top: var(--space-md); }

@media (min-width: 1024px) {
  .about-inner { flex-direction: row; align-items: center; gap: var(--space-2xl); }
}

/* ---------- FAQ ---------- */
.accordion-item { border-bottom: 1px solid var(--gray-light); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: transparent;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
}
.accordion-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.accordion-icon::before, .accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.accordion-icon::before { width: 18px; height: 2px; top: 8px; left: 0; }
.accordion-icon::after { width: 2px; height: 18px; top: 0; left: 8px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { transform: rotate(90deg); opacity: 0; }
.accordion-panel { padding: 0 0 20px; }
.accordion-panel p { font-size: 14px; margin: 0; }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  text-align: center;
  background-color: var(--navy-deep);
  overflow: hidden;
}
.cta-final-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.cta-final-bg-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7,20,38,0.72), rgba(7,20,38,0.82));
}
.cta-final-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { font-size: 30px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-final p:not(.ctaf-support) { font-size: 16px; max-width: 480px; margin-left: auto; margin-right: auto; margin-bottom: var(--space-lg); }
.ctaf-support { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: var(--space-md); }
@media (min-width: 768px) { .cta-final h2 { font-size: 38px; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: var(--space-xl) 0 var(--space-md);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-logo { height: 30px; width: auto; margin-bottom: var(--space-sm); filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.6); margin: 2px 0; font-size: 13px; }
.footer-contact h3, .footer-social h3 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.footer-contact p { margin: 6px 0; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-contact a:hover, .footer-email-link:hover, .footer-phone-link:hover { color: var(--white); }

.social-icons { display: flex; gap: 12px; }
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: background 0.15s ease;
}
.social-icons a:hover { background: var(--blue); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-links { display: flex; gap: var(--space-md); }
.footer-links a:hover { color: var(--white); }

.footer-credit {
  text-align: center;
  padding-top: var(--space-md);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-credit a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.footer-credit a:hover { color: var(--white); }

/* ---------- Elementos fixos de conversão ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.15s ease;
}
.floating-whatsapp.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.floating-whatsapp:hover { transform: translateY(-2px) scale(1.05); }

@media (min-width: 1024px) {
  .floating-whatsapp { opacity: 1; visibility: visible; pointer-events: auto; }
}

/* ---------- Refinamentos mobile ---------- */
@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .diferenciais { padding: 60px 0; }

  .how-it-works h2, .modalidades h2, .diferenciais h2,
  .para-quem h2, .faq-section h2, .about-section h2 { font-size: 26px; }

  .eyebrow { font-size: 12px; }

  .modal-card { padding: var(--space-md); }
  .modal-card svg { width: 34px; height: 34px; margin-bottom: var(--space-xs); }
  .modal-card h3 { font-size: 20px; }

  .dif-header, .hiw-header { margin-bottom: var(--space-lg); }
  .dif-card { padding: var(--space-md); }

  .step-card { padding: var(--space-md) var(--space-md) var(--space-md); }

  .about-inner, .para-quem-inner { gap: var(--space-md); }
  .about-lead { font-size: 17px; }

  .footer-grid { gap: var(--space-md); }
}

