/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --section-bg: #F0F7F4;
  --cream-bg:   #FBFBFB;
  --card-bg:    #FFFFFF;
  --page-bg:    #FFFFFF;
  --divider:    #DAE5EC;
  --muted:      #5C90AE;
  --text:       #002540;
  --input-bg:   #F2F5F7;

  --brand:        #44BC0D;
  --brand-hover:  #38A00B;
  --brand-medium: #00A03B;
  --navy:         #002540;
  --navy-mid:     #0A3050;
  --cyan:         #48CAE4;
  --blue:         #0077B6;
}

/* logo switching — dark/light */
img.logo-dark                  { display: none; }
html.dark img.logo-dark        { display: block; }
html.dark img.logo-light       { display: none; }

.dark {
  --section-bg: #0a1929;
  --cream-bg:   #060f1c;
  --card-bg:    #0d2035;
  --page-bg:    #060f1c;
  --divider:    #1a3355;
  --muted:      #7ea8be;
  --text:       #e2f0f8;
  --input-bg:   #0d2035;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Work Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--page-bg);
  overflow-x: hidden;
  transition: background-color .25s ease, color .25s ease;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
button { font-family: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--brand); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
.dark ::-webkit-scrollbar-track { background: #0a1929; }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* global transitions */
nav, footer, section, div, article, aside,
h1, h2, h3, h4, p, span, a, li, input, textarea, select {
  transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container-sm { padding: 0 40px; } }

.container-md { max-width: 768px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container-md { padding: 0 40px; } }

.section { padding: 56px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }

.section-sm { padding: 40px 0; }
@media (min-width: 768px) { .section-sm { padding: 56px 0; } }

.bg-white-section { background: var(--card-bg); }
.bg-section { background: var(--section-bg); }
.bg-cream   { background: var(--cream-bg); }
.bg-navy    { background: var(--navy); }
.bg-cyan-section { background: var(--cyan); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1, h2, h3, h4 { line-height: 1.1; color: var(--text); }
p { line-height: 1.7; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; margin-bottom: 12px;
}
.section-header p {
  font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 auto;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-brand {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand); color: #fff;
  padding: 12px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.btn-brand:hover {
  background: var(--brand-hover);
  box-shadow: 0 6px 24px rgba(68,188,13,.4);
  transform: translateY(-1px);
}
.btn-brand-sm {
  padding: 10px 20px; font-size: 14px;
}

.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff;
  padding: 14px 32px; border-radius: 999px;
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.btn-navy:hover {
  background: var(--navy-mid);
  box-shadow: 0 8px 32px rgba(0,37,64,.35);
  transform: translateY(-2px);
}

.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 12px 24px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.btn-blue:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 24px rgba(0,119,182,.35);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card-bg); color: var(--text);
  border: 1.5px solid var(--divider);
  padding: 12px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s, transform .2s;
}
.btn-outline:hover {
  border-color: var(--brand); color: var(--brand);
  box-shadow: 0 6px 24px rgba(68,188,13,.15);
  transform: translateY(-1px);
}
.btn-outline .material-symbols-outlined { color: var(--brand); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--brand); font-weight: 600; font-size: 15px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 10px; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 50;
  height: 72px; display: flex; align-items: center;
  background: var(--cream-bg);
  border-bottom: 1px solid var(--divider);
  transition: background-color .25s ease, border-color .25s ease, box-shadow .2s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,37,64,.08);
  backdrop-filter: blur(8px);
}
.navbar .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; width: 100%;
}

.logo {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-img { height: 48px; width: auto; display: block; }

.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); }

.nav-right { display: none; align-items: center; gap: 12px; }

.theme-toggle {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: none; background: transparent;
  color: var(--muted); cursor: pointer;
  transition: color .2s, background .2s;
}
.theme-toggle:hover { color: var(--brand); background: rgba(68,188,13,.1); }
.theme-toggle .material-symbols-outlined { font-size: 22px; }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 4px; background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 40;
  background: var(--cream-bg); border-bottom: 1px solid var(--divider);
  box-shadow: 0 8px 32px rgba(0,37,64,.1);
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: all .3s;
}
.mobile-drawer.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

.mobile-nav-links { padding: 24px 24px 0; }
.mobile-nav-links a {
  display: block; padding: 16px 0;
  font-size: 18px; font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--divider);
  transition: color .2s;
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a:hover, .mobile-nav-links a.active { color: var(--brand); }

