/* =====================================================
   SOS SECURITY - ESTILO PRINCIPAL
   Organização:
   1) Reset / Base
   2) Layout global
   3) Header e menu
   4) Botões
   5) Hero
   6) Seções (Serviços/Promoções/Assistência/Sobre)
   7) Formulário
   8) Footer e WhatsApp flutuante
   9) Responsividade
===================================================== */

/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --green: #25D366;
  --dark: #0a1929;
  --text: #1e2b3c;
  --soft: #f4f7fb;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 90px;  /* MESMO valor do header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: #ffffff;
}

/* Evita o título da seção ficar escondido atrás do header fixo */
section { scroll-margin-top: 110px; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Classe utilitária (iframe escondido) */
.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* =========================
   HEADER FIXO
   - Desktop: menu horizontal + CTA WhatsApp
   - Mobile: botão ☰ e menu dropdown
========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;                /* ALTURA FIXA */
  padding: 0;                  /* remove padding vertical */
  display: flex;
  align-items: center;         /* centraliza conteúdo vertical */
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  z-index: 1000;
  transition: 0.25s ease;
}

header.active{
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  position: relative; /* para dropdown no mobile */
}

.logo img {
  height: 55px;
  width: auto;
  display: block;
}

/* =========================
   MENU DESKTOP
========================= */
.main-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.main-nav a {
  background: rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: var(--green);
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

/* Botão menu mobile (só aparece em telas pequenas) */
.menu-toggle {
  display: none;
  border: 0;
  background: rgba(255,255,255,0.10);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 20px;
  cursor: pointer;
}

/* WhatsApp CTA: desktop / mobile */
.btn-whatsapp-desktop { display: inline-flex; }
/*.nav-whatsapp { display: none; }/* /* aparece no mobile dentro do dropdown */

/* =========================
   BOTÕES
========================= */
.btn-primary {
  background: var(--green);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #1ebe5d;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--green);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--green);
}

/* =========================
   HERO
   - Desktop mantém impacto
   - Mobile ajusta tamanho e empilha botões
========================= */
.hero {
  margin-top: 0;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/hero-bg.png");
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;

  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  text-align: center;
}

.hero-content{
  padding: 40px 0;
}

.hero h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--green);
  animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
  0% { text-shadow: 0 0 10px rgba(37,211,102,0.25); }
  100% { text-shadow: 0 0 20px rgba(37,211,102,0.55); }
}

.hero h2 span{
  color: #fff;
}

.hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  max-width: 750px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================
   SERVIÇOS
========================= */
.services {
  padding: 100px 20px;
  text-align: center;
}

