/* =========================================
   1. IMPORTAÇÃO E DECLARAÇÃO DE FONTES
   ========================================= */
@font-face {
    font-family: 'Eastman Alternate Trial';
    src: url('../fonts/EastmanAlternateTrial.woff2') format('woff2'),
         url('../fonts/EastmanAlternateTrial.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-titles: 'Eastman Alternate Trial', sans-serif;
    --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* =========================================
   2. CONFIGURAÇÃO GLOBAL E PARALLAX NO BODY
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1;
    background-color: #0b0f1900;
    background-image: url('../img/fundo-alfadesignstore.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Camada escura geral cobrindo o site inteiro de forma elegante */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-color: rgba(11, 15, 25, 0);
    z-index: -1;
}

h1, h2, h3, h4, h5, h6, 
.badge, 
.section-tag {
    font-family: var(--font-titles);
    letter-spacing: -0.5px;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.badge {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
}

.hero-content p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background-color: #38bdf8;
    color: #0b0f19;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: #0ea5e9;
}

/* =========================================
   4. SEÇÃO DE SERVIÇOS
   ========================================= */
.services-section {
    position: relative;
    z-index: 2;
    background-color: transparent;
    padding: 120px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-tag {
    color: #38bdf8;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.services-container h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #ffffff;
    max-width: 700px;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(11, 15, 25, 0.85);
}

.service-number {
    font-family: var(--font-titles);
    font-size: 20px;
    color: #38bdf8;
    font-weight: 700;
}

.service-card h3 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
}

.service-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
}

.diagnostic-section {
    position: relative;
    z-index: 2;
    background-color: #0b0f19;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.diagnostic-container {
    max-width: 750px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section-tag {
    color: #38bdf8;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.diagnostic-container h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.diagnostic-container p {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 10px;
}

.diagnostic-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    backdrop-filter: blur(10px);
}

.input-group {
    display: flex;
    gap: 12px;
    width: 100%;
}

.input-group input {
    flex: 1;
    background: rgba(11, 15, 25, 0);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 18px;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: #38bdf8;
}

.btn-diagnostic {
    background-color: #38bdf8;
    color: #0b0f19be;
    border: none;
    padding: 0 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.btn-diagnostic:hover {
    background-color: #0ea5e9;
}

.hidden {
    display: none !important;
}

/* Estados interativos */
.diagnostic-state {
    margin-top: 25px;
    text-align: left;
}

.result-card {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 24px;
    border-radius: 8px;
}

.result-card h3 {
    color: #f87171;
    font-size: 18px;
    margin-bottom: 15px;
}

.result-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    color: #cbd5e1;
    font-size: 14px;
}

.result-alert {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 15px;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(56, 189, 248, 0.2);
    border-top-color: #38bdf8;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.diagnostic-section {
    position: relative;
    z-index: 2;
    background-color: transparent; /* Deixa a imagem de fundo aparecer */
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.diagnostic-box {
    background: rgba(11, 15, 25, 0); /* Vidro fosco igualzinho aos cards de serviços */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    backdrop-filter: blur(10px);
}

/* HEADER TRANSPARENTE E LINHA DIVISÓRIA */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Linha sutil de divisão */
    padding: 20px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.logo span {
    color: #00d2ff;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: #00d2ff;
}

/* BOTÃO FLUTUANTE DE FALE CONOSCO (CANTTO INFERIOR DIREITO) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulsar 2s infinite ease-in-out;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

/* ANIMAÇÃO DE PISCAR / PULSAR */
@keyframes pulsar {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 210, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

html {
    scroll-behavior: smooth;
}

/* SEÇÃO MÉTODO ALFA */
.metodo-section {
    position: relative;
    z-index: 2;
    background-color: transparent;
    padding: 120px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metodo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.metodo-container h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
    max-width: 700px;
    line-height: 1.2;
}

.metodo-subtitle {
    color: #94a3b8;
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 30px;
}

.metodo-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.metodo-card {
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 12px;
    width: 240px;
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.metodo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.4);
}

.metodo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #ffffff;
    font-family: var(--font-titles);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.metodo-card h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.metodo-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}

.metodo-arrow {
    color: #38bdf8;
    font-size: 24px;
    font-weight: bold;
    display: none; /* Oculto por padrão no mobile, aparece no desktop */
}

@media (min-width: 900px) {
    .metodo-arrow {
        display: block;
    }
}

/* SEÇÃO DEPOIMENTOS */
.depoimentos-section {
    position: relative;
    z-index: 2;
    background-color: transparent;
    padding: 120px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.depoimentos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.depoimentos-container h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
    max-width: 700px;
    line-height: 1.2;
}

.depoimentos-subtitle {
    color: #94a3b8;
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 20px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.depoimento-card {
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.4);
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
}

.depoimento-texto {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
}

.cliente-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
}

