:root {
  --bg: #f4f6f9;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --line: #dce4e9;
  --line-soft: rgba(21, 42, 53, 0.08);
  --text: #152a35;
  --text-soft: #44525b;
  --muted: #55636c;
  --brand: #003c44;
  --brand-2: #0f2028;
  --accent: #bec7cc;
  --white: #ffffff;
  --shadow: 0 20px 64px rgba(15, 32, 40, 0.10);
  --shadow-soft: 0 12px 36px rgba(15, 32, 40, 0.06);
  --shadow-dark: 0 22px 64px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(190, 199, 204, 0.18), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .22s ease, opacity .22s ease, transform .22s ease;
}

img { max-width: 100%; display: block; }

p,
.lead,
.service-panel li,
.contact-card span,
.contact-card small,
.footer-contact a,
.footer-nav a,
.footer-link {
  text-align: justify;
}

.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 16px 0 0;
}

.nav-shell {
  width: min(1200px, calc(100% - 24px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(21, 42, 53, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.20);
}

.brand-logo { height: 50px; width: auto; }
.brand-logo-inline { height: 80px; width: auto; }


.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.mobile-panel a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  letter-spacing: 0.005em;
  text-align: left;
}

.site-nav a:hover,
.mobile-panel a:hover { color: var(--white); }

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.10);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(1200px, calc(100% - 24px));
  margin: 10px auto 0;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(21, 42, 53, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.20);
}
.mobile-panel.open { display: grid; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-1px) scale(1.015); }

.btn-light {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.12);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.30);
  color: var(--white);
  background: transparent;
}



.hero,
.section-dark,
.contact-shell,
.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.section-dark::before,
.contact-shell::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("assets/brand/sali-horizontal-light.png"),
    url("assets/brand/sali-horizontal-light.png"),
    url("assets/brand/sali-horizontal-light.png");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 240px, 150px, 320px;
  background-position:
    8% 14%,
    86% 54%,
    48% 92%;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

.hero > *,
.section-dark > *,
.contact-shell > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 76px;
  color: white;
  background: linear-gradient(135deg, #152a35 0%, #003c44 55%, #152a35 100%);
}
.hero::before {
  background-size: 260px, 160px, 340px;
  background-position: 7% 20%, 90% 60%, 52% 90%;
  opacity: 0.05;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -180px 34%;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.45;
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-bg::before { width: 360px; height: 360px; top: -80px; left: -100px; }
.hero-bg::after { width: 520px; height: 520px; right: -180px; top: 80px; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 56px;
}

.hero-copy h1,
.section h2,
.founder-content h3,
.info-card h3,
.service-panel h3,
.feature-card h3,
.contact-shell h2 {
  font-weight: 500;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: 0.95;
}

.hero-copy > p {
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-badge,
.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
}
.hero-panel {
  align-self: end;
  padding: 28px;
  border-radius: 30px;
  box-shadow: var(--shadow-dark);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255, 255, 255, 0.68); }

.hero-panel-text {
  margin: 0 0 22px;
  font-size: 1.16rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.94);
  text-align: justify;
}

.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.mini-grid article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.12);
}
.mini-grid article p { color: rgba(255, 255, 255, 0.84); }

.mini-grid h3,
.feature-card h3,
.info-card h3,
.service-panel h3,
.site-footer h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.18;
}

.stats-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.stat-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}
.stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  text-align: left;
}

.section { padding: 94px 0; }
.section-soft {
  position: relative;
  background: linear-gradient(to bottom, transparent, rgba(240, 244, 247, 0.78), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 46px;
  align-items: center;
}

.section h2,
.contact-shell h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.9rem, 4vw, 2.45rem);
  line-height: 1.05;
  color: var(--text);
}

.section-dark h2,
.contact-shell h2 { color: white; }

.lead {
  margin: 14px 0 0;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.82;
}

