/* =========================================
   PROJETO: FUNDAÇÃO DIGITAL
   ARQUIVO: style.css
   ESTRATÉGIA: Mobile-First + Alta Performance
   ========================================= */

/* 1. VARIÁVEIS GLOBAIS (Edite aqui para personalizar o tema) */
:root {
     --cor-primaria: #058bfa;
     --cor-secundaria: #5dcd6e;
     --cor-destaque: #058bfa;
     --cor-texto: #ffffff;
     --cor-fundo: #ffffff;
     --cor-light: #f8f9fa;
     --cor-dark: #0c141f;
     --texto-branco: #ffffff;
     --cor-whatsapp: #25D366;

     /* Tipografia */
     --fonte-principal: 'Open Sans', system-ui, -apple-system, sans-serif;

     /* Espaçamento e Layout */
     --container-max-width: 1140px;
     --espacamento-padrao: 1rem;

     --altura-header: 60px;

     --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
     --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

     --altura-header: 70px;
}

/* 2. RESET MÍNIMO & NORMALIZAÇÃO */
* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}

html {
     font-size: 15px;
     scroll-behavior: smooth;
}

/* =========================================
   BACKGROUND FIXO (DEEP SPACE / GLASS OS)
   ========================================= */
body {
     background-color: #0c141f;
     /* Fundo base escuro */

     /* As manchas de luz (Azul e Verde) */
     background-image:
          radial-gradient(circle at 0% 0%, rgba(5, 139, 250, 0.4) 0%, transparent 50%),
          radial-gradient(circle at 100% 100%, rgba(93, 205, 110, 0.3) 0%, transparent 40%);

     /* O SEGREDO: Fixa o fundo na tela */
     background-attachment: fixed;
     background-size: cover;
     background-repeat: no-repeat;

     /* Configura texto base para claro */
     color: #ffffff;
     font-family: var(--fonte-principal);
     line-height: 1.6;
     -webkit-font-smoothing: antialiased;
}

.section-home {
     padding: 5rem 0;
}

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

a {
     text-decoration: none;
     color: inherit;
     transition: 0.3s ease;
}

ul {
     list-style: none;
}

/* 3. UTILITÁRIOS GERAIS */
.container {
     width: 100%;
     padding-right: var(--espacamento-padrao);
     padding-left: var(--espacamento-padrao);
     margin-right: auto;
     margin-left: auto;
}

.text-center {
     text-align: center;
}

.section-padding {
     padding-top: 3rem;
     padding-bottom: 3rem;
     padding-left: 0.45rem;
     padding-right: 0.45rem;
}

.bg-light {
     background-color: var(--cor-light);
}

/* 4. COMPONENTES (Botões e CTAs) */
.btn {
     display: inline-block;
     padding: 0.75rem 1.5rem;
     font-weight: 600;
     text-align: center;
     border: none;
     border-radius: 50px;
     cursor: pointer;
     font-size: 1rem;
}

.btn-primary {
     background-color: var(--cor-primaria);
     color: #fff;
}

.btn-primary:hover {
     filter: brightness(0.9);
}

.btn-whatsapp-flutuante {
     position: fixed;
     bottom: 20px;
     right: 20px;
     background-color: var(--cor-whatsapp);
     color: #fff;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
     z-index: 1000;
}

/* 5. ESTRUTURA MOBILE (Padrão) */

header {
     position: fixed;
     top: 0.45rem;
     left: 0;
     right: 0;
     margin: 0 auto;
     width: calc(100% - 2rem);
     max-width: 1140px;
     height: var(--altura-header);
     z-index: 1000;
     transition: all 0.3s ease;
     background: rgba(12, 20, 31, 0.75);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border-radius: 16px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-top: 1px solid rgba(255, 255, 255, 0.25);
     box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
     header {
          width: calc(100% - 1.2rem);
          max-width: 100%;
          height: 85px;
          top: 0.6rem;
     }

     .header-content {
          width: 100%;
          max-width: 1140px;
          margin: 0 auto;
          padding: 0 1rem;
     }

     .logo img {
          max-height: 55px;
     }
}

.header-content {
     width: 100%;
     height: 100%;
     padding: 0 1.5rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
}

@media (max-width: 375px) {
     header {
          width: calc(100% - 1rem);
          top: 0.5rem;
     }
}

.logo {
     display: flex;
     align-items: center;
     height: 100%;
     padding: 5px 0;
}

.logo img {
     max-height: 50px;
     width: auto;
     display: block;
     object-fit: contain;
}

/* Botão Header */
.header-cta {
     display: flex;
     background-color: var(--cor-destaque);
     color: #fff;
     padding: 0.5rem 1rem;
     font-size: 0.9rem;
     font-weight: 700;
     border-radius: 50px;
     white-space: nowrap;
}

.header-cta:hover {
     filter: brightness(0.95);
}

/* =========================================
   MEDIA QUERIES (Ajustes para Desktop)
   ========================================= */

@media (min-width: 992px) {
     .header-content {
          max-width: 1140px;
     }

     .logo {
          font-size: 1.5rem;
     }
}

.nav-menu {
     display: none;
}

/* 6. MEDIA QUERIES (Breakpoints para Tablet e Desktop) */

@media (min-width: 768px) {
     .container {
          max-width: 720px;
     }

     .grid-2 {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 2rem;
     }
}

@media (min-width: 992px) {
     .container {
          max-width: var(--container-max-width);
     }

     .nav-menu {
          display: flex;
          gap: 2rem;
     }

     .grid-3 {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 2rem;
     }
}

@media (max-width: 375px) {
     .logo img {
          max-height: 40px;
     }
}


/* =========================================
   HERO SECTION (Mobile Default)
   ========================================= */