.services h2{
  font-family: 'Poppins', sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.card {
  background: var(--soft);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

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

/* =========================
   PROMOÇÕES
========================= */
.promocoes {
  background: var(--soft);
  padding: 120px 20px;
  text-align: center;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.promo-card {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  border: 3px solid var(--green);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.promo-card:hover {
  transform: translateY(-8px);
}

.preco {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1e3a5f;
}

.preco strong {
  font-size: 28px;
  color: #0a1929;
}

/* =========================
   ASSISTÊNCIA
========================= */
.assistencia {
  background: linear-gradient(135deg, #eef2f7, #f9fbfd);
  padding: 120px 20px;
  text-align: center;
}

.assistencia-descricao{
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  color: #2a3a50;
}

.assistencia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.assist-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.4s;
}

.assist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.assistencia-cta {
  margin-top: 80px;
}

/* =========================
   SOBRE
========================= */
.about {
  padding: 120px 20px;
  text-align: center;
}

.about-descricao{
  max-width: 950px;
  margin: 0 auto 30px auto;
  font-size: 18px;
  color: #2a3a50;
}

/* 4 cards na mesma linha no desktop */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.about-card {
  background: var(--soft);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* =========================
   CONTATO / FORM
========================= */
.contato {
  padding: 120px 20px;
  background: var(--soft);
  text-align: center;
}

.contato h2 {
  margin-bottom: 15px;
}

.contato-descricao {
  max-width: 700px;
  margin: 0 auto 50px auto;
  font-size: 18px;
  color: #444;
}

.form-contato {
  max-width: 600px;
  margin: auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-contato input,
.form-contato select,
.form-contato textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: inherit;
  transition: 0.3s;
  background: #fff;
}

.form-contato input:focus,
.form-contato select:focus,
.form-contato textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 8px rgba(37,211,102,0.3);
}

.form-contato button {
  width: 100%;
  padding: 14px;
  font-size: 18px;
}

.form-aviso{
  margin-top: 12px;
  font-size: 14px;
  color: #555;
}

/* =========================
   FOOTER
========================= */
footer {
  background: var(--dark);
  color: white;
  padding: 80px 20px 30px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* =========================
   WHATSAPP FLUTUANTE
========================= */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--green);
  padding: 12px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  z-index: 1000;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

/* =====================================================
   RESPONSIVIDADE
   Breakpoints:
   900px (tablet) / 700px (mobile)
===================================================== */

/* Tablet */
@media (max-width: 900px) {
  .hero h2 { font-size: 36px; }
  .hero p { font-size: 18px; }

  /* About: 2 colunas no tablet */
  .about-grid { grid-template-columns: repeat(2, 1fr); }

  .assistencia-cta { margin-top: 50px; }
}

/* Mobile */
@media (max-width: 700px) {
  header { padding: 14px 0; }
  .logo img { height: 46px; }

  /* Esconde CTA do desktop e mostra dentro do nav */
  .btn-whatsapp-desktop { display: none; }
  /*.nav-whatsapp { display: inline-flex; width: 100%; }*/

  /* Mostra botão do menu */
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Nav vira dropdown */
  .main-nav{
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 10px;
    background: rgba(15, 32, 39, 0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 15px;
  }

  /* Hero: empilha botões */
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { width: 100%; max-width: 360px; }

  /* About: 1 coluna */
  .about-grid { grid-template-columns: 1fr; }

  /* Seções: menos padding no mobile */
  .services, .promocoes, .assistencia, .about, .contato {
    padding: 80px 16px;
  }

  /* Texto de descrição mais confortável */
  .assistencia-descricao, .about-descricao, .contato-descricao{
    font-size: 16px;
  }
}
.sticky-cta{
  position: fixed;
  right: 20px;
  bottom: 95px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 1001;
  transition: transform 0.2s ease;
}

.sticky-cta:hover{
  transform: translateY(-2px);
}
/* =========================
   BOTÃO WHATSAPP PREMIUM
========================= */
.floating-whatsapp.premium{
  width: auto;
  height: auto;
  border-radius: 18px;
  padding: 12px 14px;
  gap: 10px;
  font-size: 14px;
}

.floating-whatsapp.premium .wa-ico{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
}

.floating-whatsapp.premium .wa-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.floating-whatsapp.premium .wa-text strong{
  font-size: 14px;
}

.floating-whatsapp.premium .wa-text small{
  font-size: 12px;
  opacity: 0.95;
}

/* =====================================================
   MODAL ORÇAMENTO — ESTILO ÚNICO (Clean / confortável)
   (Use este bloco como a “verdade final” do modal)
===================================================== */

#modalOrcamento.modal{
  display: none;                 /* JS controla */
  position: fixed;
  inset: 0;
  z-index: 2200;
  padding: 14px;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);

  /* centraliza o painel */
  align-items: center;
  justify-content: center;
}

#modalOrcamento.modal.show{
  display: flex;
}

#modalOrcamento .modal__panel{
  width: 100%;
  max-width: 760px;              /* confortável */
  max-height: 90vh;              /* não corta */
  overflow-y: auto;              /* scroll interno */
  -webkit-overflow-scrolling: touch;

  background: #fff;
  border-radius: 14px;           /* cantos médios */
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  position: relative;
}

/* fechar */
#modalOrcamento .modal__close{
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(0,0,0,0.05);
}

/* header centralizado */
#modalOrcamento .modal__header{
  padding: 24px 26px 12px 26px;
  text-align: center;
}
#modalOrcamento .modal__header h3{
  font-size: 22px;
  margin-bottom: 8px;
}
#modalOrcamento .modal__header p{
  font-size: 13px;
  color: #5a6677;
  max-width: 520px;
  margin: 0 auto;
}

/* form */
#modalOrcamento .modal__form{
  padding: 0 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* “cards” viram seções sem caixa */
