/* ================= IMPORTAÇÃO DE FONTES ================= */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@400;600&display=swap');

/* ================= VARIÁVEIS GLOBAIS ================= */
:root {
    --primary-blue: #0d6efd;
    --primary-red: #d81324;
    --dark-bg: #050505;
    --text-color: #ffffff;
    --text-gray: #a1a1aa;
    
    /* Fontes */
    --font-heading: 'Orbitron', sans-serif; /* Fonte "Quadrada/Tech" */
    --font-body: 'Inter', sans-serif;       /* Fonte de Leitura */
}

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

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden; /* Evita rolagem horizontal indesejada */
}

a { text-decoration: none; }
ul { list-style: none; }

/* Container Largo (95%) para jogar itens para os cantos */
.container {
    width: 95%;
    max-width: 1800px; /* Limite para telas gigantes (4k) */
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= HEADER / NAV ================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent; /* Começa transparente */
}

/* Estado quando rola a página (adicionado via JS) */
#header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px; /* Ajuste conforme sua logo */
    width: auto;
}

/* Links do Menu Desktop */
.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading); /* Orbitron */
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}

/* Ações do Header (Botão + Menu Hamburguer) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-header {
    background-color: var(--primary-red);
    color: white;
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-red);
}

.btn-header:hover {
    background-color: transparent;
    box-shadow: 0 0 15px rgba(216, 19, 36, 0.6);
}

/* Ícone Hamburguer (Só aparece no mobile) */
.mobile-menu-icon {
    display: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu-icon:hover {
    color: var(--primary-blue);
}

/* ================= MENU MOBILE (OVERLAY) ================= */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Escondido na direita */
    width: 85%;   /* Ocupa a maior parte da tela */
    height: 100vh;
    background: #0a0a0a;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid var(--primary-blue);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
}

.mobile-nav-overlay.active {
    right: 0; /* Aparece na tela */
}

.close-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.mobile-links {
    text-align: center;
    width: 100%;
}

.mobile-links li {
    margin: 30px 0;
}

.mobile-links a {
    color: white;
    font-size: 22px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-mobile-cta {
    color: var(--primary-red) !important;
    font-weight: 900;
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    /* Substitua pela URL da sua imagem */
    background-image: url('img/hero-car.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Overlay Escuro (Foco no Texto) */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradiente forte na esquerda (preto sólido) sumindo para a direita */
    background: linear-gradient(90deg, #050505 25%, rgba(5,5,5,0.95) 45%, rgba(5,5,5,0.2) 100%);
    z-index: 1;
}

/* --- BOLA DE LUZ AZUL (EFEITO GLOW) --- */
.blue-glow-blob {
    position: absolute;
    top: 20%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.25) 0%, rgba(13, 110, 253, 0) 70%);
    filter: blur(60px);
    z-index: 1; /* Atrás do texto, mas na frente do fundo */
    animation: moveBlob 10s infinite alternate ease-in-out;
    pointer-events: none; /* Deixa clicar através dela */
}

@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(50px, -30px) scale(1.1); opacity: 1; }
    100% { transform: translate(-30px, 40px) scale(0.95); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2; /* Garante que o texto fique por cima de tudo */
    width: 100%;
}

.hero-text {
    max-width: 800px; /* Texto largo */
}

/* Badge / Pílula */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    font-family: var(--font-body);
}

.badge i { color: var(--primary-blue); }

/* Título Principal */
.hero-text h1 {
    font-family: var(--font-heading); /* Orbitron */
    font-size: 68px; /* Tamanho grande conforme referência */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gradiente no Texto */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* Garante que o gradiente pegue */
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 600px;
}

.highlight-blue { color: var(--primary-blue); font-weight: 600; }
.highlight-red { color: var(--primary-red); font-weight: 600; }

/* Botões da Hero */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
    padding: 18px 38px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

/* Botão Vermelho */
.btn-primary {
    background-color: var(--primary-red);
    color: white;
    border: 1px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: transparent;
    box-shadow: 0 0 25px rgba(216, 19, 36, 0.5);
    transform: translateY(-3px);
}

/* Botão Azul */
.btn-secondary {
    background-color: var(--primary-blue);
    color: white;
    border: 1px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: transparent;
    box-shadow: 0 0 25px rgba(13, 110, 253, 0.5);
    transform: translateY(-3px);
}

/* Stats (Rodapé da Hero) */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 18px;
    font-weight: 800;
    padding: 12px;
    border-radius: 8px;
    min-width: 55px;
    text-align: center;
    font-family: var(--font-heading);
}