:root {
     --primary-blue: #058bfa;
     --dark-blue: #0c141f;
     --accent-yellow: var(--cor-secundaria);
     --white: #FFFFFF;
     --success-green: #10B981;
     --closed-red: #EF4444;
     --altura-header: 70px;
}

.hero {
     position: relative;
     --overlay-cor: rgba(0, 0, 0, 0.6);
     background-image:
          linear-gradient(var(--overlay-cor), var(--overlay-cor)),
          var(--bg-mobile);

     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     padding-top: calc(var(--altura-header) + 3rem);
     padding-bottom: 4rem;
     padding-left: 1.25rem;
     padding-right: 1.25rem;
     overflow: hidden;
     color: var(--white);
     text-align: left;

     /* Máscara de Transparência */
     -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
     mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
     background-color: transparent;
}

.hero-content {
     position: relative;
     z-index: 2;
}

.hero-glow {
     position: absolute;
     top: -50px;
     right: -50px;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(255, 209, 0, 0.15), transparent 70%);
     border-radius: 50%;
     pointer-events: none;
     z-index: 1;
}

.hero-content {
     position: relative;
     z-index: 2;
     max-width: 600px;
}

/* 1. Título */
.hero h1 {
     font-size: 1.8rem;
     line-height: 1.2;
     font-weight: 900;
     margin-bottom: 1rem;
     color: var(--white);
}

/* 2. Subtítulo */
.hero-subtitle {
     font-size: 1.125rem;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 1.5rem;
     line-height: 1.6;
}

/* 3. Status Badge */
.status-wrapper {
     margin-bottom: 1.5rem;
}

.status-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     padding: 0.5rem 1rem;
     border-radius: 50px;
     font-size: 0.875rem;
     font-weight: 600;
     border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-indicator {
     width: 10px;
     height: 10px;
     border-radius: 50%;
}

.status-indicator.open {
     background-color: var(--success-green);
     box-shadow: 0 0 10px var(--success-green);
     animation: pulse 2s infinite;
}

.status-indicator.closed {
     background-color: var(--closed-red);
}

@keyframes pulse {
     0% {
          opacity: 1;
          transform: scale(1);
     }

     50% {
          opacity: 0.7;
          transform: scale(1.1);
     }

     100% {
          opacity: 1;
          transform: scale(1);
     }
}

/* 4. Rating */
.rating {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     margin-bottom: 2rem;
}

.stars {
     color: var(--accent-yellow);
     font-size: 1.25rem;
     letter-spacing: 2px;
}

.rating-text {
     font-size: 0.9rem;
     opacity: 0.9;
}

/* 5. Botão CTA */
.hero-cta {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: var(--cor-primaria);
     color: #fff;
     padding: 1rem 2rem;
     border-radius: 50px;
     font-weight: 700;
     font-size: 1.125rem;
     text-decoration: none;
     transition: transform 0.2s, box-shadow 0.2s;
     width: 100%;
}

.hero-cta:active {
     transform: scale(0.98);
}

/* =========================================
   MEDIA QUERIES (Tablet & Desktop)
   ========================================= */

@media (min-width: 768px) {
     .hero {
          background-image:
               linear-gradient(var(--overlay-cor), var(--overlay-cor)),
               var(--bg-desktop);
          background-position: center top;
          padding-top: calc(var(--altura-header) + 6rem);
          padding-bottom: 8rem;
     }

     .hero-content {
          max-width: 800px;
     }

     .hero h1 {
          font-size: 3.5rem;
          margin-bottom: 1.5rem;
     }

     .hero-subtitle {
          font-size: 1.25rem;
          max-width: 600px;
     }

     .hero-cta {
          width: auto;
          padding: 1rem 2.5rem;
     }

     .hero-cta:hover {
          background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
     }
}

/* =========================================
   TRUST BAR (Barra de Confiança)
   ========================================= */

.trust-bar {
     background-color: var(--cor-light);
     padding: 1.5rem 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
}

.trust-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 0.5rem;
}

.trust-icon {
     font-size: 1.8rem;
     margin-bottom: 0.5rem;
     width: 50px;
     height: 50px;
     background: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.trust-text {
     line-height: 1.2;
}

.trust-text strong {
     display: block;
     color: var(--cor-texto);
     font-size: 0.9rem;
     font-weight: 700;
     margin-bottom: 2px;
}

.trust-text span {
     font-size: 0.8rem;
     color: #333333;
     font-weight: 500;
}

/* =========================================
   DESKTOP (Expandir para linha única)
   ========================================= */
@media (min-width: 992px) {
     .trust-bar {
          padding: 2.5rem 0;
     }

     .trust-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 2rem;
     }

     .trust-item {
          flex-direction: row;
          text-align: left;
          align-items: center;
          justify-content: center;
          gap: 1rem;
     }

     .trust-icon {
          margin-bottom: 0;
          width: 60px;
          height: 60px;
          font-size: 2rem;
     }

     .trust-text strong {
          font-size: 1.1rem;
     }

     .trust-text span {
          font-size: 0.9rem;
     }
}


/* =========================================
   SEÇÃO: VITRINE DE SOLUÇÕES
   ========================================= */

.section-header {
     margin-bottom: 3rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
}

.section-header h2 {
     font-size: 2rem;
     font-weight: 800;
     margin-bottom: 0.5rem;
     color: #ffffff;
}

.section-header p {
     color: var(--cor-secundaria);
     font-size: 1.1rem;
}

.solucoes-grid {
     display: flex;
     flex-direction: column;
     /* Mobile: Um embaixo do outro */
     gap: 1.5rem;
}