#modalOrcamento .card{
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

/* títulos com linha sutil */
#modalOrcamento .card__title{
  font-size: 13px;
  font-weight: 700;
  margin: 12px 0 12px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* grid */
#modalOrcamento .grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* inputs */
#modalOrcamento .field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#modalOrcamento label{
  font-size: 12px;
  font-weight: 600;
}
#modalOrcamento input,
#modalOrcamento select,
#modalOrcamento textarea,
#modalOrcamento .multi-trigger{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
#modalOrcamento input:focus,
#modalOrcamento select:focus,
#modalOrcamento textarea:focus,
#modalOrcamento .multi-trigger:focus{
  border-color: rgba(37,211,102,0.85);
  box-shadow: 0 0 0 3px rgba(37,211,102,0.14);
}

/* dropdown múltiplo */
#modalOrcamento .multi-trigger{
  cursor: pointer;
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
}
#modalOrcamento .multi-panel{
  display: none;
  margin-top: 10px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  overflow: hidden;
  background: #fff;
}
#modalOrcamento .multi-panel.open{ display: block; }
#modalOrcamento .multi-option{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
}
#modalOrcamento .multi-option:hover{
  background: rgba(0,0,0,0.03);
}

/* CTA final normal (sem sticky por enquanto — evita “esquisito”) */
#modalOrcamento .modal__footer{
  padding-top: 6px;
}
#modalOrcamento .btn-block{
  width: 100%;
  height: 56px;
  border-radius: 12px;
  font-size: 15px;
}

/* mobile */
@media (max-width: 700px){
  #modalOrcamento.modal{ padding: 10px; }
  #modalOrcamento .modal__header{ padding: 20px 18px 10px 18px; }
  #modalOrcamento .modal__form{ padding: 0 18px 18px 18px; }
  #modalOrcamento .grid-2{ grid-template-columns: 1fr; }
}
/* =====================================================
   Dropdown múltiplo (Sistemas) — ORGANIZADO / CLEAN
===================================================== */

/* Trigger (campo fechado) */
#modalOrcamento .multi-trigger{
  height: 46px;
  padding: 0 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Texto do trigger não estoura */
#modalOrcamento #sistemasLabel{
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Painel (lista aberta) */
#modalOrcamento .multi-panel{
  width: 100%;
  max-height: 240px;      /* << evita ficar gigante */
  overflow-y: auto;       /* << scroll interno */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  padding: 6px 0;         /* respira */
}

/* Itens */
#modalOrcamento .multi-option{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.2;
}

/* Separador sutil entre itens (organiza MUITO) */
#modalOrcamento .multi-option + .multi-option{
  border-top: 1px solid rgba(0,0,0,0.04);
}

/* Checkbox alinhado */
#modalOrcamento .multi-option input{
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

/* Hover discreto */
#modalOrcamento .multi-option:hover{
  background: rgba(0,0,0,0.03);
}

/* (Opcional) quando estiver aberto, deixa o trigger “ativo” */
#modalOrcamento .multi-panel.open ~ .hint{ opacity: .9; }

/* =====================================================
   Botão enviar alinhado à direita (modal orçamento)
===================================================== */

#modalOrcamento .modal__footer{
  display: flex;
  justify-content: flex-end;   /* Alinha à direita */
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

#modalOrcamento .btn-block{
  width: auto;                 /* Remove 100% */
  min-width: 200px;            /* Tamanho confortável */
  height: 44px;                /* Menor */
  padding: 0 20px;
  font-size: 14px;
  border-radius: 10px;         /* Cantos médios */
}
/* =====================================================
   Rodapé do modal: texto à esquerda / botão à direita
===================================================== */

#modalOrcamento .modal__footer{
  display: flex;
  justify-content: space-between;  /* separa esquerda/direita */
  align-items: center;
  margin-top: 18px;
  gap: 16px;
}

/* Texto discreto */
#modalOrcamento .modal__footer .hint{
  font-size: 12px;
  color: #6b7280;
}

/* Botão menor e elegante */
#modalOrcamento .btn-block{
  width: auto;
  min-width: 200px;
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
  border-radius: 10px;
}
@media (max-width: 600px){
  #modalOrcamento .modal__footer{
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  #modalOrcamento .btn-block{
    width: 100%;
  }
}

