/*
 * ═══════════════════════════════════════════════════════════════
 *  TEOCELL IMPORTS — style.css  v1.0
 *  CSS assíncrono: tudo abaixo do Hero (carregado via preload)
 *  Critical CSS inline (Hero) está no <head> do index.html
 *  Organização: Seção por seção, mesma ordem do HTML
 * ═══════════════════════════════════════════════════════════════
 */


/* ══════════════════════════════════════════════════
   UTILITÁRIOS GLOBAIS
══════════════════════════════════════════════════ */

/* Botão verde grande (CTA secundário) */
.btn-verde-grande {
  display: inline-block;
  background: var(--verde-whats);
  color: var(--branco);
  border: none;
  border-radius: var(--raio);
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.30);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-verde-grande:hover {
  background: var(--verde-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.40);
}

/* Botão azul grande (Localizar loja) */
.btn-azul-grande {
  display: inline-block;
  background: var(--azul);
  color: var(--branco);
  border: none;
  border-radius: var(--raio);
  padding: 16px 36px;
  margin: 40px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.30);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-azul-grande:hover {
  background: var(--azul-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.40);
}

/* Botão amarelo (CTA "Clique Aqui") */
.btn-amarelo {
  display: inline-block;
  background: var(--amarelo);
  color: var(--azul-escuro);
  border: none;
  border-radius: var(--raio);
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-amarelo:hover {
  background: var(--amarelo-hover);
  transform: translateY(-2px);
}

/* Centralização de CTAs */
.cta-centralizado {
  display: flex;
  justify-content: center;
  padding: 32px 24px;
  margin: 30px 0;
}


/* ══════════════════════════════════════════════════
   SEÇÃO 2 — ACESSÓRIOS
══════════════════════════════════════════════════ */

.secao-produtos {
  background: var(--branco);
  padding: 60px 24px 0;
}

/* Header da seção */
.secao-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.secao-header h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: var(--texto);
  line-height: 1.3;
  margin-bottom: 16px;
}

.secao-header .h2-sub {
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 26px);
}

.secao-subtexto {
  font-size: 15px;
  line-height: 1.7;
  color: var(--texto-muted);
}

/* Grid 4×2 — fundo AMARELO nos cards */
.grid-produtos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .grid-produtos {
    grid-template-columns: repeat(4, 1fr);
  }

  
}

/* Card individual de produto */
.card-produto {
  background: var(--amarelo);
  border-radius: var(--raio);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-produto:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Ícone circular do card */
.card-icone {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--azul-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.card-icone img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.card-produto h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--texto);
  line-height: 1.3;
}

.card-produto p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--texto);
  flex-grow: 1;
}

/* Botão WhatsApp dentro do card */
.btn-card-whatsapp {
  background: var(--verde-whats);
  color: var(--branco);
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, transform 0.2s ease;
  text-transform: uppercase;
}

.btn-card-whatsapp:hover {
  background: var(--verde-hover);
  transform: scale(1.02);
}

/* Banner CTA: Não encontrou categoria */
.banner-cta-categoria {
  background: var(--azul);
  text-align: center;
  padding: 32px 24px;
  margin: 100px 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.banner-cta-categoria p {
  font-size: 18px;
  font-weight: 600;
  color: var(--branco);
}

@media (min-width: 768px) {
  .banner-cta-categoria {
    flex-direction: row;
    justify-content: space-between;
    padding: 32px 40px;
    max-width: 1200px;
    margin: 100px auto 100px;
    
  }
}

/* ══════════════════════════════════════════════════
   SEÇÃO 3 — PEÇAS (fundo amarelo, cards azuis)
══════════════════════════════════════════════════ */

.secao-pecas {
  background: var(--amarelo);
  padding: 60px 24px;
}

.secao-pecas-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.secao-pecas-header h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--azul-escuro);
  line-height: 1.3;
  margin-bottom: 12px;
}

.secao-pecas-header h2 span {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
}

.secao-pecas-header p {
  font-size: 15px;
  color: var(--azul-escuro);
}

/* Grid 4 colunas peças */
.grid-pecas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .grid-pecas {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card de peça — fundo AZUL */
.card-peca {
  background: var(--azul-card);
  border-radius: var(--raio);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-peca:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Ícone do card de peça */
.peca-icone {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.peca-icone img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.card-peca h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--branco);
  line-height: 1.3;
}

.card-peca p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.80);
  flex-grow: 1;
}

/* Variante do btn-card para cards azuis */
.btn-peca {
  background: var(--verde-whats);
}