/* CARDS (Base) */
.solucoes-card {
     /* Estilo Vidro Escuro */
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

     border-radius: 16px;
     padding: 2.5rem 2rem;
     /* Mais espaçamento interno */
     color: #fff;

     /* Flexbox interno para alinhar conteúdo e rodapé */
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     align-items: center;
     /* Centraliza tudo horizontalmente */
     text-align: center;
     /* Garante texto centralizado */

     transition: transform 0.3s ease, border-color 0.3s ease;
}

.solucoes-card:hover {
     transform: translateY(-5px);
     border-color: var(--cor-destaque);
     /* Brilha a borda no hover */
     background: rgba(255, 255, 255, 0.08);
}

.solucoes-card h3 {
     color: #fff;
     font-weight: 800;
     margin-bottom: 0.5rem;
     font-size: 1.3rem;
}

.solucoes-card p {
     color: rgba(255, 255, 255, 0.8);
     font-size: 0.95rem;
     line-height: 1.5;
     margin-bottom: 2rem;
}

.card-icon-glass {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     margin-bottom: 1.5rem;
     /* Margem apenas embaixo */

     display: flex;
     align-items: center;
     justify-content: center;

     /* Vidro mais claro para destacar o ícone */
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(8px);
     border: 1px solid rgba(255, 255, 255, 0.25);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);

     font-size: 2.2rem;
     text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* BOTÃO GLASS CTA (Chamativo) */
.btn-glass-cta {
     display: inline-block;
     padding: 0.8rem 2rem;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 700;
     text-decoration: none;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     color: #fff;

     /* O Segredo do Destaque: Cor da marca com transparência + Borda forte */
     background: rgba(5, 139, 250, 0.25);
     /* Azul translúcido */
     border: 1px solid rgba(5, 139, 250, 0.6);
     /* Borda azul sólida */
     box-shadow: 0 0 15px rgba(5, 139, 250, 0.2);
     /* Glow suave inicial */

     transition: all 0.3s ease;
}

.btn-glass-cta:hover {
     background: var(--cor-destaque);
     /* Vira azul sólido */
     box-shadow: 0 0 25px rgba(5, 139, 250, 0.6);
     /* Glow forte neon */
     transform: translateY(-2px);
}

.card-content {
     margin-bottom: 1.5rem;
}

/* ÍCONE (Círculo Amarelo + SVG Preto) */
.card-icon {
     width: 80px;
     height: 80px;
     background-color: var(--cor-destaque);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem auto;
     box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.card-icon svg {
     width: 40px;
     height: 40px;
     fill: #000000;
     transition: transform 0.3s ease;
}

.solucoes-card:hover .card-icon svg {
     transform: scale(1.1);
}

/* BOTÃO OUTLINE */
.btn-outline {
     display: inline-block;
     padding: 0.6rem 1.8rem;
     border: 2px solid #000;
     border-radius: 50px;
     color: #000;
     font-weight: 700;
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     background: transparent;
     transition: all 0.3s ease;
}

.btn-outline:hover {
     background-color: var(--cor-destaque);
     border-color: var(--cor-destaque);
     box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

/* =========================================
   MEDIA QUERIES (Responsividade)
   ========================================= */

/* =========================================
   MEDIA QUERY UNIFICADA (TABLET E DESKTOP)
   Aplica a centralização dinâmica a partir de 768px
   ========================================= */

@media (min-width: 768px) {
     .solucoes-grid {
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: center;
          gap: 2rem;
          max-width: 1000px;
          margin: 0 auto;
     }

     .solucoes-card {
          flex: 0 1 380px;
          width: 100%;
     }
}

@media (min-width: 992px) {
     .solucoes-grid {
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: center;
          gap: 2rem;
     }

     .solucoes-card {
          flex: 0 1 380px;
          width: 100%;
     }
}

/* =========================================
   SEÇÃO: REVIEWS (Grade Estática Dark)
   ========================================= */

.reviews-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1.5rem;
}

/* CARD DESIGN */
.review-card {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border-radius: 1rem;
     padding: 2rem;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     color: #fff;
     transition: transform 0.3s ease, background 0.3s ease;
}

.review-card:hover {
     background: rgba(255, 255, 255, 0.08);
     border-color: rgba(255, 255, 255, 0.2);
     transform: translateY(-5px);
}

.card-header {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1rem;
}

.reviewer-avatar {
     width: 45px;
     height: 45px;
     background-color: var(--cor-destaque);
     color: #000;
     font-weight: 800;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     flex-shrink: 0;
}

.reviewer-info {
     display: flex;
     flex-direction: column;
}

.reviewer-info strong {
     font-size: 0.95rem;
     color: #fff;
}

.stars {
     color: var(--cor-destaque);
     font-size: 0.9rem;
     letter-spacing: 1px;
}

.review-card p {
     font-size: 0.95rem;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.5;
     font-style: italic;
     margin: 0;
}

/* MEDIA QUERIES REVIEWS */
@media (min-width: 768px) {
     .reviews-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 2rem;
     }
}

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

/* =========================================
   SEÇÃO: QUEM SOMOS
   ========================================= */

.about-wrapper {
     max-width: 800px;
     margin: 0 auto;
     text-align: center;
}

.about-text strong {
     color: var(--cor-texto);
     font-weight: 700;
}

@media (min-width: 992px) {
     .about-section h2 {
          font-size: 2.5rem;
     }
}

/* =========================================
   FOOTER (Rodapé Geográfico Dark)
   ========================================= */

.main-footer {
     background-color: #000000;
     color: #ffffff;
     padding: 4rem 0 2rem;
     position: relative;
     padding-bottom: 6rem;
}

.footer-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem;
     margin-bottom: 3rem;
}