.mobile-cta-row {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px 24px;
}
.mobile-cta-row .btn-brand { flex: 1; justify-content: center; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-right  { display: flex; }
  .hamburger  { display: none; }
  .mobile-drawer { display: none; }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #F6F6F6;
  border-top: 1px solid var(--divider);
  padding: 64px 0 0;
  position: relative;
  z-index: 1;
}
.dark footer { background: var(--card-bg); }

.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-col-title {
  font-size: 13px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--text); margin-bottom: 16px;
}
.footer-col-title-muted { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand-text { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 260px; margin-top: 8px; }
.footer-email { font-size: 14px; color: var(--brand); font-weight: 500; margin-top: 0; display: inline-block; }
.footer-email:hover { color: var(--brand-medium); }
.footer-phone { font-size: 14px; color: var(--text); font-weight: 500; margin-top: 0; display: inline-block; }
.footer-phone:hover { color: var(--brand); }

footer nav a {
  display: block; font-size: 14px; color: var(--muted);
  margin-bottom: 10px; transition: color .2s;
}
footer nav a:hover { color: var(--brand); }

.footer-bottom {
  border-top: 1px solid var(--divider);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom span { color: var(--brand); font-weight: 500; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--section-bg);
  min-height: calc(100vh - 72px);
  display: flex; align-items: center;
  overflow: hidden;
  padding: 64px 0;
}
@media (min-width: 768px) { .hero { padding: 48px 0; } }

.hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center; width: 100%;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card-bg); border: 1px solid var(--divider);
  color: var(--muted);
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 32px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.2); }
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 24px;
}
.dark .hero h1 { color: var(--text); }

.hero-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.hero-benefits li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 500; color: var(--muted);
}
.hero-benefits li .material-symbols-outlined { color: var(--brand); font-size: 20px; flex-shrink: 0; }

.hero-cta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  margin-top: 40px;
}
.hero-trust-center { justify-content: center; margin-top: 28px; }

.hero-trust {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px; font-size: 13px; color: var(--muted);
}
.hero-trust .material-symbols-outlined { color: var(--brand); font-size: 16px; }

.hero-visual { position: relative; display: none; }
@media (min-width: 1024px) { .hero-visual { display: block; } }

.hero-img-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 64px rgba(0,37,64,.15);
}
.hero-img-wrap img { width: 100%; object-fit: cover; }

.hero-float-card {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--card-bg); border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,37,64,.12);
  border: 1px solid var(--divider);
}
.hero-float-card .big-num {
  font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1;
}
.dark .hero-float-card .big-num { color: var(--text); }
.hero-float-card .big-num span { color: var(--brand); }
.hero-float-card .sub { font-size: 13px; color: var(--muted); margin-top: 4px; }

.hero-float-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--card-bg); border-radius: 12px;
  padding: 12px 16px; border: 1px solid var(--divider);
  box-shadow: 0 4px 20px rgba(0,37,64,.1);
  display: flex; align-items: center; gap: 10px;
}
.hero-float-badge .icon-wrap {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--section-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-float-badge .icon-wrap .material-symbols-outlined { color: var(--brand); font-size: 18px; }
.hero-float-badge .badge-title { font-size: 12px; font-weight: 700; color: var(--text); }
.hero-float-badge .badge-sub { font-size: 11px; color: var(--muted); }

/* ═══════════════════════════════════════════
   LOGOS ROW
═══════════════════════════════════════════ */
.logos-row {
  background: var(--card-bg);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 40px 0;
}
.logos-row-label {
  text-align: center;
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 32px;
}
.logos-list {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 16px 40px;
}
.logos-list span {
  font-size: 14px; font-weight: 700;
  color: #cdd8df;
  transition: color .3s; cursor: default;
}
.logos-list span:hover { color: var(--muted); }

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-section { background: var(--card-bg); }
.stats-section h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800; color: var(--text);
  text-align: center; margin-bottom: 16px;
}
.stats-section .sub {
  text-align: center; font-size: 18px;
  color: var(--muted); margin-bottom: 56px; max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: none;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-cell {
  padding: 24px 24px;
  text-align: center;
  border-right: 1px solid var(--divider);
}
.stat-cell:last-child { border-right: none; }
@media (max-width: 767px) {
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--divider); }
}
.stat-cell .material-symbols-outlined { color: var(--brand); font-size: 28px; display: block; margin-bottom: 12px; }
.stat-num {
  font-size: 36px; font-weight: 800;
  color: var(--text); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: var(--muted); }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-section { background: var(--card-bg); }

