/**
 * PontoTrack — Landing Page Responsive System
 * Senior Frontend Engineer + UI/UX Designer
 * Mobile-First Premium SaaS · Zero Overflow · Identidade Visual Preservada
 */

/* ════════════════════════════════════════════════════════════
   1. FOUNDATION — Reset global mantendo identidade
   ════════════════════════════════════════════════════════════ */

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

html {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img, video, svg, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tabelas responsivas */
table { width: 100%; max-width: 100%; }

/* ════════════════════════════════════════════════════════════
   2. CONTAINMENT — Nenhum elemento extrapola viewport
   ════════════════════════════════════════════════════════════ */

nav, section, footer, .hero, .mockup-section, .features-grid,
.how-section, .pricing-grid, .footer-top, .footer-bottom {
  max-width: 100%;
  box-sizing: border-box;
}

/* Glow elements: confinados, não causam overflow */
.hero-glow, .hero-glow-gold {
  pointer-events: none;
  max-width: 100vw;
}

/* ════════════════════════════════════════════════════════════
   3. NAVBAR — Mobile responsivo profissional
   ════════════════════════════════════════════════════════════ */

nav {
  padding: 14px 16px !important;
  gap: 12px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.nav-logo {
  flex-shrink: 0;
  min-width: 0;
}

.nav-logo span {
  font-size: 17px;
}

.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

@media (max-width: 600px) {
  nav {
    padding: 12px 14px !important;
  }
  .nav-logo img { width: 32px !important; height: 32px !important; }
  .nav-logo span { font-size: 15px; }

  /* Botões nav compactos no mobile */
  .nav-cta .btn-ghost {
    padding: 8px 12px;
    font-size: 12px;
  }
  .nav-cta .btn-primary {
    padding: 8px 14px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  /* Em telas muito pequenas, esconde "Entrar" */
  .nav-cta .btn-ghost { display: none; }
}

@media (min-width: 769px) {
  nav { padding: 16px 5% !important; }
}

/* ════════════════════════════════════════════════════════════
   4. HERO SECTION — Mobile-first premium
   ════════════════════════════════════════════════════════════ */

.hero {
  padding: 88px 20px 48px !important;
  min-height: auto !important;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 120px 24px 80px !important; min-height: 90vh !important; }
}

/* Hero glows ajustados para mobile */
.hero-glow {
  width: 100% !important;
  max-width: 600px !important;
  height: 400px !important;
  top: 10% !important;
}

.hero-glow-gold {
  width: 60% !important;
  max-width: 300px !important;
  height: 300px !important;
}

/* Hero badge */
.hero-badge {
  font-size: 11px !important;
  padding: 5px 14px !important;
  margin-bottom: 24px !important;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
}

/* Hero title */
.hero h1 {
  font-size: clamp(28px, 8vw, 72px) !important;
  letter-spacing: -1px !important;
  line-height: 1.1 !important;
  margin-bottom: 16px !important;
  padding: 0 4px;
  word-wrap: break-word;
  hyphens: auto;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: clamp(40px, 6vw, 72px) !important;
    letter-spacing: -2px !important;
    line-height: 1.05 !important;
  }
}

/* Hero subtitle */
.hero p {
  font-size: clamp(14px, 4vw, 18px) !important;
  line-height: 1.6 !important;
  margin-bottom: 32px !important;
  max-width: 540px !important;
  padding: 0 8px;
}

@media (min-width: 768px) {
  .hero p { font-size: 18px !important; line-height: 1.7 !important; }
}

/* Hero buttons */
.hero-buttons {
  width: 100%;
  max-width: 420px;
  flex-direction: column !important;
  gap: 12px !important;
  margin-bottom: 40px !important;
}

@media (min-width: 540px) {
  .hero-buttons { flex-direction: row !important; max-width: none; }
}

.btn-hero {
  width: 100%;
  padding: 14px 24px !important;
  font-size: 14px !important;
  border-radius: 12px !important;
  justify-content: center !important;
  min-height: 50px;
}

@media (min-width: 540px) {
  .btn-hero { width: auto; padding: 16px 32px !important; font-size: 15px !important; }
}

/* Hero stats: grid responsivo */
.hero-stats {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px 24px !important;
  width: 100% !important;
  max-width: 460px !important;
  flex-wrap: nowrap !important;
}

.hero-stat-divider { display: none !important; }

.hero-stat .num { font-size: 20px !important; }
.hero-stat .label { font-size: 11px !important; }

@media (min-width: 640px) {
  .hero-stats {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 32px !important;
    max-width: none !important;
  }
  .hero-stat-divider { display: block !important; }
  .hero-stat .num { font-size: 24px !important; }
}

@media (min-width: 1024px) {
  .hero-stats { gap: 40px !important; }
  .hero-stat .num { font-size: 28px !important; }
}

/* ════════════════════════════════════════════════════════════
   5. MOCKUP SECTION — Sidebar responsiva
   ════════════════════════════════════════════════════════════ */

.mockup-section {
  padding: 0 16px 48px !important;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

@media (min-width: 768px) {
  .mockup-section { padding: 0 24px 80px !important; }
}

.mockup-wrap {
  width: 100% !important;
  max-width: 960px !important;
}

.mockup-bar {
  padding: 10px 12px !important;
}

.mockup-bar .mockup-dot { width: 8px !important; height: 8px !important; }
.mockup-url {
  font-size: 10px !important;
  padding: 4px 8px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-body {
  padding: 0 !important;
}

/* Sidebar do mockup colapsa em mobile */
@media (max-width: 640px) {
  .mockup-body {
    flex-direction: column !important;
  }
  .mockup-body > div:first-child {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    flex-direction: row !important;
    overflow-x: auto;
    padding: 12px !important;
    gap: 6px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mockup-body > div:first-child::-webkit-scrollbar { display: none; }
  .mockup-body > div:first-child > div {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 6px 10px !important;
  }
  /* Esconder o user info no rodapé do sidebar mobile */
  .mockup-body > div:first-child > div[style*="margin-top:auto"] {
    display: none !important;
  }
}

/* Mock stats (3 cols) → 1 col no mobile */
.mock-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

@media (max-width: 480px) {
  .mock-stats { grid-template-columns: 1fr !important; }
}

.mock-stat {
  padding: 10px !important;
  min-width: 0;
}

.mock-stat .ms-value { font-size: 18px !important; }

/* Mock table responsivo */
.mock-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mock-table-header,
.mock-row {
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  padding: 9px 12px !important;
  min-width: 380px;
}

.mock-emp { font-size: 11px !important; }
.mock-time { font-size: 11px !important; }

/* ════════════════════════════════════════════════════════════
   6. SECTIONS — Padding consistente
   ════════════════════════════════════════════════════════════ */

section {
  padding: 64px 20px !important;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  section { padding: 80px 32px !important; }
}

@media (min-width: 1024px) {
  section { padding: 100px 32px !important; }
}

.section-title {
  font-size: clamp(22px, 6vw, 42px) !important;
  letter-spacing: -0.5px !important;
  line-height: 1.2 !important;
  word-wrap: break-word;
  hyphens: auto;
}

.section-sub {
  font-size: clamp(13px, 3vw, 16px) !important;
  line-height: 1.6 !important;
  max-width: 520px;
}

/* ════════════════════════════════════════════════════════════
   7. FEATURES GRID — Cards responsivos
   ════════════════════════════════════════════════════════════ */

.features-grid {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  margin-top: 40px !important;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

@media (min-width: 540px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 20px !important;
    margin-top: 56px !important;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    margin-top: 64px !important;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

.feature-card {
  padding: 24px 20px !important;
  border-radius: 18px !important;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

@media (min-width: 768px) {
  .feature-card { padding: 32px 28px !important; border-radius: 22px !important; }
}

.feature-icon {
  width: 52px !important;
  height: 52px !important;
  font-size: 22px !important;
  border-radius: 14px !important;
  margin-bottom: 16px !important;
}

@media (min-width: 768px) {
  .feature-icon { width: 60px !important; height: 60px !important; font-size: 24px !important; }
}

.feature-card h3 {
  font-size: 16px !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.2px !important;
}

.feature-card p {
  font-size: 13px !important;
  line-height: 1.65 !important;
}

@media (min-width: 768px) {
  .feature-card h3 { font-size: 18px !important; }
  .feature-card p { font-size: 14px !important; line-height: 1.75 !important; }
}

/* ════════════════════════════════════════════════════════════
   8. HOW IT WORKS / STEPS — 2 cols mobile, 4 cols desktop
   ════════════════════════════════════════════════════════════ */

.how-section { padding: 0; width: 100%; }

.steps {
  grid-template-columns: 1fr 1fr !important;
  gap: 28px 16px !important;
  margin-top: 40px !important;
  padding: 0;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;
    margin-top: 56px !important;
  }
}

@media (max-width: 767px) {
  .steps::before { display: none !important; }
}

.step {
  padding: 0 4px !important;
  min-width: 0;
}

.step-bubble {
  width: 64px !important;
  height: 64px !important;
  font-size: 22px !important;
  margin: 0 auto 16px !important;
}

@media (min-width: 768px) {
  .step-bubble { width: 76px !important; height: 76px !important; font-size: 26px !important; }
}

.step-badge {
  width: 20px !important;
  height: 20px !important;
  font-size: 10px !important;
  top: -4px !important;
  right: -4px !important;
}

.step h3 {
  font-size: 14px !important;
  margin-bottom: 6px !important;
}

.step p {
  font-size: 12px !important;
  line-height: 1.5 !important;
  max-width: 100% !important;
  padding: 0 4px;
}

@media (min-width: 768px) {
  .step h3 { font-size: 16px !important; }
  .step p { font-size: 13px !important; max-width: 180px !important; }
}

/* ════════════════════════════════════════════════════════════
   9. PRICING — Cards responsivos premium
   ════════════════════════════════════════════════════════════ */

.pricing-section { padding: 64px 16px !important; }

@media (min-width: 768px) { .pricing-section { padding: 80px 24px !important; } }

.billing-toggle {
  font-size: 13px !important;
  padding: 5px 14px !important;
  gap: 10px !important;
  margin: 24px auto 0 !important;
  flex-wrap: wrap;
  justify-content: center;
}

.billing-toggle span { font-size: 13px !important; }

.pricing-grid {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  margin: 32px auto 0 !important;
  width: 100%;
  max-width: 420px;
  padding: 0;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    max-width: 820px !important;
    margin: 48px auto 0 !important;
  }
}

.pricing-card {
  padding: 28px 22px !important;
  border-radius: 22px !important;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

@media (min-width: 768px) {
  .pricing-card { padding: 36px 28px !important; border-radius: 26px !important; }
}

.pricing-popular {
  font-size: 10px !important;
  padding: 4px 14px !important;
}

.pricing-plan {
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 8px !important;
}

.pricing-price {
  font-size: 40px !important;
  letter-spacing: -1.5px !important;
}

@media (min-width: 768px) { .pricing-price { font-size: 48px !important; } }

.pricing-price span { font-size: 16px !important; }

.pricing-original { font-size: 12px !important; height: 16px !important; }

.pricing-desc {
  font-size: 12px !important;
  margin-bottom: 22px !important;
}

.pricing-features li {
  font-size: 13px !important;
  padding: 8px 0 !important;
  gap: 10px !important;
}

.pricing-features li i { font-size: 11px !important; }

.btn-plan {
  padding: 13px !important;
  font-size: 14px !important;
  border-radius: 12px !important;
  min-height: 48px;
}

/* ════════════════════════════════════════════════════════════
   10. CONFORMIDADE LEGAL — Grid 4 → 2 → 1 col
   ════════════════════════════════════════════════════════════ */

#planos ~ section [style*="grid-template-columns"],
section [style*="display:flex"][style*="gap:16px"][style*="flex-wrap:wrap"] {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  /* Conformidade legal cards */
  section [style*="display:flex"][style*="flex-wrap:wrap"][style*="justify-content:center"] {
    gap: 12px !important;
  }
  section [style*="display:flex"][style*="flex-wrap:wrap"][style*="justify-content:center"] > div {
    flex: 1 1 calc(50% - 6px) !important;
    min-width: calc(50% - 6px) !important;
    padding: 16px 14px !important;
  }
}

@media (max-width: 480px) {
  section [style*="display:flex"][style*="flex-wrap:wrap"][style*="justify-content:center"] > div {
    flex: 1 1 100% !important;
    min-width: 100% !important;
  }
}

/* ════════════════════════════════════════════════════════════
   11. INSTALAR APP — Guia 2 cols → 1 col
   ════════════════════════════════════════════════════════════ */

#instalar [style*="grid-template-columns:1fr 1fr"] {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}

@media (min-width: 768px) {
  #instalar [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
}

#instalar > div > div[style*="background"] {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ════════════════════════════════════════════════════════════
   12. TESTIMONIALS — Cards responsivos (sem tocar no avatar)
   ════════════════════════════════════════════════════════════ */

/* Apenas o container e os cards — NUNCA o avatar */
.testimonials-grid {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.testimonial-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

/* Avatar: dimensões fixas preservadas */
.testimonial-avatar {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.testimonial-author > div:not(.testimonial-avatar) {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.testimonial-name,
.testimonial-role,
.testimonial-company {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Grid responsivo: 1 → 2 → 3 colunas */
.testimonials-grid {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  margin-top: 40px !important;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-top: 52px !important;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    margin-top: 64px !important;
  }
}

/* Card: padding responsivo */
.testimonial-card {
  padding: 24px 20px !important;
  border-radius: 18px !important;
}

@media (min-width: 768px) {
  .testimonial-card { padding: 28px 24px !important; border-radius: 22px !important; }
}

@media (min-width: 1024px) {
  .testimonial-card { padding: 32px !important; border-radius: 24px !important; }
}

.testimonial-text {
  font-size: 14px !important;
  line-height: 1.65 !important;
  margin-bottom: 22px !important;
}

@media (min-width: 768px) {
  .testimonial-text { font-size: 15px !important; margin-bottom: 28px !important; }
}

/* ════════════════════════════════════════════════════════════
   13. FINAL CTA — Card centralizado responsivo
   ════════════════════════════════════════════════════════════ */

section [style*="background:linear-gradient"][style*="border-radius:24px"],
section [style*="background:linear-gradient"][style*="border-radius:28px"] {
  padding: 32px 20px !important;
  border-radius: 22px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (min-width: 768px) {
  section [style*="background:linear-gradient"][style*="border-radius:24px"],
  section [style*="background:linear-gradient"][style*="border-radius:28px"] {
    padding: 56px 40px !important;
    border-radius: 28px !important;
  }
}

/* ════════════════════════════════════════════════════════════
   14. FOOTER — Grid responsivo
   ════════════════════════════════════════════════════════════ */

footer {
  padding: 48px 20px 24px !important;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  footer { padding: 64px 32px 32px !important; }
}

.footer-top {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding-bottom: 28px !important;
  border-bottom: 1px solid var(--border) !important;
}

@media (min-width: 600px) {
  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 32px 24px !important; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 32px !important;
    padding-bottom: 32px !important;
  }
  .footer-brand { grid-column: auto; }
}

.footer-brand { min-width: 0; }
.footer-logo { margin-bottom: 14px !important; }
.footer-desc {
  font-size: 12px !important;
  line-height: 1.65 !important;
  max-width: 100% !important;
  margin-bottom: 18px !important;
}

@media (min-width: 768px) {
  .footer-desc { font-size: 13px !important; max-width: 280px !important; }
}

.footer-social { gap: 8px !important; }
.social-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
}

.footer-col { min-width: 0; }
.footer-col h4 {
  font-size: 12px !important;
  margin-bottom: 14px !important;
  letter-spacing: 1.5px !important;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li {
  margin-bottom: 8px !important;
}
.footer-col ul li a {
  font-size: 13px !important;
  line-height: 1.5 !important;
  display: inline-block;
  padding: 4px 0;
  word-break: break-word;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px !important;
  padding-top: 20px !important;
  margin-top: 24px !important;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom p {
  font-size: 11px !important;
  line-height: 1.6 !important;
  text-align: center;
  word-wrap: break-word;
  max-width: 100%;
}

@media (min-width: 768px) {
  .footer-bottom p { font-size: 12px !important; text-align: left; }
}

.footer-seals {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  justify-content: center !important;
}

.seal {
  font-size: 11px !important;
  padding: 4px 9px !important;
  gap: 5px !important;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════
   15. WHATSAPP FLOAT BUTTON — Posição segura
   ════════════════════════════════════════════════════════════ */

#whatsappFloat {
  bottom: max(20px, env(safe-area-inset-bottom)) !important;
  right: max(16px, env(safe-area-inset-right)) !important;
  width: 56px !important;
  height: 56px !important;
}

@media (min-width: 768px) {
  #whatsappFloat {
    bottom: 28px !important;
    right: 28px !important;
    width: 60px !important;
    height: 60px !important;
  }
}

#whatsappFloat i { font-size: 26px !important; }

@media (min-width: 768px) {
  #whatsappFloat i { font-size: 30px !important; }
}

/* ════════════════════════════════════════════════════════════
   16. UTILS — Touch targets, scroll, accessibility
   ════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
  a, button, [role="button"] { min-height: 40px; }
  .nav-cta a { min-height: 38px; }
  .footer-col ul li a { min-height: 32px; }
}

/* Smooth scroll com offset para nav fixa */
html { scroll-padding-top: 80px; }

/* Texto longo nunca quebra layout */
h1, h2, h3, h4, h5, h6, p, span, a, li, label {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Links no footer, especialmente os longos como "Política de privacidade" */
.footer-col ul li a {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Em flex containers, filhos não extrapolam */
[style*="display:flex"] > *,
[style*="display: flex"] > * {
  min-width: 0;
}

/* ════════════════════════════════════════════════════════════
   17. SAFE AREAS iOS
   ════════════════════════════════════════════════════════════ */

@supports (padding: max(0px)) {
  nav {
    padding-top: max(14px, env(safe-area-inset-top)) !important;
  }
  footer {
    padding-bottom: max(24px, env(safe-area-inset-bottom)) !important;
  }
}

/* ════════════════════════════════════════════════════════════
   18. PERFORMANCE — Reduce paint, smooth render
   ════════════════════════════════════════════════════════════ */

.feature-card, .pricing-card, .step, .seal {
  will-change: auto;
  contain: layout style;
}

/* Reduce motion para acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ════════════════════════════════════════════════════════════
   19. SCROLLBAR estilizado
   ════════════════════════════════════════════════════════════ */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); }
::-webkit-scrollbar-thumb { background: rgba(148,163,184,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(148,163,184,0.5); }

/* ════════════════════════════════════════════════════════════
   20. SECTION SUB CENTRALIZAÇÃO em mobile
   ════════════════════════════════════════════════════════════ */

.center .section-sub,
section[style*="text-align:center"] .section-sub {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 767px) {
  .section-sub {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