.cliente-info strong {
    color: #ffffff;
    font-size: 16px;
}

.cliente-info span {
    color: #38bdf8;
    font-size: 13px;
}

/* SEÇÃO ESTATÍSTICAS */
.stats-section {
    position: relative;
    z-index: 2;
    background-color: transparent;
    padding: 120px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.stats-header {
    text-align: center;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stats-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.stats-header p {
    color: #94a3b8;
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 10px;
}

.stat-box {
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.4);
}

.stat-box h3 {
    font-family: var(--font-titles);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: #38bdf8;
}

.stat-box p {
    color: #94a3b8;
    font-size: 15px;
    font-weight: 500;
}

/* RESPONSIVIDADE GLOBAL - AJUSTES PARA TABLETS E CELULARES */

@media (max-width: 992px) {
    .header-nav {
        display: none; /* Caso queira adicionar um menu hambúrguer depois, por ora o layout flui livre */
    }
    
    .header-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Espaçamentos gerais das seções */
    section, 
    .services-section, 
    .diagnostic-section, 
    .metodo-section, 
    .depoimentos-section, 
    .stats-section {
        padding: 70px 15px !important;
    }

    /* Títulos principais responsivos */
    h2, 
    .metodo-container h2, 
    .depoimentos-container h2, 
    .stats-header h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    /* Grids empilhados em coluna única */
    .services-grid,
    .metodo-grid,
    .depoimentos-grid,
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Cards e caixas adaptados para telas pequenas */
    .service-card,
    .diagnostic-box,
    .metodo-card,
    .depoimento-card,
    .stat-box {
        width: 100% !important;
        min-width: unset !important;
        padding: 25px 20px !important;
    }

    /* Ajuste de setas do método alfa no mobile */
    .metodo-arrow {
        display: none !important;
    }

    /* Botão flutuante ajustado para não tapar conteúdos importantes no celular */
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        padding: 12px 18px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px !important;
    }
    
    .whatsapp-float {
        padding: 10px 14px !important;
        font-size: 12px !important;
    }
}

/* SEÇÃO CTA FINAL */
.cta-final-section {
    position: relative;
    z-index: 2;
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 100px 20px;
    text-align: center;
}

.cta-final-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-final-container h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.cta-final-container p {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.3);
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #00d2ff;
    background: rgba(0, 210, 255, 0.1);
}

/* FOOTER */
.site-footer {
    position: relative;
    z-index: 2;
    background: #07090f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 20px 20px 20px;
    color: #94a3b8;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand p {
    font-size: 14px;
    margin-top: 5px;
    color: #64748b;
}

.footer-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #00d2ff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

/* SEÇÃO CTA FINAL COM FUNDO TRANSPARENTE */
.cta-final-section {
    position: relative;
    z-index: 2;
    background: transparent; /* Deixa o degradê do fundo aparecer por trás */
    padding: 100px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* SEÇÃO CONTATO */
.contato-section {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 120px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contato-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.contato-container h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.contato-container > p {
    color: #94a3b8;
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 20px;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 10px;
}

.contato-card {
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contato-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.4);
}

.contato-icon {
    font-size: 32px;
    margin-bottom: 5px;
}

.contato-card h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.contato-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}