.footer-address p {
     margin-bottom: 0.5rem;
     font-size: 1rem;
     color: #e0e0e0;
}

.footer-hours {
     margin: 2rem 0;
     padding: 1.5rem 0;
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-hours h4 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 0.75rem;
     color: var(--cor-destaque);
}

.footer-hours ul li {
     font-size: 0.95rem;
     color: #e0e0e0;
     margin-bottom: 0.3rem;
}

.footer-contact-highlight span {
     display: block;
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: #999;
     margin-bottom: 0.25rem;
}

.phone-link {
     font-size: 1.75rem;
     font-weight: 800;
     color: #fff;
     text-decoration: none;
     transition: color 0.3s ease;
}

.phone-link:hover {
     color: var(--cor-destaque);
}

.footer-map {
     width: 100%;
     height: 300px;
     border-radius: 1rem;
     overflow: hidden;
     background: #222;
     border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
     width: 100% !important;
     height: 100% !important;
     display: block;
}

.footer-copy {
     text-align: center;
     font-size: 0.85rem;
     color: #888;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy a {
     color: #fff;
     text-decoration: none;
     font-weight: 700;
}

.footer-copy a:hover {
     color: var(--cor-destaque);
}

/* =========================================
   FOOTER
   ========================================= */

.main-footer {
     background-color: var(--cor-dark);
     color: var(--cor-destaque);
     padding: 4rem 0 2rem;
     position: relative;
     padding-bottom: 5rem;
}

.footer-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem;
     margin-bottom: 3rem;
}

.footer-title {
     font-size: 1.5rem;
     font-weight: 800;
     color: var(--texto-branco);
     margin-bottom: 1.5rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}

.footer-address p {
     margin-bottom: 0.5rem;
     font-size: 1rem;
     color: #e0e0e0;
}

.footer-hours {
     margin: 2rem 0;
     padding: 1.5rem 0;
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-hours h4 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 0.75rem;
     color: var(--cor-destaque);
}

.footer-hours ul li {
     font-size: 0.95rem;
     color: #e0e0e0;
     margin-bottom: 0.3rem;
}

.footer-contact-highlight span {
     display: block;
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: #999;
     margin-bottom: 0.25rem;
}

.phone-link {
     font-size: 1.75rem;
     font-weight: 800;
     color: #fff;
     text-decoration: none;
     transition: color 0.3s ease;
}

.phone-link:hover {
     color: var(--cor-destaque);
}

.footer-map {
     width: 100%;
     height: 300px;
     border-radius: 1rem;
     overflow: hidden;
     background: #222;
     border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
     width: 100% !important;
     height: 100% !important;
     display: block;
}

.footer-copy {
     text-align: center;
     font-size: 0.85rem;
     color: #888;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy a {
     color: #fff;
     text-decoration: none;
     font-weight: 700;
}

.footer-copy a:hover {
     color: var(--cor-destaque);
}

/* =========================================
   BARRA MOBILE FLUTUANTE
   ========================================= */

.mobile-bar {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     display: flex;
     padding: 0;
     margin: 0;
     z-index: 1000;
     box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.bar-btn {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 1.2rem 0;
     border-radius: 0;
     border: none;
     font-weight: 800;
     font-size: 1rem;
     color: #ffffff;
     text-decoration: none;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}

.btn-call {
     background-color: var(--cor-primaria);
}

.btn-zap {
     background-color: #0d9f16;
}

.bar-btn:active {
     filter: brightness(0.9);
}

/* =========================================
   MEDIA QUERIES (Desktop)
   ========================================= */

@media (min-width: 992px) {
     .main-footer {
          padding-bottom: 2rem;
     }

     .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 4rem;
          align-items: start;
     }

     .footer-map {
          height: 100%;
          min-height: 350px;
     }

     .mobile-bar {
          display: none;
     }
}

/* =========================================
   BOTÕES DE ROTA (Waze & Maps)
   ========================================= */

.footer-routes {
     margin-top: 1.5rem;
     padding-top: 1.5rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-routes span {
     display: block;
     font-size: 0.85rem;
     color: #999;
     margin-bottom: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}

.routes-wrapper {
     display: flex;
     gap: 1rem;
}

.route-btn {
     flex: 1;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 0.6rem 1rem;
     border: 1px solid;
     border-radius: 4px;
     background: transparent;
     font-size: 0.9rem;
     font-weight: 700;
     text-decoration: none;
     transition: all 0.3s ease;
}

.google-btn {
     border-color: #fff;
     color: #fff;
}

.google-btn:hover {
     background-color: #fff;
     color: #000;
}

.waze-btn {
     border-color: #33CCFF;
     color: #33CCFF;
}

.waze-btn:hover {
     background-color: #33CCFF;
     color: #000;
     box-shadow: 0 0 15px rgba(51, 204, 255, 0.4);
}

/* =========================================
   MAPA OTIMIZADO
   ========================================= */

.footer-map {
     width: 100%;
     height: 300px;
     border-radius: 1rem;
     overflow: hidden;
     background: #222;
     border: 1px solid rgba(255, 255, 255, 0.1);
     position: relative;
}

.map-placeholder {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #888;
     font-size: 0.9rem;
     background-color: #1a1a1a;
     z-index: 10;
     transition: opacity 0.3s ease;
}

.google-map-iframe {
     position: relative;
     width: 100% !important;
     height: 100% !important;
     display: block;
     opacity: 0;
     z-index: 5;
     transition: opacity 0.5s ease;
}

.footer-map.map-ready .map-placeholder {
     display: none;
}

.footer-map.map-ready .google-map-iframe {
     opacity: 1;
     z-index: 20;
}

@media (min-width: 992px) {
     .footer-map {
          height: 100%;
          min-height: 350px;
     }
}

/* =========================================
   PÁGINAS INTERNAS
   ========================================= */

.mb-section {
     margin-bottom: 3rem;
}

/* 1. HEADER INTERNO (Dark Gradient) */
.page-header-dark {
     position: relative;
     background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
     padding: calc(var(--altura-header) + 4rem) 0 5rem;
     color: #fff;
     text-align: center;
     overflow: hidden;
}

.page-header-dark::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
     background-size: 20px 20px;
     pointer-events: none;
}