.steps-wrap { display: flex; flex-direction: column; gap: 80px; }
@media (min-width: 768px) { .steps-wrap { gap: 112px; } }

.step {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
}
@media (min-width: 1024px) {
  .step { grid-template-columns: 1fr 1fr; gap: 80px; }
  .step.reversed .step-content { order: 2; }
  .step.reversed .step-img    { order: 1; }
}

.step-ghost {
  font-size: 72px; font-weight: 800; color: var(--brand);
  line-height: 1; opacity: .1; user-select: none;
  margin-bottom: -20px; display: block;
}
.step-tag {
  font-size: 13px; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 12px;
}
.step h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800; margin-bottom: 20px; line-height: 1.2;
}
.step p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }

.step-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,37,64,.12);
}
.step-img img { width: 100%; object-fit: cover; display: block; }

/* ═══════════════════════════════════════════
   OBJECTIONS
═══════════════════════════════════════════ */
.objections-section { background: var(--section-bg); text-align: center; }
.objections-label {
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 40px;
}
.objections-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px; max-width: 900px; margin: 0 auto 40px;
}
@media (min-width: 768px) { .objections-grid { grid-template-columns: repeat(3, 1fr); } }

.objection-card {
  background: var(--card-bg); border-radius: 16px;
  padding: 24px;
  font-size: 18px; font-weight: 600; color: var(--text);
  line-height: 1.4;
  box-shadow: 0 2px 12px rgba(0,37,64,.06);
  border: 1px solid var(--divider);
  cursor: default;
  transition: transform .2s, box-shadow .2s, background-color .25s;
}
.objection-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,37,64,.1); }

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}
.bounce-down { animation: bounce-down 1.6s ease-in-out infinite; }
.bounce-icon { color: var(--brand); font-size: 40px; display: block; }

/* ═══════════════════════════════════════════
   FEATURE DARK
═══════════════════════════════════════════ */
.feature-dark-section {
  background: var(--section-bg);
  position: relative; overflow: hidden;
}
.feature-dark-section::before {
  content: '';
  position: absolute; width: 340px; height: 340px;
  border-radius: 50%; background: var(--brand);
  opacity: .07; bottom: -80px; right: -80px;
  pointer-events: none;
}
.feature-dark-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center; position: relative; z-index: 1;
}
@media (min-width: 1024px) {
  .feature-dark-grid { grid-template-columns: 45% 55%; gap: 64px; }
}

.fd-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(68,188,13,.12); border: 1px solid rgba(68,188,13,.2);
  color: var(--brand);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 32px;
}
.fd-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pulse 2s infinite; }

.feature-dark-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 20px;
}
.feature-dark-section h2 span { color: var(--brand); }
.feature-dark-section > * > * > .fd-text > p {
  font-size: 18px; color: var(--muted); line-height: 1.75; margin-bottom: 32px;
}
.fd-text p { font-size: 18px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
.fd-text p span { color: var(--brand); font-weight: 600; }

.fd-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.fd-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; color: var(--muted);
}
.fd-features li .material-symbols-outlined { color: var(--brand); font-size: 22px; flex-shrink: 0; }

/* dark mode overrides */
.dark .feature-dark-section { background: var(--navy); }
.dark .feature-dark-section h2 { color: #fff; }
.dark .fd-text p { color: rgba(255,255,255,.6); }
.dark .fd-features li { color: rgba(255,255,255,.7); }

.fd-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  display: none;
}
@media (min-width: 1024px) { .fd-img { display: block; } }
.fd-img img { width: 100%; object-fit: cover; display: block; }

/* ═══════════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════════ */
.features-section { background: var(--card-bg); }
.features-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }

.feature-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px; border-radius: 16px;
  border: 1px solid var(--divider);
  transition: transform .2s, box-shadow .2s, border-color .25s;
}
.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,37,64,.08);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--section-bg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-icon .material-symbols-outlined { color: var(--brand); font-size: 24px; }
.feature-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-section { background: var(--section-bg); }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: var(--card-bg); border-radius: 16px;
  padding: 24px; border: 1px solid var(--divider);
  transition: transform .2s, box-shadow .2s, background-color .25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,37,64,.08); }