.box-blue { background: rgba(13, 110, 253, 0.15); color: var(--primary-blue); }
.box-red { background: rgba(216, 19, 36, 0.15); color: var(--primary-red); }

.stat-info { display: flex; flex-direction: column; }
.stat-info strong { color: white; font-size: 15px; font-family: var(--font-heading); }
.stat-info span { color: var(--text-gray); font-size: 12px; margin-top: 3px; }

.stat-divider {
    width: 1px; height: 40px; background: rgba(255,255,255,0.1);
}

/* ================= RESPONSIVIDADE (ATUALIZADO) ================= */

/* Notebooks Menores e Tablets (Até 1200px) */
@media (max-width: 1200px) {
    .container { width: 90%; }
    .hero-text h1 { font-size: 50px; } /* Reduzido levemente */
}

/* Tablets em pé e Celulares Grandes (Até 992px) */
@media (max-width: 992px) {
    .nav-links, .btn-header { display: none; }
    .mobile-menu-icon { display: block; }

    .hero-overlay {
        background: linear-gradient(180deg, #050505 30%, rgba(5,5,5,0.8) 70%, rgba(5,5,5,0.5) 100%);
    }
    
    .hero-text { text-align: left; }
    
    /* Ajuste para tablets */
    .hero-text h1 { 
        font-size: 36px; 
        line-height: 1.2;
    }
    
    .hero-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
    .stat-divider { display: none; }
}

/* --- AJUSTE CRÍTICO PARA CELULARES (Até 480px) --- */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 30px !important; /* Tamanho perfeito para não quebrar "PERFORMANCE" */
        letter-spacing: 0.5px; /* Diminui levemente o espaçamento */
    }

    .hero-description {
        font-size: 14px; /* Texto de apoio menor */
        margin-bottom: 30px;
    }

    /* Ajuste na bola de luz para não cobrir tudo no celular */
    .blue-glow-blob {
        width: 300px;
        height: 300px;
        left: -50px;
        top: 10%;
        opacity: 0.6;
    }
}

/* ================= RESPONSIVIDADE ESPECÍFICA PARA NOTEBOOK (1280px - 1440px) ================= */
@media (max-width: 1440px) {
    
    /* --- AJUSTES DO HEADER --- */
    .container {
        width: 90%; /* Margem de segurança maior nas laterais */
    }

    .nav-links {
        gap: 25px; /* Diminui o espaço entre os links (antes era 40px) */
    }

    .nav-links a {
        font-size: 12px; /* Fonte um pouco menor para caber tudo */
    }

    .btn-header {
        padding: 8px 20px; /* Botão "Orçamento" mais compacto */
        font-size: 12px;
    }

    /* --- AJUSTES DA HERO SECTION --- */
    .hero-section {
        /* Reduz a altura mínima para caber em telas mais baixas */
        min-height: 550px; 
    }

    .hero-text h1 {
        font-size: 48px; /* Reduz de 68px para 48px (Fica muito mais agradável no note) */
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 15px;
        max-width: 500px;
        margin-bottom: 30px;
    }

    /* Botões da Hero menores */
    .btn-primary, .btn-secondary {
        padding: 14px 28px;
        font-size: 12px;
    }

    .hero-buttons {
        margin-bottom: 40px; /* Menos espaço embaixo dos botões */
    }

    /* Ajuste dos Stats (Icones menores) */
    .stat-icon {
        padding: 10px;
        font-size: 16px;
        min-width: 45px;
    }
    
    .stat-info strong {
        font-size: 13px;
    }
    
    /* Ajuste na bola de luz para não ofuscar */
    .blue-glow-blob {
        width: 400px;
        height: 400px;
        left: 0;
    }
}



/* ================= GALERIA DE SERVIÇOS (COMPLETO) ================= */
.services-section {
    padding: 100px 0;
    background-color: #080808;
    position: relative;
    overflow: hidden; /* Impede que a luz vaze e crie rolagem lateral */
}

/* --- EFEITO DE LUZ AZUL NO FUNDO --- */
.services-glow-start {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.12) 0%, rgba(13, 110, 253, 0) 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

/* Container que fica na frente da luz */
.services-container {
    position: relative;
    z-index: 2;
}

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

/* --- CABEÇALHO DA SEÇÃO --- */
.section-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge (Pílula Azul) */
.badge-pill {
    background: rgba(13, 110, 253, 0.15);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-blue);
    margin-bottom: 20px;
    font-family: var(--font-body);
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.2);
}