.header-text-content {
     position: relative;
     z-index: 2;
     max-width: 800px;
     margin: 0 auto;
}

.header-text-content h1 {
     font-size: 2.2rem;
     font-weight: 900;
     margin-bottom: 1rem;
     color: var(--cor-destaque);
     letter-spacing: -0.5px;
}

.header-text-content .lead {
     font-size: 1.15rem;
     opacity: 0.9;
     font-weight: 400;
}

/* 2. BLOCO INTRODUTÓRIO */
.intro-product-block {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2.5rem;
     align-items: center;
     margin-bottom: 3rem;
}

.intro-text h2 {
     font-size: 1.8rem;
     font-weight: 800;
     margin-bottom: 1.5rem;
     color: var(--cor-secundaria);
}

.intro-text p {
     font-size: 1.05rem;
     color: var(--cor-texto);
     margin-bottom: 1rem;
}

.product-main-image {
     width: 100%;
     height: auto;
     border-radius: 1rem;
     box-shadow: var(--shadow-md);
     object-fit: cover;
     aspect-ratio: 4 / 3;
}

/* 3. GRID PRINCIPAL */
.content-grid-layout {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem;
}

.main-details-block h3 {
     font-size: 1.5rem;
     font-weight: 700;
     margin-top: 1rem;
     margin-bottom: 1rem;
     color: var(--cor-texto);
     border-left: 4px solid var(--cor-destaque);
     padding-left: 1rem;
}

.brands-list-svg {
     list-style: none;
     margin: 2rem 0;
}

.brands-list-svg li {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
     margin-bottom: 1.25rem;
     font-size: 1.05rem;
     color: var(--cor-texto);
}

.brands-list-svg li svg {
     flex-shrink: 0;
     margin-top: 2px;
}

/* 4. SIDEBAR E CARDS */
.sidebar-block {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
}

.service-highlight-card {
     background: #fff;
     border: 1px solid #eee;
     padding: 2rem;
     border-radius: 1rem;
     box-shadow: var(--shadow-sm);
     text-align: left;
     transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-highlight-card:hover {
     transform: translateY(-5px);
     border-color: var(--cor-destaque);
}

.icon-wrapper {
     margin-bottom: 1.5rem;
}

.icon-wrapper svg {
     fill: var(--cor-texto);
}

.service-highlight-card h4 {
     font-weight: 700;
     font-size: 1.2rem;
     margin-bottom: 0.75rem;
     color: var(--cor-texto);
}

.service-highlight-card p {
     font-size: 0.95rem;
     color: var(--cor-texto);
     line-height: 1.6;
}

/* 5. CTA BOX BRAND */
.cta-box-brand {
     background-color: #fff;
     border: 2px solid var(--cor-destaque);
     padding: 2rem;
     margin: 3rem 0;
     border-radius: 1rem;
     text-align: center;
     box-shadow: var(--shadow-sm);
}

.cta-label {
     font-weight: 700;
     font-size: 1.1rem;
     margin-bottom: 1.5rem;
     display: block;
     color: var(--cor-texto);
}

.btn-brand-cta {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 0.75rem;
     background-color: var(--cor-destaque);
     color: #000;
     padding: 1rem 2.5rem;
     border-radius: 50px;
     font-weight: 800;
     text-decoration: none;
     font-size: 1.1rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-brand-cta:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
     filter: brightness(1.05);
}

/* 6. FAQ */
.faq-grid-container {
     max-width: 800px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     gap: 1rem;
}

.faq-accordion {
     background: #fff;
     border-radius: 0.75rem;
     border: 1px solid rgba(0, 0, 0, 0.1);
     overflow: hidden;
     transition: all 0.3s ease;
}

.faq-accordion[open] {
     border-color: var(--cor-destaque);
     box-shadow: var(--shadow-sm);
}

.faq-accordion summary {
     padding: 1.25rem;
     font-weight: 700;
     font-size: 1.05rem;
     cursor: pointer;
     background-color: #fff;
     list-style: none;
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: var(--cor-texto);
}

.faq-accordion summary::-webkit-details-marker {
     display: none;
}

.faq-accordion summary::after {
     content: '+';
     font-size: 1.5rem;
     font-weight: 400;
     color: var(--cor-texto);
     transition: transform 0.3s ease;
}

.faq-accordion[open] summary::after {
     content: '\2212';
     color: var(--cor-destaque);
     transform: rotate(180deg);
}

.faq-content {
     padding: 0 1.25rem 1.5rem 1.25rem;
}

.faq-content p {
     color: var(--cor-texto);
     font-size: 1rem;
     line-height: 1.7;
}

/* =========================================
   MEDIA QUERIES (Desktop)
   ========================================= */
@media (min-width: 992px) {
     .page-header-dark {
          padding: calc(var(--altura-header) + 6rem) 0 7rem;
     }

     .header-text-content h1 {
          font-size: 3rem;
     }

     .intro-product-block {
          grid-template-columns: 1fr 1fr;
          gap: 4rem;
     }

     .content-grid-layout {
          grid-template-columns: 2fr 1fr;
          gap: 4rem;
          align-items: start;
     }

     .intro-text h2 {
          font-size: 2.5rem;
     }
}

/* COOKIE NOTICE */
#cookie-notice {
     bottom: 58px;
}