.contato-link {
    color: #38bdf8;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

/* ========================================== */
/* FOOTER: CONFIGURAÇÃO DE CORES E LAYOUT     */
/* ========================================== */
.site-footer {
    width: 100%;
    /* COR DE FUNDO DO FOOTER: Altere aqui se quiser mudar o fundo */
    background-color: #070910 !important; 
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 20px 20px 20px;
    box-sizing: border-box;
    /* COR DOS TEXTOS GERAIS DO FOOTER */
    color: #94a3b8 !important; 
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h4 {
    /* COR DOS TÍTULOS (Navegação, Contato) */
    color: #ffffff !important; 
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.6;
    margin-top: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    /* COR DOS LINKS DO MENU */
    color: #94a3b8 !important; 
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    /* COR DOS LINKS AO PASSAR O MOUSE (Hover) */
    color: #38bdf8 !important; 
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    text-align: center;
    /* COR DO TEXTO DE COPYRIGHT ABAIXO */
    color: #64748b !important; 
    font-size: 13px;
}

/* Tamanho controlado do Logo no Footer */
.site-footer .logo-img {
    height: 65px !important;
    width: auto !important;
    max-width: none !important;
    display: block;
}

/* ========================================== */
/* CENTRALIZAÇÃO TOTAL NO MOBILE (Até 768px)  */
/* ========================================== */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 20px 20px 20px !important;
        text-align: center !important;
    }

    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .footer-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .footer-col.footer-brand {
        align-items: center !important;
        text-align: center !important;
    }

    .footer-col.footer-brand .logo-img {
        margin: 0 auto 55px auto !important;
        height: 65px !important;
    }

    .footer-col ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }

    .footer-col ul li {
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    .footer-bottom {
        text-align: center !important;
        margin-top: 30px !important;
        width: 100% !important;
    }
}

/* ========================================== */
/* FOOTER: COLUNA ÚNICA E CENTRALIZADA        */
/* ========================================== */
.site-footer {
    width: 100%;
    background-color: #070910 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 20px 20px 20px;
    box-sizing: border-box;
    color: #94a3b8 !important;
    font-size: 17px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h4 {
    color: #ffffff !important;
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.3;
    margin-top: 25px;
    font-size: 18px;
    color: #00d9ff !important;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 5px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94a3b8 !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #38bdf8 !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    text-align: center;
    color: #64748b !important;
    font-size: 15px;
}

.site-footer .logo-img {
    height: 100px !important;
    width: auto !important;
    max-width: none !important;
    display: block;
}

/* ========================================== */
/* MOBILE: 1 COLUNA CENTRALIZADA              */
/* ========================================== */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 20px 20px !important;
        text-align: center !important;
    }

    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding-bottom: 30px !important;
    }

    .footer-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .footer-col.footer-brand {
        align-items: center !important;
        text-align: center !important;
    }

    .footer-col.footer-brand .logo-img {
        margin: 0 auto 0px auto !important;
        height: 165px !important;
    }

    .footer-col ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }

    .footer-col ul li {
        margin-bottom: 8px !important;
        text-align: center !important;
    }

    .footer-bottom {
        text-align: center !important;
        margin-top: 20px !important;
        width: 100% !important;
    }
}

/* ========================================== */
/* HEADER & MENU RESPONSIVO                   */
/* ========================================== */
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.site-header .logo,
.site-header .logo-img,
.logo-img {
    height: 60px !important;
    max-height: 38px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
    display: block;
}

.header-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: #38bdf8;
}

/* Botão Sanduíche */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10000;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    pointer-events: none; /* Impede que o span bloqueie o clique do botão */
}

/* Menu Dropdown Mobile Inicialmente Oculto */
.mobile-menu {
    display: none;
}

/* ========================================== */
/* MOBILE HEADER (Até 768px)                  */
/* ========================================== */
@media (max-width: 768px) {
    .header-container {
        padding: 12px 20px !important;
    }

    .header-nav {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .mobile-menu.active {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(11, 15, 25, 0.98) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 25px 0 !important;
        text-align: center !important;
        gap: 15px !important;
        z-index: 9998 !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }

    .mobile-menu a {
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 16px !important;
        padding: 10px 0;
        display: block;
    }
}

/* Correção do Header e Menu Dropdown */
.site-header {
    position: relative;
    width: 100%;
}

.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu.active {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #0b0f19 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0 !important;
        text-align: center !important;
        gap: 15px !important;
        z-index: 99999 !important;
    }

    .mobile-menu.active a {
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 16px !important;
        display: block !important;
        padding: 10px 0;
    }
}

/* ========================================== */
/* TAMANHO DOS LOGOS (HEADER E FOOTER)        */
/* ========================================== */

/* Logo do Header */
.site-header .logo img,
.site-header .logo-img {
    height: 110px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
}

/* Logo do Footer */
.site-footer .logo img,
.site-footer .logo-img,
.footer-col .logo-img {
    height: 110px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
}