/* ══════════════════════════════════════════════════
   SEÇÃO 4 — DEPOIMENTOS (fundo branco)
══════════════════════════════════════════════════ */

.secao-depoimentos {
  background: var(--branco);
  padding: 60px 24px;
}

.secao-header-branco {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.secao-header-branco h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--texto);
  line-height: 1.3;
  margin-bottom: 12px;
}

.secao-header-branco h2 span {
  font-weight: 400;
  font-size: clamp(16px, 2.2vw, 22px);
}

.secao-header-branco p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--texto-muted);
}

/* Grid de depoimentos — 3 colunas desktop */
.grid-depoimentos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .grid-depoimentos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card de depoimento */
.card-depoimento {
  background: var(--preto);
  border-radius: var(--raio);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--sombra);
}

.depoimento-estrelas {
  color: var(--amarelo);
  font-size: 20px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depoimento-autor img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--azul);
}

.depoimento-autor strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--branco);
  line-height: 1.3;
}

.card-depoimento p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--branco);
}


/* ══════════════════════════════════════════════════
   SEÇÃO 5 — DIFERENCIAIS
══════════════════════════════════════════════════ */

.secao-diferenciais {
  background: var(--cinza-claro);
  padding: 60px 24px 60px;
}

.diferenciais-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .diferenciais-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Lado esquerdo: imagem */
.diferenciais-imagem {
  background: var(--azul-escuro);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  color: var(--branco);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.diferenciais-imagem img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.diferenciais-imagem-legenda {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.diferenciais-imagem-legenda strong {
  font-weight: 700;
  color: var(--amarelo);
}

.diferenciais-imagem-sub {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.6;
}

/* Lado direito: lista */
.diferenciais-lista {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diferenciais-lista h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--texto);
  line-height: 1.4;
  margin-bottom: 8px;
}

.destaque-azul {
  color: var(--azul);
}

/* Item de diferencial */
.diferencial-item {
  border-left: 4px solid var(--amarelo);
  padding-left: 16px;
}

.diferencial-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 6px;
}

.diferencial-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--texto-muted);
}


/* ══════════════════════════════════════════════════
   SEÇÃO 6 — STATS / NÚMEROS
══════════════════════════════════════════════════ */

.secao-stats {
  background: var(--branco);
  padding: 60px 24px 60px;
}

/* Grid 4 cards amarelos */
.grid-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .grid-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--amarelo);
  border-radius: var(--raio);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-card strong {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--azul-escuro);
  line-height: 1;
}

.stat-card span {
  font-size: 12px;
  font-weight: 500;
  color: var(--azul-escuro);
  line-height: 1.4;
  text-align: center;
}

.cta-stats {
  padding-top: 20px;
}


/* ══════════════════════════════════════════════════
   SEÇÃO 7 — FAQ (fundo PRETO)
══════════════════════════════════════════════════ */

.secao-faq {
  background: var(--preto);
  padding: 60px 24px 60px;
}

.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.faq-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--amarelo);
  line-height: 1.3;
  margin-bottom: 12px;
}

.faq-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* Lista de perguntas */
.faq-lista {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: var(--raio);
  overflow: hidden;
}

/* Botão da pergunta (accordion trigger) */
.faq-pergunta {
  width: 100%;
  background: var(--azul-card);
  color: var(--branco);
  border: none;
  padding: 16px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: background 0.2s ease;
}

.faq-pergunta:hover {
  background: var(--azul);
}

.faq-pergunta[aria-expanded="true"] {
  background: var(--azul-escuro);
}

.faq-chevron {
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-pergunta[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

/* Resposta oculta / visível */
.faq-resposta {
  background: rgba(255,255,255,0.05);
  padding: 16px 20px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Quando hidden=false, o display é block via JS */
.faq-resposta[hidden] {
  display: none;
}

.faq-resposta p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.80);
}


/* ══════════════════════════════════════════════════
   SEÇÃO 8 — CTA FINAL + MAPA (fundo PRETO)
══════════════════════════════════════════════════ */

.secao-mapa {
  background: var(--preto);
  padding: 0 0 60px;
}

.mapa-cta-texto {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}

.mapa-cta-texto h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.4;
  margin-bottom: 16px;
}

.destaque-amarelo {
  color: var(--amarelo);
}

.mapa-cta-texto p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* Wrapper do iframe do mapa */
.mapa-embed-wrapper {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 0;
}

.mapa-embed-wrapper iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}


/* ══════════════════════════════════════════════════
   SEÇÃO 9 — LISTA LOJAS (fundo cinza claro)
══════════════════════════════════════════════════ */