@media (min-width: 992px) {
     #cookie-notice {
          bottom: 0;
          flex-direction: row !important;
          justify-content: center;
          gap: 2rem;
          padding: 1rem 2rem;
     }

     #cookie-notice p {
          margin-bottom: 0 !important;
     }

     #cookie-notice button {
          width: auto !important;
     }
}

.review-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     padding: 0.5rem 1rem;
     border-radius: 50px;
     font-size: 0.875rem;
     font-weight: 600;
     border: 1px solid rgba(255, 255, 255, 0.2);
}

.reviewer-avatar-img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid var(--brand-yellow);
}

/* =========================================
   NOVA TRUST BAR (PPD - DARK GLASSMORPHISM)
   ========================================= */

.trust-bar.glass-style {
     background: transparent;
     position: relative;
     overflow: hidden;
     padding: 4rem 0;
}

.trust-bar.glass-style .trust-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
     position: relative;
     z-index: 2;
}

.trust-item.trust-card {
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-top: 1px solid rgba(255, 255, 255, 0.3);
     box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
     border-radius: 16px;
     padding: 1.2rem 1rem;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     text-align: left;
     height: 100%;
     transition: all 0.3s ease;
}

.trust-item.trust-card:hover {
     transform: translateY(-5px);
     background: rgba(255, 255, 255, 0.15);
     border-color: #666;
     box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.4);
}

/* Ícone */
.trust-bar.glass-style .trust-icon {
     width: 54px;
     height: 54px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 0.8rem;
     background: rgba(255, 255, 255, 0.12);
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(8px);
     border: 1px solid rgba(255, 255, 255, 0.053);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
     font-size: 1.8rem;
     filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
}

.trust-bar.glass-style .trust-text strong {
     display: block;
     color: #ffffff;
     font-size: 0.95rem;
     line-height: 1.3;
     font-weight: 700;
     margin-bottom: 0.5rem;
     letter-spacing: 0.5px;
}

.trust-bar.glass-style .trust-text span {
     display: block;
     font-size: 0.8rem;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.5;
     font-weight: 400;
}

@media (min-width: 768px) {
     .trust-bar.glass-style .trust-grid {
          gap: 2rem;
     }

     .trust-item.trust-card {
          padding: 2rem;
     }

     .trust-bar.glass-style .trust-text strong {
          font-size: 1.2rem;
     }

     .trust-bar.glass-style .trust-text span {
          font-size: 0.95rem;
     }
}

@media (min-width: 992px) {
     .trust-bar.glass-style .trust-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 2.5rem;
     }
}

/* =========================================
   PÁGINAS DE SERVIÇOS (PPD SERVICE ANATOMY)
   ========================================= */

/* 1. HERO INTERNO */
.page-hero {
     padding-top: calc(var(--altura-header) + 4rem);
     padding-bottom: 3rem;
     text-align: center;
}

.hero-glass-content h1 {
     font-size: 1.8rem;
     font-weight: 800;
     margin-bottom: 1rem;
     color: #fff;
     text-shadow: 0 0 20px rgba(5, 139, 250, 0.4);
}

/* 2. INTRO GRID */
.intro-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
     align-items: center;
}

.glass-image {
     width: 100%;
     border-radius: 16px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
     aspect-ratio: 4 / 3;
     object-fit: cover;
}

/* 4. PROCESSO */
.process-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1rem;
}

.step-number {
     font-size: 2rem;
     font-weight: 900;
     color: var(--cor-destaque);
     margin-bottom: 0.5rem;
     text-shadow: 0 0 10px rgba(5, 139, 250, 0.4);
}

/* 6. FAQ GLASS */
.faq-wrapper {
     max-width: 800px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     gap: 1rem;
}

.glass-faq {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     overflow: hidden;
     transition: all 0.3s ease;
}

.glass-faq[open] {
     background: rgba(255, 255, 255, 0.1);
     border-color: var(--cor-destaque);
}

.glass-faq summary {
     padding: 1.2rem;
     cursor: pointer;
     font-weight: 700;
     color: #fff;
     list-style: none;
     display: flex;
     justify-content: space-between;
     align-items: center;
}

.glass-faq summary::after {
     content: '+';
     font-size: 1.5rem;
     font-weight: 300;
}

.glass-faq[open] summary::after {
     content: '-';
     color: var(--cor-destaque);
}

.faq-answer {
     padding: 0 1.2rem 1.2rem 1.2rem;
     color: rgba(255, 255, 255, 0.8);
     font-size: 0.95rem;
     line-height: 1.6;
}

@media (min-width: 768px) {
     .intro-grid {
          grid-template-columns: 1fr 1fr;
          gap: 4rem;
     }

     .process-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 1.5rem;
     }

     .hero-glass-content h1 {
          font-size: 2.1rem;
     }
}

/* =========================================
   CORREÇÃO GLOBAL: ÍCONES E TEXTO (DARK GLASS)
   ========================================= */

/* 1. FORÇAR TEXTO BRANCO NOS CARDS */
.trust-item.trust-card .trust-text strong,
.trust-item.trust-card .trust-text h3 {
     color: #ffffff !important;
     font-weight: 800;
}

.trust-item.trust-card .trust-text span,
.trust-item.trust-card .trust-text p {
     color: rgba(255, 255, 255, 0.85) !important;
}

.text-white-glass {
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.6;
     margin-bottom: 1rem;
}

/* 2. ÍCONE "BOLHA DE VIDRO" (GLOBAL) */
.trust-icon {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1rem;

     background: rgba(255, 255, 255, 0.12) !important;
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(8px);
     border: 1px solid rgba(255, 255, 255, 0.3);

     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.3);

     font-size: 2rem;
     text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* 3. GRIDS AUXILIARES */