.light-copy { color: rgba(255, 255, 255, 0.84); }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card,
.info-card,
.founder-card,
.contact-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.feature-card,
.info-card {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.feature-card {
  padding: 26px;
  transition: transform .28s ease, box-shadow .28s ease;
}
.feature-card p,
.info-card p,
.founder-content p { color: var(--text-soft); }

.feature-card-dark {
  background: #152a35;
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
}
.feature-card-dark p,
.feature-card-dark h3 { color: white; }

.feature-card.wide { grid-column: 1 / -1; }

.cards-3,
.cards-4 {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.info-card {
  padding: 24px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.info-card.compact h3 {
  font-size: 1.12rem;
  line-height: 1.22;
}
.info-card:hover,
.feature-card:hover,
.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon-pill {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #152a35;
  color: white;
  font-size: 20px;
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  overflow: hidden;
  margin-top: 24px;
  background: var(--surface-strong);
}
.founder-card.reverse { grid-template-columns: 1.08fr 1fr; }
.founder-card.reverse .founder-photo { order: 2; }

.founder-photo {
  position: relative;
  background: #e9edf0;
}
.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 42, 53, 0.18), transparent 42%);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.founder-content { padding: 34px; }
.founder-content h3 {
  margin: 10px 0 8px;
  font-size: 1.86rem;
  color: var(--text);
}
.founder-content .role {
  margin: 0 0 18px;
  font-size: 0.78rem;
  color: #697780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.founder-content p { margin: 0 0 14px; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #ccd5d9;
  background: #f4f6f9;
  color: #29424d;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-dark {
  background: #152a35;
  color: white;
}
.section-dark::before {
  background-size: 220px, 130px, 300px;
  background-position: 12% 22%, 88% 68%, 55% 94%;
  opacity: 0.042;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.service-panel {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  transition: transform .24s ease, background-color .24s ease, box-shadow .24s ease;
}
.service-panel:hover {
  transform: scale(1.01);
  background: rgba(255, 255, 255, 0.075);
}
.service-panel h3 { color: white; }
.service-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.service-panel li {
  padding: 13px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.55;
}

.contact-shell::before {
  background-size: 200px, 130px, 270px;
  background-position: 8% 18%, 92% 36%, 52% 92%;
  opacity: 0.05;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 32px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, #152a35 0%, #003c44 100%);
  color: white;
  box-shadow: var(--shadow-dark);
}
.contact-shell .lead { color: rgba(255, 255, 255, 0.86); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color .22s ease, transform .22s ease;
}
.contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.contact-card.full { grid-column: 1 / -1; }
.contact-card strong {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.contact-card span { color: rgba(255, 255, 255, 0.92); }
.contact-card small { color: rgba(255, 255, 255, 0.80); }

.site-footer::before {
  background-size: 200px, 120px, 260px;
  background-position: 8% 18%, 86% 30%, 70% 88%;
  opacity: 0.035;
}

.site-footer {
  background: #0f2028;
  color: white;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr .65fr .9fr;
  gap: 34px;
  padding: 60px 0 0;
}


.site-footer p,
.footer-nav a,
.footer-contact a,
.footer-link {
  color: rgba(255, 255, 255, 0.80);
}
.footer-nav,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.max-w { max-width: auto; }
.fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .12s; }

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

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .contact-shell,
  .footer-grid,
  .services-grid,
  .cards-4,
  .cards-3,
  .founder-card,
  .founder-card.reverse {
    grid-template-columns: 1fr;
  }

  .founder-card.reverse .founder-photo { order: 0; }

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

  .site-nav,
  .nav-cta { display: none; }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero::before,
  .section-dark::before,
  .contact-shell::before,
  .site-footer::before {
    background-size: 130px, 90px, 180px;
    background-position: 6% 12%, 92% 42%, 50% 94%;
    opacity: 0.03;
  }

  .container { width: min(100% - 24px, 1200px); }
  .hero { padding-top: 118px; }
  .hero-copy h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .section h2,
  .contact-shell h2 { font-size: clamp(1.75rem, 8vw, 2.2rem); }
  .stats-grid,
  .feature-grid,
  .mini-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .founder-content,
  .service-panel,
  .hero-panel,
  .contact-shell { padding: 24px; }
  .section { padding: 72px 0; }
}


.hero-trust {
  margin-top: 18px;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.panel-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.text-link-light:hover {
  color: var(--white);
}

.section-proof {
  padding: 34px 0 12px;
}

.proof-shell {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.proof-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.proof-item,
.process-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(244, 246, 249, 0.9);
  box-shadow: var(--shadow-soft);
}

.process-grid {
  gap: 22px;
  align-items: stretch;
}

.proof-item strong,
.process-card h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.proof-item span {
  color: var(--text-soft);
  text-align: justify;
  display: block;
}

.process-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 220px;
  padding: 26px 24px;
  border-radius: 24px;
  border: 1px solid rgba(21, 42, 53, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,246,249,0.92));
  box-shadow: 0 16px 34px rgba(17, 33, 45, 0.08);
  transition:
    transform .45s cubic-bezier(.2,.7,.2,1),
    box-shadow .45s ease,
    border-color .45s ease,
    background .45s ease;
}

.process-card::before,
.process-card::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}

.process-card::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #003c44 0%, #1f6f78 48%, #8fb7be 100%);
  transform: scaleX(.24);
  transform-origin: left center;
}

.process-card::after {
  top: -30%;
  right: -16%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,60,68,.12) 0%, rgba(0,60,68,0) 72%);
  opacity: .8;
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 60, 68, 0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(240,244,247,0.98));
  box-shadow: 0 24px 46px rgba(17, 33, 45, 0.14);
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover::after {
  transform: translate(-10px, 12px) scale(1.05);
  opacity: 1;
}