.secao-lista-lojas {
  background: var(--cinza-claro);
  padding: 40px 24px;
}

.lista-lojas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.loja-info {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.loja-info:nth-child(odd) {
  border-right: 1px solid rgba(0,0,0,0.08);
}

.loja-info strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--texto);
}

.loja-info a {
  font-size: 13px;
  color: var(--azul);
  text-decoration: none;
  font-weight: 500;
}

.loja-info a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .lista-lojas-grid {
    grid-template-columns: 1fr;
  }

  .loja-info:nth-child(odd) {
    border-right: none;
  }
}


/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */

.site-footer {
  background: var(--amarelo);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.footer-main img {
  height: 40px;
  width: auto;
}

.footer-selo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a img {
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover img {
  transform: translateY(-3px);
  opacity: 0.85;
}

/* Barra de copyright */
.footer-copy {
  background: var(--azul-escuro);
  padding: 14px 24px;
  text-align: center;
}

.footer-copy p {
  font-size: 12px;
  color: var(--amarelo);
  line-height: 1.6;
}

.footer-copy a {
  color: var(--amarelo);
  font-weight: 600;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}


/* ══════════════════════════════════════════════════
   POPUPS — WHATSAPP e MAPS
══════════════════════════════════════════════════ */

/* Overlay de fundo */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Estado ativo do overlay */
.popup-overlay.ativo {
  opacity: 1;
  visibility: visible;
}

/* Desktop: centralizado verticalmente, não bottom sheet */
@media (min-width: 640px) {
  .popup-overlay {
    align-items: center;
  }
}

/* Caixa do popup */
.popup-box {
  background: var(--branco);
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.popup-overlay.ativo .popup-box {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .popup-box {
    border-radius: 16px;
    transform: translateY(30px);
  }

  .popup-overlay.ativo .popup-box {
    transform: translateY(0);
  }
}

/* Topo do popup */
.popup-topo {
  padding: 20px 24px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.popup-topo h2 {
  font-size: 16px;
  font-weight: 700;
}

.popup-topo--amarelo {
  background: var(--amarelo);
  color: var(--azul-escuro);
}

.popup-topo--azul {
  background: var(--azul);
  color: var(--branco);
}

/* Corpo scrollável */
.popup-corpo {
  padding: 0 20px 8px;
}

/* Item de loja no popup */
.popup-loja {
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popup-loja:last-of-type {
  border-bottom: none;
}

.popup-loja-nome {
  font-size: 14px;
  font-weight: 700;
  color: var(--texto);
}

.popup-loja-desc {
  font-size: 12px;
  color: var(--texto-muted);
}

.popup-loja-end {
  font-size: 12px;
  color: var(--texto-muted);
}

/* Botão WhatsApp dentro do popup */
.btn-popup-whatsapp {
  background: var(--verde-whats);
  color: var(--branco);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  margin-top: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-popup-whatsapp:hover {
  background: var(--verde-hover);
  transform: scale(1.01);
}

/* Botão Maps dentro do popup */
.btn-popup-maps {
  background: var(--azul);
  color: var(--branco);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  margin-top: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-popup-maps:hover {
  background: var(--azul-escuro);
  transform: scale(1.01);
}

/* Botão fechar popup */
.btn-fechar-popup {
  background: transparent;
  border: none;
  color: var(--texto-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 16px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: color 0.2s ease;
}

.btn-fechar-popup:hover {
  color: var(--texto);
}


/* ══════════════════════════════════════════════════
   BOTÕES FLUTUANTES
══════════════════════════════════════════════════ */

/* Scroll to Top */
.btn-scroll-top {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: var(--azul-escuro);
  color: var(--branco);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn-scroll-top.visivel {
  opacity: 1;
  transform: translateY(0);
}

.btn-scroll-top:hover {
  background: var(--azul);
}

/* WhatsApp flutuante (canto direito) */
.btn-flutuante-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--verde-whats);
  color: var(--branco);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.50);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse-flutuante 2.5s ease-in-out infinite;
}

.btn-flutuante-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.60);
  animation: none;
}

@keyframes pulse-flutuante {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.50); }
  50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.80); }
}


/* ══════════════════════════════════════════════════
   RESPONSIVIDADE — ajustes mobile finos
══════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .secao-stats {
    padding: 40px 16px 0;
  }

  .secao-faq,
  .secao-mapa {
    padding-left: 16px;
    padding-right: 16px;
  }

  .grid-depoimentos {
    grid-template-columns: 1fr;
  }

  .diferenciais-inner {
    grid-template-columns: 1fr;
  }
}