.service-cards,
.process-grid {
     display: grid;
     gap: 1.5rem;
     grid-template-columns: 1fr;
}

@media (min-width: 992px) {

     .service-cards,
     .process-grid {
          grid-template-columns: repeat(3, 1fr);
     }

     .process-grid {
          grid-template-columns: repeat(4, 1fr);
     }
}

/* Correção de alinhamento do Subtítulo na Hero Interna */
.hero-glass-content .hero-subtitle {
     margin-left: auto;
     margin-right: auto;
     max-width: 700px;
     /* Um pouco mais largo para acomodar bem o texto novo */
}

/* =========================================
   GALERIA MOSAICO (INTRO SERVIÇOS)
   ========================================= */

.intro-gallery {
     display: grid;
     gap: 1rem;
     width: 100%;
}

/* MOBILE (Padrão):
   Vamos fazer um grid de 2 colunas, onde a primeira foto ocupa a largura toda
   e as outras duas dividem o espaço embaixo. Fica ótimo no celular. */
.intro-gallery {
     grid-template-columns: 1fr 1fr;
     grid-template-rows: auto auto;
}

/* A imagem principal ocupa as duas colunas do topo */
.img-main {
     grid-column: span 2;
     aspect-ratio: 16 / 9;
     /* Mais panorâmica no mobile */
     height: 100%;
}

/* As imagens menores ficam quadradas */
.img-sub {
     aspect-ratio: 1 / 1;
     height: 100%;
}

/* DESKTOP (Ajuste Fino)
   Aqui transformamos em um layout mais sofisticado:
   Esquerda: Foto Grande | Direita: Duas pequenas empilhadas */
@media (min-width: 992px) {
     .intro-gallery {
          grid-template-columns: 2fr 1fr;
          /* 2 partes para a grande, 1 para as pequenas */
          grid-template-rows: 1fr 1fr;
          /* 2 linhas de altura igual */
          height: 450px;
          /* Altura fixa para alinhar o grid */
     }

     .img-main {
          grid-column: 1 / 2;
          /* Coluna 1 */
          grid-row: 1 / 3;
          /* Ocupa as duas linhas (altura total) */
          aspect-ratio: auto;
          /* Respeita a altura do grid */
     }

     .img-sub {
          aspect-ratio: auto;
     }
}

/* Ajuste fino na classe glass-image para garantir que preencham o espaço */
.intro-gallery .glass-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* Garante que a foto não estique/deforme */
}

/* =========================================
   LIGHTBOX / MODAL DE IMAGEM (GLASS STYLE)
   ========================================= */

/* O Fundo do Modal (Escondido por padrão) */
.glass-modal {
     display: none;
     /* Escondido */
     position: fixed;
     z-index: 9999;
     /* Fica acima de TUDO, inclusive do Header */
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;

     /* Fundo Escuro com Blur (Glassmorphism Dark) */
     background-color: rgba(12, 20, 31, 0.95);
     backdrop-filter: blur(15px);
     -webkit-backdrop-filter: blur(15px);

     /* Flex para centralizar a imagem */
     align-items: center;
     justify-content: center;
     flex-direction: column;

     /* Animação de entrada suave */
     opacity: 0;
     transition: opacity 0.3s ease;
}

/* Quando estiver ativo (via JS) */
.glass-modal.active {
     display: flex;
     opacity: 1;
}

/* A Imagem dentro do Modal */
.modal-content {
     margin: auto;
     display: block;
     max-width: 90%;
     max-height: 85vh;
     border-radius: 12px;
     box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
     border: 1px solid rgba(255, 255, 255, 0.2);

     /* Animação de Zoom ao abrir */
     animation-name: zoom;
     animation-duration: 0.4s;
}

/* Legenda (Opcional, pega o texto do ALT) */
#caption {
     margin-top: 1rem;
     color: #fff;
     font-size: 1.1rem;
     text-align: center;
     font-weight: 300;
}

/* Botão Fechar (X) */
.close-modal {
     position: absolute;
     top: 20px;
     right: 35px;
     color: #f1f1f1;
     font-size: 40px;
     font-weight: bold;
     transition: 0.3s;
     cursor: pointer;
     z-index: 10000;
}

.close-modal:hover,
.close-modal:focus {
     color: var(--cor-destaque);
     text-decoration: none;
     cursor: pointer;
}

/* Animação Keyframe */
@keyframes zoom {
     from {
          transform: scale(0.8);
          opacity: 0
     }

     to {
          transform: scale(1);
          opacity: 1
     }
}

/* Cursor de "lupa" nas imagens da galeria para indicar clique */
.intro-gallery .glass-image {
     cursor: zoom-in;
     transition: transform 0.3s ease;
}

.intro-gallery .glass-image:hover {
     transform: scale(1.02);
     /* Pequeno zoom no hover */
     filter: brightness(1.1);
}

/* =========================================
   FOOTER FULLWIDTH GLASS (VERSÃO FINAL)
   ========================================= */

.glass-footer-full {
     width: 100%;
     margin-top: 5rem;
     position: relative;
     z-index: 10;

     background: rgba(12, 20, 31, 0.9);
     /* Um pouco mais escuro para contraste */
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);

     border-radius: 40px 40px 0 0;
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);

     padding: 4rem 0 2rem 0;
     color: #fff;
     padding-bottom: 6rem;
     /* Espaço para barra mobile */
}

@media (min-width: 992px) {
     .glass-footer-full {
          padding-bottom: 2rem;
     }
}

.footer-grid-glass {
     display: flex;
     flex-direction: column;
     gap: 3rem;
     margin-bottom: 3rem;
}