.process-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: #152a35;
}

.process-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #152a35 0%, #003c44 100%);
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(21, 42, 53, 0.20);
  transition: transform .45s ease, box-shadow .45s ease;
}

.process-card:hover span {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 28px rgba(21, 42, 53, 0.24);
}

.process-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-soft);
  text-align: justify;
  line-height: 1.65;
}

.process-card:nth-child(1) { transition-delay: .02s; }
.process-card:nth-child(2) { transition-delay: .08s; }
.process-card:nth-child(3) { transition-delay: .14s; }
.process-card:nth-child(4) { transition-delay: .2s; }

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, #152a35 0%, #003c44 100%);
  box-shadow: var(--shadow-dark);
  isolation: isolate;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/brand/sali-horizontal-light.png"), url("assets/brand/sali-horizontal-light.png");
  background-repeat: no-repeat, no-repeat;
  background-size: 220px, 320px;
  background-position: 8% 22%, 88% 88%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: white; }

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1fa855);
  color: white;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(31, 168, 85, 0.28);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .proof-shell,
  .cta-band,
  .proof-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section-proof { padding-top: 22px; }
  .proof-shell,
  .cta-band { padding: 24px; }
  .process-card { min-height: auto; padding: 22px 20px; }
  .whatsapp-float { right: 14px; bottom: 14px; min-width: 110px; min-height: 48px; }
  .footer-bottom-links { flex-direction: column; gap: 10px; }
}


.heading-tight {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.lead-tight {
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.info-card-illustrated {
  position: relative;
  overflow: hidden;
}

.info-card-illustrated::before {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 42, 53, 0.08), transparent 68%);
  pointer-events: none;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(21, 42, 53, 1), rgba(0, 60, 68, 0.92));
  color: #f7fbfc;
  box-shadow: 0 12px 24px rgba(21, 42, 53, 0.18), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform .28s ease, box-shadow .28s ease;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.info-card-illustrated:hover .card-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 32px rgba(21, 42, 53, 0.24), inset 0 1px 0 rgba(255,255,255,0.14);
}


.section-partners {
  padding-top: 26px;
}

.partners-header {
  margin-bottom: 28px;
}

.partners-header .lead {
  max-width: 760px;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,246,249,0.92));
  box-shadow: var(--shadow-soft);
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(244,246,249,1) 0%, rgba(244,246,249,0) 100%);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(244,246,249,1) 0%, rgba(244,246,249,0) 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: partnersScroll 34s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo {
  flex: 0 0 auto;
  width: 170px;
  height: 86px;
  object-fit: contain;
  padding: 16px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(21,42,53,0.08);
  box-shadow: 0 14px 28px rgba(17, 33, 45, 0.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, filter .28s ease;
  filter: grayscale(1) contrast(1.04);
}

.partner-logo:hover {
  transform: translateY(-4px);
  filter: grayscale(0) contrast(1);
  border-color: rgba(0,60,68,0.18);
  box-shadow: 0 18px 32px rgba(17,33,45,0.12);
}

@keyframes partnersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .partners-marquee::before,
  .partners-marquee::after {
    width: 42px;
  }

  .partner-logo {
    width: 140px;
    height: 74px;
    padding: 12px 16px;
    border-radius: 18px;
  }

  .partners-track {
    gap: 14px;
    animation-duration: 24s;
  }
}
/* ===== PARCEIROS - CORREÇÃO DEFINITIVA ===== */
#parceiros .partners-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 18px 0;
  border-radius: 28px;
  border: 1px solid rgba(21, 42, 53, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,246,249,0.92));
  box-shadow: 0 16px 34px rgba(17, 33, 45, 0.08);
}

#parceiros .partners-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: partnersScroll 34s linear infinite;
}

#parceiros .partner-logo {
  display: block;
  flex: 0 0 auto;
  width: 170px !important;
  height: 86px !important;
  object-fit: contain;
  padding: 16px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(21,42,53,0.08);
  box-shadow: 0 14px 28px rgba(17, 33, 45, 0.08);
  filter: grayscale(1) contrast(1.04);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, filter .28s ease;
}

#parceiros .partner-logo:hover {
  transform: translateY(-4px);
  filter: grayscale(0) contrast(1);
  border-color: rgba(0,60,68,0.18);
  box-shadow: 0 18px 32px rgba(17,33,45,0.12);
}

#parceiros .partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partnersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  #parceiros .partner-logo {
    width: 140px !important;
    height: 74px !important;
    padding: 12px 16px;
    border-radius: 18px;
  }

  #parceiros .partners-track {
    gap: 14px;
    animation-duration: 24s;
  }
}