.t-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--section-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--navy); flex-shrink: 0;
}
.dark .avatar { background: rgba(255,255,255,.08); color: var(--text); }
.t-name { font-size: 14px; font-weight: 600; color: var(--text); }
.t-role { font-size: 12px; color: var(--muted); }
.t-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(68,188,13,.1);
  display: flex; align-items: center; justify-content: center;
}
.t-check .material-symbols-outlined { color: var(--brand); font-size: 12px; }
.stars { color: #F59E0B; font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════ */
.faq-section { background: var(--card-bg); }
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--divider); }

.faq-btn {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 24px 0; background: none; border: none;
  cursor: pointer; text-align: left;
}
.faq-btn-text {
  font-size: 17px; font-weight: 600; color: var(--text); line-height: 1.4;
}
.faq-icon {
  font-size: 24px; color: var(--brand); flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-body { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-body p { font-size: 15px; color: var(--muted); line-height: 1.75; padding-bottom: 24px; }

/* Contactos FAQ variant (card style) */
.faq-card {
  border: 1px solid var(--divider); border-radius: 12px;
  overflow: hidden; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.faq-card.open {
  border-color: rgba(68,188,13,.3);
  box-shadow: 0 4px 20px rgba(68,188,13,.08);
}
.faq-card .faq-btn { padding: 20px 24px; }
.faq-card .faq-icon {
  color: var(--brand); transition: transform .3s;
}
.faq-card.open .faq-icon { transform: rotate(180deg); }
.faq-card .faq-body p {
  padding: 0 24px 24px;
  border-top: 1px solid var(--divider);
  padding-top: 16px;
  font-size: 14.5px;
}

.faq-more { text-align: center; margin-top: 40px; }

/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-section { background: var(--section-bg); text-align: center; }
.cta-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; margin-bottom: 12px;
}
.cta-section .sub { font-size: 18px; color: var(--muted); margin-bottom: 40px; }
.cta-badges {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 24px; margin-top: 24px;
  font-size: 13px; color: var(--muted);
}
.cta-badges span { display: flex; align-items: center; gap: 6px; }
.cta-badges .material-symbols-outlined { color: var(--brand); font-size: 16px; }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  background: var(--section-bg);
  border-bottom: 1px solid var(--divider);
  padding: 80px 0 96px; text-align: center;
}
.page-hero-tag {
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; line-height: 1.1; margin-bottom: 20px;
}
.page-hero h1 span { color: var(--brand); }
.page-hero p {
  font-size: 18px; color: var(--muted);
  max-width: 640px; margin: 0 auto; line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SOBRE NÓS
═══════════════════════════════════════════ */
.mission-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 64px; align-items: center;
}
@media (min-width: 1024px) { .mission-grid { grid-template-columns: 1fr 1fr; } }

.mission-img-wrap { position: relative; }
.mission-img-deco {
  position: absolute; top: -16px; right: -16px;
  width: 100%; height: 100%;
  background: var(--section-bg); border-radius: 24px;
}
.mission-img {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.mission-img img { width: 100%; object-fit: cover; display: block; }

.values-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--card-bg); border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: box-shadow .2s, background-color .25s;
}
.value-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.value-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,37,64,.05);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.dark .value-icon { background: rgba(255,255,255,.06); }
.value-icon svg { color: var(--text); }
.value-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--section-bg); border-radius: 12px;
  padding: 16px 20px; cursor: default;
  transition: transform .2s, background-color .25s;
}
.service-item:hover { transform: translateX(6px); }
.service-check {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(68,188,13,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .2s;
}
.service-item:hover .service-check { background: rgba(68,188,13,.2); }
.service-check span { color: var(--brand); font-size: 14px; font-weight: 700; }
.service-item p { font-size: 15px; color: var(--text); font-weight: 500; }

.sobre-cta { background: var(--section-bg); text-align: center; }
.sobre-cta h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.sobre-cta h2 span { color: var(--brand); }
.sobre-cta p { font-size: 16.5px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

.dark .sobre-cta { background: var(--navy); }
.dark .sobre-cta h2 { color: #fff; }
.dark .sobre-cta p { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════
   CONSULTOR (service blocks)
═══════════════════════════════════════════ */
.service-block-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 56px; align-items: center;
}
@media (min-width: 1024px) {
  .service-block-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .service-block-grid.reversed .block-content { order: 2; }
  .service-block-grid.reversed .block-img   { order: 1; }
}

.block-tag {
  display: inline-block;
  background: rgba(68,188,13,.1); border: 1px solid rgba(68,188,13,.15);
  color: var(--brand);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
}
.block-content h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; line-height: 1.2; margin-bottom: 24px;
}
.block-content h2 span { color: var(--brand); }
.block-content > p {
  font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px;
}

.block-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.block-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--muted);
}
.block-feature-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(68,188,13,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.block-feature-check span { color: var(--brand); font-size: 11px; font-weight: 700; }

.block-img-wrap { position: relative; }
.block-img-deco {
  position: absolute; background: rgba(68,188,13,.05);
  border-radius: 24px; width: 100%; height: 100%;
}
.block-img-deco.top-right { top: -16px; right: -16px; }
.block-img-deco.top-left  { top: -16px; left: -16px; }
.block-img {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.block-img img { width: 100%; object-fit: cover; display: block; }

.consultor-cta { background: var(--section-bg); text-align: center; }
.consultor-cta h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; color: var(--navy); margin-bottom: 24px; line-height: 1.2;
}
.consultor-cta h2 span { color: var(--brand); }
.consultor-cta p { font-size: 16.5px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }

.dark .consultor-cta { background: var(--navy); }
.dark .consultor-cta h2 { color: #fff; }
.dark .consultor-cta p { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════
   CONTACTOS
═══════════════════════════════════════════ */
.contact-btns-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.contact-email-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--section-bg); color: var(--text);
  padding: 16px 32px; border-radius: 999px;
  font-size: 16px; font-weight: 600;
  transition: background .3s, color .3s, transform .2s, box-shadow .3s;
}
.contact-email-btn:hover {
  background: var(--brand); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(68,188,13,.3);
}

.hero-contact-row {
  display: inline-flex; align-items: center;
  gap: 4px; margin-top: 36px;
  background: var(--card-bg);
  border: 1px solid var(--divider);
  border-radius: 14px; padding: 5px;
}
.hero-contact-item {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 20px; border-radius: 10px;
  font-size: 15px; font-weight: 600; color: var(--text);
  transition: background .18s, color .18s;
}
.hero-contact-item:hover {
  background: rgba(68,188,13,.09);
  color: var(--brand);
}
.hero-contact-sep {
  width: 1px; height: 28px;
  background: var(--divider); flex-shrink: 0; margin: 0 2px;
}
@media (max-width: 480px) {
  .hero-contact-row {
    flex-direction: column; display: flex;
    width: calc(100% - 32px); max-width: 320px; margin-left: auto; margin-right: auto;
  }
  .hero-contact-sep { width: 100%; height: 1px; margin: 0; }
  .hero-contact-item { width: 100%; padding: 13px 16px; }
}

.promise-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 64px;
}
@media (min-width: 640px) { .promise-grid { grid-template-columns: repeat(3, 1fr); } }