.section-header h2 {
    font-family: var(--font-heading); /* Orbitron */
    font-size: 48px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: white;
}

.section-header p {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 600px;
}

/* --- CARROSSEL (ESTRUTURA) --- */
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0; /* Espaço para sombra não cortar */
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Animação mais suave */
}

/* Card Padrão (PC Grande) */
.carousel-card {
    min-width: calc(33.333% - 20px); /* 3 colunas */
    height: 400px; /* Altura padrão */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    background: #000;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover */
.carousel-card:hover img {
    transform: scale(1.1);
}

.carousel-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Texto Overlay no Card */
.card-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.carousel-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.card-overlay h3 {
    font-size: 18px;
    font-family: var(--font-heading);
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* --- CONTROLES (SETAS) --- */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.control-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px; height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}

.control-btn:hover {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
    transform: scale(1.1);
}

/* ================= MEDIA QUERIES (RESPONSIVIDADE) ================= */

/* --- NOTEBOOK (NOVO! - Ajuste Fino para telas 13" e 14") --- */
@media (max-width: 1440px) {
    .services-section {
        padding: 60px 0; /* Reduzi o padding vertical */
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 36px; /* Fonte menor para não gritar na tela */
    }

    .carousel-card {
        height: 320px; /* Card mais baixo para caber na tela do note */
        /* Mantém 3 colunas, mas ajusta o tamanho visual */
    }
    
    .services-glow-start {
        width: 600px; height: 600px; /* Luz menor */
    }
}

/* --- TABLET (Ipad / Horizontal) --- */
@media (max-width: 1024px) {
    .carousel-card {
        min-width: calc(50% - 15px); /* Muda para 2 colunas */
        height: 300px;
    }
    
    .section-header h2 { font-size: 32px; }
}

/* --- MOBILE (Celular) --- */
@media (max-width: 768px) {
    .services-section { padding: 50px 0; }
    
    .section-header h2 { font-size: 28px; }
    
    .carousel-card {
        min-width: 100%; /* 1 coluna (tela cheia) */
        height: 280px;
    }
    
    .carousel-track { gap: 15px; }
    
    /* Overlay sempre visível no mobile para saberem o que é */
    .card-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 20%, transparent);
    }

    .services-glow-start {
        width: 300px; height: 300px; opacity: 0.5;
    }

    /* Ajuste para telas menores (Celulares) */
@media (max-width: 768px) {
    
    /* 1. Empurrar o conteúdo da Hero para baixo */
    .hero-section {
        /* O valor deve ser a altura do seu menu + um respiro extra */
        padding-top: 80px !important; 
        
        /* Garante que o alinhamento vertical continue funcionando */
        display: flex;
        flex-direction: column;
        justify-content: center; 
    }

    /* 2. Dica Opcional: Ajustar o tamanho da logo no mobile */
    /* Às vezes a logo está muito grande e ocupa muita tela */
    .logo img, .navbar .logo {
        max-height: 60px; /* Ajuste para um tamanho que fique legível mas não gigante */
        width: auto;
    }
    
    /* Se o texto "Profissional de Pintura" (Input/Search) estiver atrapalhando, pode ocultar ou ajustar */
}
}


/* ================= SEÇÃO DE BENEFÍCIOS (FINAL 100vh) ================= */
.benefits-section {
    /* Ocupa a altura total da tela */
    min-height: 100vh;
    padding: 60px 0; /* Padding menor para caber na tela */
    background-color: #050505;
    position: relative;
    
    /* Centraliza o conteúdo verticalmente */
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

/* Badge Vermelha */
.red-pill {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(216, 19, 36, 0.08);
    box-shadow: 0 0 10px rgba(216, 19, 36, 0.1);
    font-family: var(--font-body);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: white;
    margin-bottom: 10px;
}

/* --- GRID LAYOUT --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    margin-top: 50px; /* Margem ajustada */
}

/* --- CARD (VISUAL TECH) --- */
.benefit-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 280px;
}

/* --- ÍCONE --- */
.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 22px;
    color: #60a5fa; /* Azul Neon */
    filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.5));
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: white;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* --- HOVER --- */
.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.15);
}

.benefit-card:hover .card-icon {
    background: rgba(13, 110, 253, 0.2);
    transform: scale(1.05);
}

/* ================= RESPONSIVIDADE (NOTEBOOK 100VH) ================= */