/* Títulos das Colunas */
.footer-col h4 {
     color: var(--cor-destaque);
     font-size: 1.1rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 1.2rem;
     font-weight: 800;
}

/* LOGO */
.footer-logo {
     max-width: 180px;
     margin-bottom: 1.5rem;
     /* No mobile será centralizado via media query abaixo */
}

/* REDES SOCIAIS */
.social-links {
     display: flex;
     gap: 1rem;
}

.social-btn {
     display: flex;
     padding: 0.6rem 1.2rem;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 600;
     transition: all 0.3s ease;
     color: #fff;
}

.social-btn:hover {
     background: var(--cor-destaque);
     border-color: var(--cor-destaque);
     transform: translateY(-2px);
     box-shadow: 0 0 15px rgba(5, 139, 250, 0.3);
}

/* LISTA DE CONTATO */
.contact-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 1rem;
}

.time-block {
     font-size: 0.95rem;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.6;
     margin-bottom: 0.5rem;
}

.contact-link {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     font-size: 1rem;
     color: #fff;
     transition: color 0.3s;
}

.contact-link span {
     font-size: 1.2rem;
}

.contact-link:hover {
     color: var(--cor-destaque);
}

/* PAGAMENTOS */
.payment-badges {
     display: flex;
     flex-wrap: wrap;
     gap: 0.8rem;
     margin-top: 1rem;
}

.pay-badge {
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: #fff;
     font-weight: 600;
     font-size: 0.8rem;
     padding: 0.4rem 0.8rem;
     border-radius: 6px;
}

/* =========================================
   NOVA SEÇÃO DE ENTREGA (DESIGN LIMPO)
   ========================================= */
.delivery-strip {
     display: flex;
     flex-direction: column;
     /* Mobile first */
     align-items: center;
     gap: 1.5rem;

     background: rgba(5, 139, 250, 0.05);
     /* Fundo azul BEM sutil */
     border: 1px solid rgba(5, 139, 250, 0.2);
     border-radius: 16px;
     padding: 1.5rem;
     margin-bottom: 3rem;
     text-align: center;
}

.delivery-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 0.5rem;
}

.delivery-icon {
     font-size: 1.8rem;
     margin-bottom: 0.2rem;
     filter: drop-shadow(0 0 5px rgba(5, 139, 250, 0.5));
}

.delivery-item strong {
     display: block;
     color: #fff;
     font-size: 1.1rem;
}

.delivery-item span {
     color: rgba(255, 255, 255, 0.7);
     font-size: 0.9rem;
}

/* Linha divisória no Desktop */
.delivery-divider {
     display: none;
     width: 1px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
}

/* COPY E LEGAL */
.footer-bottom-glass {
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     text-align: center;
     font-size: 0.85rem;
     color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-glass a {
     color: rgba(255, 255, 255, 0.8);
}

.legal-links {
     margin-bottom: 1rem;
}

.separator {
     margin: 0 10px;
     color: rgba(255, 255, 255, 0.2);
}

/* =========================================
   MEDIA QUERY: TABLET & DESKTOP (Layout Lado a Lado)
   ========================================= */
@media (min-width: 992px) {

     /* Grid Colunas */
     .footer-grid-glass {
          flex-direction: row;
          justify-content: space-between;
          text-align: left;
          /* Desktop alinhado à esquerda */
     }

     /* Entrega em Linha */
     .delivery-strip {
          flex-direction: row;
          justify-content: center;
          gap: 4rem;
     }

     .delivery-item {
          flex-direction: row;
          text-align: left;
     }

     .delivery-divider {
          display: block;
          /* Aparece a linha no meio */
     }

     .brand-col {
          flex: 1;
     }

     .info-col {
          flex: 1;
     }

     .payment-col {
          flex: 1;
     }

     .mobile-break {
          display: none;
     }
}

/* =========================================
   MEDIA QUERY: MOBILE (CENTRALIZAÇÃO TOTAL)
   O "Pulo do Gato" para a elegância no celular
   ========================================= */
@media (max-width: 991px) {
     .footer-grid-glass {
          align-items: center;
          /* Centraliza os blocos */
          text-align: center;
          /* Centraliza os textos */
     }

     .footer-col {
          display: flex;
          flex-direction: column;
          align-items: center;
          /* Força itens internos ao centro */
     }

     .contact-link {
          justify-content: center;
          /* Centraliza ícones e texto */
     }

     .social-links {
          justify-content: center;
     }

     .payment-badges {
          justify-content: center;
     }
}

/* Classes da barra sticky e cookies mantidas iguais */
.mobile-bar {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     display: flex;
     z-index: 1000;
     box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.bar-btn {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 1.2rem 0;
     border: none;
     font-weight: 800;
     font-size: 1rem;
     color: #ffffff;
     text-decoration: none;
     text-transform: uppercase;
}

.btn-call {
     background-color: var(--cor-primaria);
}

.btn-zap {
     background-color: #0d9f16;
}

@media (min-width: 992px) {
     .mobile-bar {
          display: none;
     }
}

/* Cookie igual ao anterior */
.glass-cookie {
     position: fixed;
     bottom: 1.5rem;
     left: 50%;
     transform: translateX(-50%);
     width: calc(100% - 2rem);
     max-width: 600px;
     background: rgba(0, 0, 0, 0.9);
     border: 1px solid var(--cor-destaque);
     border-radius: 12px;
     padding: 1.5rem;
     z-index: 1001;
     display: none;
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     gap: 1.5rem;
}

@media (max-width: 768px) {
     .glass-cookie {
          flex-direction: column;
          text-align: center;
          bottom: 5rem;
     }
}