.promise-card {
  background: var(--section-bg); border-radius: 16px;
  padding: 24px; text-align: center;
  transition: background-color .25s;
}
.promise-card .emoji { font-size: 32px; margin-bottom: 12px; }
.promise-card .val { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.promise-card .lbl { font-size: 13px; color: var(--muted); font-weight: 500; }

.suppliers-section { background: var(--section-bg); }
.suppliers-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.supplier-tag {
  background: var(--card-bg); border: 1px solid var(--divider);
  color: var(--muted); font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 8px; cursor: default;
  transition: border-color .2s, color .2s, transform .2s;
}
.supplier-tag:hover {
  border-color: var(--brand); color: var(--brand);
  transform: translateY(-2px);
}

/* ═══ Suppliers Marquee ═══ */
.suppliers-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.suppliers-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  animation: suppliers-scroll 80s linear infinite;
  will-change: transform;
}
.suppliers-marquee:hover .suppliers-track,
.suppliers-marquee:focus-within .suppliers-track {
  animation-play-state: paused;
}
.supplier-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 160px;
  padding: 8px 4px;
}
.supplier-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .35s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.supplier-logo:hover img {
  transform: scale(1.08);
}

@keyframes suppliers-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 720px) {
  .supplier-logo { height: 56px; width: 120px; }
  .suppliers-track { gap: 40px; animation-duration: 60s; }
}
@media (prefers-reduced-motion: reduce) {
  .suppliers-track { animation: none; }
}