/* Notebook (1280px - 1440px e telas com altura menor) */
@media (max-width: 1440px) {
    .benefits-section {
        padding: 40px 0; /* Reduz padding para não criar rolagem */
    }

    .section-header {
        margin-bottom: 20px; /* Aproxima o título do grid */
    }

    .section-header h2 {
        font-size: 32px; /* Título menor */
    }

    .benefits-grid {
        margin-top: 30px; /* Sobe o grid */
        gap: 20px; /* Menos espaço entre cards */
    }

    .benefit-card {
        padding: 25px;
        min-height: 220px; /* Card mais compacto verticalmente */
    }

    .card-icon {
        width: 40px; height: 40px; margin-bottom: 15px; /* Ícone menor */
    }
    
    .card-icon i { font-size: 18px; }
    
    .benefit-card h3 { font-size: 16px; margin-bottom: 8px; }
    
    .benefit-card p { font-size: 13px; line-height: 1.4; }
}

/* Tablet (Mantém igual) */
@media (max-width: 992px) {
    .benefits-section { height: auto; padding: 80px 0; } /* Remove 100vh no tablet pois rola muito */
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (Mantém igual) */
@media (max-width: 600px) {
    .benefits-section { height: auto; padding: 60px 0; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-card { min-height: auto; }
}

/* ================= SEÇÃO SOBRE NÓS (FINAL - AJUSTADO PARA TELAS GRANDES E MOBILE) ================= */
.about-section {
    min-height: 100vh;
    padding: 80px 0;
    background-color: #050505;
    position: relative;
    display: flex;
    align-items: center; /* Centraliza verticalmente na tela */
    overflow: hidden;
}

/* --- LUZES DE FUNDO --- */

/* Luz Vermelha (Direita - Atrás dos Cards) */
.red-glow-blob {
    position: absolute;
    top: 50%;
    right: -15%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(216, 19, 36, 0.12) 0%, rgba(216, 19, 36, 0) 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

/* Luz Azul (Esquerda - Atrás do Texto) */
.blue-glow-blob-left {
    position: absolute;
    top: 50%;
    left: -15%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.12) 0%, rgba(13, 110, 253, 0) 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

/* Container Principal */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px; /* Aumentei o gap para preencher melhor o espaço */
    position: relative;
    z-index: 2;
    /* AJUSTE AQUI: Aumentei para 1400px para ocupar mais a tela em monitores grandes */
    max-width: 1400px;
    width: 90%; /* Garante uma margem lateral mínima */
    margin: 0 auto;    /* Centraliza o container */
}

/* --- COLUNA ESQUERDA (TEXTO) --- */
.about-text-column {
    flex: 1;
    /* AJUSTE AQUI: Permite que o texto cresça mais em telas largas */
    max-width: 650px;
}

/* Badge Azul */
.blue-pill {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-blue);
    border: 1px solid rgba(13, 110, 253, 0.3);
}

/* Título Principal */
.about-text-column h2 {
    font-family: var(--font-heading); /* Orbitron */
    font-size: 46px;
    line-height: 1.1;
    margin: 20px 0 30px 0;
    text-transform: uppercase;
    color: white;
}

.about-description {
    color: #a1a1aa;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Lista de Diferenciais (2 Colunas) */
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px; /* Gap horizontal um pouco maior */
    margin-bottom: 50px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
}

.feature-list li i {
    color: var(--primary-blue);
    font-size: 14px;
    background: rgba(13, 110, 253, 0.1);
    padding: 6px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* Botão com Glow Vermelho */
.btn-glow-red {
    box-shadow: 0 0 25px rgba(216, 19, 36, 0.4);
}
.btn-glow-red:hover {
    box-shadow: 0 0 35px rgba(216, 19, 36, 0.6);
}

/* --- COLUNA DIREITA (GRID DE STATS) --- */
.about-stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* Gap maior entre os cards */
    
    /* AJUSTE AQUI: Aumentei um pouco a largura máxima do grid */
    max-width: 650px;
    margin: 0 auto; 
}

/* Card de Estatística */
.stat-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    
    /* Tamanho um pouco maior para telas grandes */
    padding: 30px 25px;
    min-height: 200px;
    
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Efeito Hover (Glow Vermelho) */
.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 0 30px rgba(216, 19, 36, 0.25), 
                inset 0 0 10px rgba(216, 19, 36, 0.05);
}

/* Ícone do Card */
.stat-icon-wrapper {
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-size: 28px; /* Ícone um pouco maior */
    filter: drop-shadow(0 0 8px rgba(13, 110, 253, 0.5));
}