/* Botão flutuante no estilo do btn-secondary */
.floating-cta{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 600px){
  .floating-cta{
    right: 16px;
    bottom: 16px;
  }
}

/* Botão flutuante padrão (letra preta) */
.floating-cta{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  color: #000;
}

/* Quando estiver sobre HERO ou FOOTER */
.floating-cta.is-white{
  color: #fff !important;
}

/* =====================================================
   PROMOÇÕES: contador + destaque "Mais vendido" + brilho preço
===================================================== */

/* Contador */
.promo-countdown{
  margin: 18px auto 30px auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* =====================================================
   PROMOÇÃO TERMINA EM - PRETO PISCANDO
===================================================== */

.promo-countdown__label{
  font-size: 22px;          /* maior */
  font-weight: 900;
  color: #000;              /* PRETO */
  letter-spacing: 1px;
  text-transform: uppercase;
  
}



/* Destaque do card "Mais vendido" */
.promo-card.featured{
  transform: translateY(-6px);
  border: 3px solid #25D366;
  box-shadow: 0 18px 55px rgba(0,0,0,0.30);
  position: relative;
}

/* Faixa "MAIS VENDIDO" */
.promo-ribbon{
  position: absolute;
  top: 14px;
  right: -44px;
  background: #25D366;
  color: #0b1a12;
  font-weight: 900;
  font-size: 12px;
  padding: 7px 54px;
  transform: rotate(45deg);
  letter-spacing: 0.6px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
}

/* Brilho no preço (efeito glow) */
.promocoes .preco strong{
  position: relative;
  animation: priceGlow 1.6s ease-in-out infinite;
  text-shadow: 0 0 0 rgba(37,211,102,0);
}

@keyframes priceGlow{
  0%, 100%{
    text-shadow:
      0 0 0 rgba(37,211,102,0),
      0 0 0 rgba(37,211,102,0);
  }
  50%{
    text-shadow:
      0 0 14px rgba(37,211,102,0.55),
      0 0 28px rgba(37,211,102,0.35);
  }
}

/* Mobile: faixa e contador mais compactos */
@media (max-width: 600px){
  .cd-box{ min-width: 78px; }
  .promo-ribbon{ right: -54px; }
}

/* =====================================================
   CONTADOR PROMOÇÕES - TEXTO ESCURO COM GLOW VERDE
===================================================== */

.promo-countdown{
  margin: 18px auto 30px auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.promo-countdown__label{
  font-weight: 700;
  color: #25D366;
  text-shadow: 0 0 10px rgba(37,211,102,0.5);
}

.promo-countdown__grid{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cd-box{
  min-width: 95px;
  padding: 14px 12px;
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* NÚMEROS COM GLOW */
.cd-box strong{
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #0a1929;

  animation: counterGlow 1.6s ease-in-out infinite;
}

@keyframes counterGlow{
  0%,100%{
    text-shadow:
      0 0 0 rgba(37,211,102,0),
      0 0 0 rgba(37,211,102,0);
  }
  50%{
    text-shadow:
      0 0 10px rgba(37,211,102,0.6),
      0 0 20px rgba(37,211,102,0.4);
  }
}

/* Texto pequeno */
.cd-box small{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #555;
}

/* =====================================================
   BANNER LGPD (Cookies)
===================================================== */
.lgpd-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;

  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.10);

  padding: 14px 16px;
  display: none; /* JS controla */
}

.lgpd-banner.show{
  display: block;
}

.lgpd-banner__content{
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lgpd-banner__text{
  margin: 0;
  color: #1e2b3c;
  font-size: 13px;
  line-height: 1.45;
}

.lgpd-banner__link{
  color: #1e2b3c;
  font-weight: 700;
  text-decoration: underline;
}

.lgpd-banner__actions{
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.lgpd-btn{
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

/* Mobile: empilha */
@media (max-width: 700px){
  .lgpd-banner__content{
    flex-direction: column;
    align-items: stretch;
  }
  .lgpd-banner__actions{
    justify-content: stretch;
  }
  .lgpd-btn{
    width: 100%;
  }
}