.contact-faq-list { display: flex; flex-direction: column; gap: 12px; }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.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; }

/* ═══════════════════════════════════════════
   POLÍTICA DE COOKIES
═══════════════════════════════════════════ */
.policy-meta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card-bg); border: 1px solid var(--divider);
  color: var(--muted); font-size: 13px; font-weight: 500;
  padding: 8px 18px; border-radius: 999px; margin-top: 24px;
}
.policy-meta .material-symbols-outlined { font-size: 16px; color: var(--brand); }

.legal-section-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.legal-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.legal-section-header h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800; margin: 0;
}

.legal-text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.legal-text p:last-child { margin-bottom: 0; }

.cookie-type-group { margin-bottom: 36px; }
.cookie-type-group:last-child { margin-bottom: 0; }
.cookie-type-label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}

.cookie-type-cards {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 640px) { .cookie-type-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cookie-type-cards.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.cookie-type-card {
  background: var(--card-bg); border: 1px solid var(--divider);
  border-radius: 12px; padding: 20px;
  transition: transform .2s, box-shadow .2s, background-color .25s;
}
.cookie-type-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,37,64,.08); }
.cookie-type-card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(68,188,13,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.cookie-type-card-icon .material-symbols-outlined { color: var(--brand); font-size: 20px; }
.cookie-type-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cookie-type-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.legal-info-box {
  background: rgba(68,188,13,.06); border: 1px solid rgba(68,188,13,.2);
  border-radius: 12px; padding: 18px 22px; margin-top: 28px;
  display: flex; align-items: flex-start; gap: 12px;
}
.legal-info-box .material-symbols-outlined { color: var(--brand); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.legal-info-box p { font-size: 14px; color: var(--muted); line-height: 1.75; margin: 0; }

.who-places-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 8px;
}
@media (min-width: 640px) { .who-places-grid { grid-template-columns: repeat(2, 1fr); } }

.who-places-card {
  background: var(--section-bg); border-radius: 12px;
  padding: 22px; border: 1px solid var(--divider);
  transition: background-color .25s;
}
.who-places-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.who-places-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Cookie Table */
.cookie-table-wrap {
  overflow-x: auto; border-radius: 12px;
  border: 1px solid var(--divider); margin-top: 8px;
}
.cookie-table {
  width: 100%; border-collapse: collapse; font-size: 14px; min-width: 680px;
}
.cookie-table thead { background: var(--navy); }
.dark .cookie-table thead { background: var(--navy-mid); }
.cookie-table thead th {
  padding: 14px 16px; text-align: left;
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.7); white-space: nowrap;
}
.cookie-table tbody tr { border-bottom: 1px solid var(--divider); transition: background-color .15s; }
.cookie-table tbody tr:last-child { border-bottom: none; }
.cookie-table tbody tr:hover { background: var(--section-bg); }
.cookie-table tbody td { padding: 14px 16px; color: var(--text); vertical-align: top; line-height: 1.5; }
.cookie-table td.cookie-name {
  font-family: 'Courier New', monospace; font-size: 13px;
  color: var(--brand); font-weight: 600; white-space: nowrap;
}
.tag-badge {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.tag-necessary  { background: rgba(68,188,13,.12);  color: #2D8A00; }
.dark .tag-necessary { color: var(--brand); }
.tag-analytics  { background: rgba(0,119,182,.12);  color: #005F9E; }
.dark .tag-analytics { color: #48CAE4; }
.tag-marketing  { background: rgba(245,158,11,.12); color: #B45309; }
.dark .tag-marketing { color: #F59E0B; }
.cookie-table a { color: var(--brand); font-size: 12px; font-weight: 500; }
.cookie-table a:hover { text-decoration: underline; }

/* Browser links */
.browser-links { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.browser-link {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--section-bg); border: 1px solid var(--divider);
  border-radius: 10px; padding: 13px 20px;
  font-size: 15px; font-weight: 500; color: var(--text);
  transition: border-color .2s, color .2s, transform .2s;
}
.browser-link:hover { border-color: var(--brand); color: var(--brand); transform: translateX(4px); }
.browser-link .material-symbols-outlined { font-size: 18px; color: var(--brand); }

/* Consent points */
.consent-points { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.consent-point { display: flex; align-items: flex-start; gap: 14px; }
.consent-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0; margin-top: 7px;
}
.consent-point p { font-size: 15px; color: var(--muted); line-height: 1.75; margin: 0; }

.concept-list { display: flex; flex-direction: column; gap: 10px; }
.concept-item { font-size: 15px; color: var(--muted); line-height: 1.7; }
.concept-item strong { color: var(--text); }

.privacy-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--divider); }
.privacy-table {
  width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px;
}
.privacy-table thead { background: var(--navy); }
.dark .privacy-table thead { background: var(--navy-mid); }
.privacy-table thead th {
  padding: 14px 16px; text-align: left;
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.7); white-space: nowrap;
}
.privacy-table tbody tr { border-bottom: 1px solid var(--divider); transition: background-color .15s; }
.privacy-table tbody tr:last-child { border-bottom: none; }
.privacy-table tbody tr:hover { background: var(--section-bg); }
.privacy-table tbody td { padding: 14px 16px; color: var(--text); vertical-align: top; line-height: 1.6; font-size: 14px; }
.privacy-table td:first-child { font-weight: 600; color: var(--text); white-space: nowrap; }
.privacy-table td:last-child { color: var(--muted); font-size: 13px; }
.privacy-table code { font-family: inherit; color: var(--muted); font-size: 12px; }

.legal-note {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 16px; font-size: 13px; color: var(--muted);
}
.legal-note .material-symbols-outlined { font-size: 16px; color: var(--muted); flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════════
   PARCEIROS
═══════════════════════════════════════════ */
.cat-filter-wrap {
  background: var(--card-bg);
  border-bottom: 1px solid var(--divider);
  position: sticky;
  top: 72px;
  z-index: 90;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-filter-wrap::-webkit-scrollbar { display: none; }

.cat-filter {
  display: flex;
  gap: 6px;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: max-content;
}

.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--divider);
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
}
.cat-btn .material-symbols-outlined { font-size: 16px; }
.cat-btn:hover,
.cat-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.parceiros-section { padding: 72px 0 0; }

.cat-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.cat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cat-icon .material-symbols-outlined { font-size: 24px; color: #fff; }

.cat-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800; color: var(--navy); margin: 0;
}
.dark .cat-title { color: var(--text); }
.cat-count { font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 2px; }

.partners-grid { display: flex; flex-wrap: wrap; gap: 10px; }

.partner-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--divider);
  background: var(--card-bg);
  font-size: 14px; font-weight: 500; color: var(--navy);
  transition: border-color .15s, background .15s, color .15s;
}
.dark .partner-chip { color: var(--text); }
.partner-chip:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.cat-divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 72px 0 0;
}