/* Número do Card */
.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 40px; /* Número um pouco maior */
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Texto do Card */
.stat-card p {
    color: #888;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

/* ================= RESPONSIVIDADE ================= */

/* Notebook (1280px - 1440px) */
@media (max-width: 1440px) {
    .about-section { padding: 60px 0; }
    .about-container { gap: 50px; max-width: 1200px; } /* Volta ao tamanho normal de note */
    
    .about-text-column h2 { font-size: 38px; }
    .about-text-column { max-width: 550px; }
    
    .about-stats-grid { max-width: 600px; gap: 25px; }
    .stat-card { padding: 25px 20px; min-height: 180px; }
    .stat-card h3 { font-size: 36px; }
    .stat-icon-wrapper { font-size: 26px; }

    /* Ajusta levemente as luzes */
    .red-glow-blob, .blue-glow-blob-left { width: 500px; height: 500px; opacity: 0.8; }
}

/* Tablet (992px) */
@media (max-width: 992px) {
    .about-section { height: auto; padding: 80px 0; }
    .about-container { flex-direction: column; text-align: center; gap: 60px; }
    .about-text-column { max-width: 100%; }
    
    /* Lista centralizada */
    .feature-list { 
        display: flex; flex-wrap: wrap; justify-content: center; 
        gap: 15px 30px; text-align: left; 
    }
    
    /* Grid de stats no tablet */
    .about-stats-grid { width: 100%; max-width: 600px; }
}

/* Mobile (600px) - AJUSTADO PARA FICAR PERFEITO */
@media (max-width: 600px) {
    .about-section { padding: 60px 0; }
    .about-text-column h2 { font-size: 30px; }
    .about-description { font-size: 14px; }

    /* Lista de features em uma coluna no mobile */
    .feature-list { flex-direction: column; align-items: center; gap: 15px; }
    .feature-list li { width: 100%; justify-content: flex-start; }
    
    /* AJUSTE CRÍTICO: Grid de stats em 1 coluna no mobile */
    .about-stats-grid { 
        grid-template-columns: 1fr; /* Uma coluna só */
        gap: 20px; 
        width: 100%; /* Ocupa toda a largura */
    }
    
    /* Cards mais compactos para mobile */
    .stat-card { 
        min-height: auto; /* Altura automática */
        padding: 30px 20px; 
    }
    .stat-card h3 { font-size: 34px; }
    .stat-icon-wrapper { font-size: 24px; margin-bottom: 10px; }
    
    /* Ajusta luzes no mobile */
    .red-glow-blob, .blue-glow-blob-left { width: 300px; height: 300px; opacity: 0.6; }
    .red-glow-blob { right: -30%; }
    .blue-glow-blob-left { left: -30%; }
}

/* ================= SEÇÃO CONTATO/LOCALIZAÇÃO ================= */
.contact-section {
    padding: 100px 0;
    background-color: #050505;
    position: relative;
}

/* Wrapper que segura o Mapa e os Cards */
.contact-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    height: 500px; /* Altura fixa para alinhar mapa e cards */
}

/* --- MAPA (Lado Esquerdo) --- */
.map-container {
    flex: 1.2; /* Ocupa um pouco mais da metade */
    background: #111;
    border-radius: 16px;
    overflow: hidden; /* Arredonda os cantos do iframe */
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}



/* --- GRID DE INFORMAÇÕES (Lado Direito) --- */
.contact-info-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Colunas */
    grid-template-rows: 1fr 1fr;    /* 2 Linhas */
    gap: 20px;
}

/* Card de Contato */
.contact-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.15);
}

/* Ícone */
.icon-box {
    margin-bottom: 15px;
    width: 40px; height: 40px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}

.icon-box i {
    color: var(--primary-blue);
    font-size: 18px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-card p {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.sub-info {
    color: #888 !important;
    font-size: 12px !important;
    margin-top: 2px;
    font-weight: 400 !important;
}

/* ================= RESPONSIVIDADE CONTATO ================= */

/* Notebook (1280px - 1440px) */
@media (max-width: 1440px) {
    .contact-wrapper { height: 450px; }
    .contact-card { padding: 20px; }
    .contact-card p { font-size: 13px; }
}

/* Tablet (992px) */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        height: auto; /* Altura automática pois vai empilhar */
    }

    .map-container {
        width: 100%;
        height: 350px; /* Altura fixa para o mapa no tablet */
    }

    .contact-info-grid {
        width: 100%;
        grid-template-columns: 1fr 1fr; /* Mantém 2 colunas */
    }
}

/* Mobile (600px) */
@media (max-width: 600px) {
    .section-header h2 { font-size: 28px; }
    
    .map-container { height: 300px; }

    .contact-info-grid {
        grid-template-columns: 1fr; /* 1 Coluna no celular */
    }

    .contact-card {
        padding: 5px;
        flex-direction: row; /* Ícone do lado do texto no celular */
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .icon-box { margin-bottom: 0; } /* Remove margem inferior no layout horizontal */
}

/* =========================================
   FOOTER PREMIUM - ESTÉTICA AUTOMOTIVA
   ========================================= */

.main-footer {
    background-color: #050505; /* Fundo Preto Profundo */
    padding: 80px 0 30px 0;
    border-top: 1px solid #1a1a1a;
    font-family: 'Inter', sans-serif;
    color: #fff;
    position: relative;
    z-index: 10;
}

/* --- GRID DO CONTEÚDO --- */
.footer-content {
    display: grid;
    /* Coluna da marca mais larga, outras iguais */
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 40px;
    margin-bottom: 80px;
}

/* Marca */
.footer-logo-img {
    height: 70px; /* Ajuste para sua logo */
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 320px;
}

/* Ícones Sociais */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: #111;
    border: 1px solid #222;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000; /* Ícone preto no hover fica bom com cores neon */
    transform: translateY(-3px);
}

/* Colunas de Links */
.footer-nav-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif; /* Fonte Tech */
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-col ul li {
    margin-bottom: 12px;
}

.footer-nav-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-nav-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* --- RODAPÉ INFERIOR (COM GROW FAST) --- */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Alinha na base para ficar elegante */
    flex-wrap: wrap;
    gap: 20px;
}

/* Área da Esquerda (Copy + Links) */
.copyright-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copyright-area p {
    color: #555;
    font-size: 12px;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 15px;
}

.legal-links a {
    color: #555;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover { color: #fff; }

/* --- MARCA D'ÁGUA GROW FAST (DIREITA) --- */
.grow-fast-credit {
    font-size: 11px;
    color: #444;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.grow-fast-credit i {
    color: #ff3366; /* Cor do coração */
    font-size: 10px;
    animation: pulseHeart 1.5s infinite;
}

.grow-fast-credit a {
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
}

.grow-fast-credit a:hover {
    color: var(--primary-color);
    letter-spacing: 2px; /* Efeito de expansão no hover */
}

@keyframes pulseHeart {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr; /* 2 colunas */
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .main-footer { padding: 50px 0 30px 0; }
    
    .footer-content {
        grid-template-columns: 1fr; /* 1 coluna */
        text-align: center;
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer-brand-col {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-desc { margin: 0 auto 20px auto; }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .grow-fast-credit {
        align-items: center; /* Centraliza no mobile */
    }
}

.whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: var(--primary-blue);
        color: #fff;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        z-index: 1000;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #20ba5a;
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    }


    /* =========================================
   CORREÇÃO DOS GLOWS NO MOBILE
   ========================================= */
@media (max-width: 768px) {
    
    /* Força os elementos a aparecerem */
    .services-glow-start, 
    .blue-glow-blob-left {
        display: block !important;
        position: absolute;
        z-index: 0; /* Garante que fique atrás do texto */
        pointer-events: none; /* Deixa clicar no que está embaixo */
    }

    /* Ajuste da Bola de Luz Azul (Esquerda) */
    .blue-glow-blob-left {
        width: 250px; /* Menor que no Desktop */
        height: 250px;
        left: -80px;  /* Traz para dentro da tela (antes devia estar muito negativo) */
        top: 10%;     /* Ajuste vertical conforme sua necessidade */
        opacity: 0.6; /* Um pouco mais suave para não atrapalhar a leitura */
        filter: blur(60px);
        background: radial-gradient(circle, rgba(0, 102, 255, 0.5) 0%, rgba(0,0,0,0) 70%);
    }

    /* Ajuste do Glow de Início (Geralmente topo/direita ou centro) */
    .services-glow-start {
        width: 300px;
        height: 300px;
        right: -50px; /* Traz para a borda direita */
        top: -50px;
        opacity: 0.5;
        filter: blur(70px);
        /* Caso precise definir a cor, se não já herda do seu CSS principal */
        background: radial-gradient(circle, rgba(255, 51, 102, 0.4) 0%, rgba(0,0,0,0) 70%); 
    }
    
    /* IMPORTANTE: Garante que a section não crie rolagem lateral */
    section {
        overflow-x: hidden;
    }
}