.partners-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  padding-top: 56px;
}
@media (max-width: 600px) { .partners-stats { grid-template-columns: 1fr; gap: 12px; } }

.pstat {
  text-align: center;
  padding: 28px 16px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1.5px solid var(--divider);
}
.pstat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800; color: var(--brand);
  line-height: 1; margin-bottom: 6px;
}
.pstat-label { font-size: 14px; font-weight: 500; color: var(--muted); }

/* ═══ WHATSAPP FLOAT ═══ */
@keyframes wa-float-enter {
  0%   { opacity: 0; transform: scale(0) rotate(-90deg); }
  70%  { transform: scale(1.12) rotate(8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes wa-pulse-ring {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 22px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s ease;
  animation: wa-float-enter .6s cubic-bezier(.34,1.56,.64,1) .3s both;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,.65);
}
.whatsapp-float.wa-pulse {
  animation: wa-pulse-ring 1.6s ease-out 3;
}

/* ═══ WHATSAPP POPUP ═══ */
@keyframes wa-popup-in {
  0%   { opacity: 0; transform: translateY(40px) scale(.85); }
  55%  { opacity: 1; transform: translateY(-8px) scale(1.02); }
  75%  { transform: translateY(4px) scale(.99); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes wa-popup-out {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  30%  { transform: translateY(-4px) scale(1.01); }
  100% { opacity: 0; transform: translateY(36px) scale(.86); }
}
@keyframes wa-slide-down {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wa-bubble-pop {
  0%   { opacity: 0; transform: translateX(-10px) scale(.93); }
  60%  { transform: translateX(3px) scale(1.02); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes wa-btn-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wa-typing-dot {
  0%, 60%, 100% { transform: translateY(0);   opacity: .35; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

.wa-popup {
  position: fixed;
  bottom: 98px;
  right: 20px;
  z-index: 9998;
  width: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,.2), 0 2px 8px rgba(0,0,0,.06);
  background: #fff;
  pointer-events: none;
  opacity: 0;
  transform: translateY(40px) scale(.85);
  transform-origin: bottom right;
}
.wa-popup.is-visible {
  pointer-events: auto;
  animation: wa-popup-in .6s cubic-bezier(.34,1.4,.64,1) forwards;
}
.wa-popup.is-hiding {
  pointer-events: none;
  animation: wa-popup-out .35s cubic-bezier(.55,0,1,.8) forwards;
}
.wa-popup-tail {
  position: absolute;
  bottom: -10px;
  right: 26px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #f0f0f0;
}

/* Header desliza de cima */
.wa-popup.is-visible .wa-popup-header {
  animation: wa-slide-down .4s cubic-bezier(.34,1.56,.64,1) .08s both;
}
/* Body aparece logo após */
.wa-popup.is-visible .wa-popup-body {
  animation: wa-slide-down .35s cubic-bezier(.34,1.4,.64,1) .18s both;
}

.wa-popup-header {
  background: #075E54;
  padding: 14px 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-popup-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #128C7E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-popup-info { flex: 1; min-width: 0; }
.wa-popup-name {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.wa-popup-status {
  color: rgba(255,255,255,.75);
  font-size: 12px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  margin-top: 3px;
}
.wa-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
  flex-shrink: 0;
}
.wa-popup-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 50%;
  transition: color .15s, background .15s;
  flex-shrink: 0;
}
.wa-popup-close:hover { color: #fff; background: rgba(255,255,255,.15); }
.wa-popup-close .material-symbols-outlined { font-size: 18px; }

.wa-popup-body {
  padding: 14px 14px 10px;
  background: #e5ddd5;
}

/* Bolha base */
.wa-popup-bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #111;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  display: inline-block;
  max-width: 100%;
}
.wa-popup-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
}

/* Typing bubble */
.wa-typing-bubble { padding: 10px 16px; }
.wa-typing-dots { display: flex; gap: 5px; align-items: center; height: 18px; }
.wa-typing-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #aaa; display: inline-block;
  animation: wa-typing-dot 1.3s ease-in-out infinite;
}
.wa-typing-dots span:nth-child(2) { animation-delay: .18s; }
.wa-typing-dots span:nth-child(3) { animation-delay: .36s; }

/* Msg bubble animada */
.wa-msg-bubble {
  animation: wa-bubble-pop .45s cubic-bezier(.34,1.56,.64,1) both;
}

/* Footer do popup */
.wa-popup-footer {
  padding: 12px 14px 14px;
  background: #fff;
  animation: wa-btn-rise .4s cubic-bezier(.34,1.56,.64,1) both;
}
.wa-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  padding: 11px 18px;
  transition: background .18s, transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .18s;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 3px 12px rgba(37,211,102,.4);
}
.wa-popup-btn:hover {
  background: #1ebe5c;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37,211,102,.55);
}

@media (max-width: 600px) {
  .whatsapp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .wa-popup { bottom: 84px; right: 12px; width: calc(100vw - 24px); }
}

/* ═══════════════════════════════════════════
   MODAL (formulário Adicionar Fatura)
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; justify-content: center;
  overflow-y: auto;
  padding: 48px 24px;
  background: rgba(0,37,64,.55);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
  position: relative;
  width: 100%; max-width: 440px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  padding: 56px 24px 24px;
  box-shadow: 0 24px 64px rgba(0,37,64,.3);
  transform: translateY(20px) scale(.97);
  transition: transform .3s cubic-bezier(.34,1.4,.64,1);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 50%;
  background: #f1f3f5; color: #8a99a3;
  cursor: pointer; transition: background .2s, color .2s, transform .25s;
}
.modal-close:hover { background: #e7edf0; color: var(--brand); transform: rotate(90deg); }
.modal-close .material-symbols-outlined { font-size: 19px; }

.modal-body { min-height: 80px; }

@media (max-width: 600px) {
  .modal-box { padding: 56px 16px 20px; border-radius: 14px; }
}
