/* 1. CONFIGURAÇÕES GLOBAIS E VARIÁVEIS (V12.1 - FUNDO PRETO & AZUL) */
:root {
    --primary-color: #007bff;      /* Azul (Cor Principal) */
    --primary-color-dark: #0056b3; /* Azul Escuro */
    --secondary-color: #007bff;    /* Azul (Secundário, mantido igual) */
    
    --main-bg: #121212;           /* <--- AQUI: O FUNDO PRETO/ESCURO */
    --section-bg: #1A1A1A;        /* Fundo dos cards/seções (Cinza escuro) */
    --dark-text: #FFFFFF;          /* Texto principal (Branco) */
    --text-gray: #AAAAAA;          /* Texto secundário (Cinza) */
    --border-color: #333333;       /* Borda (Cinza escuro) */
    --light-text: #FFFFFF;         /* Texto para botões azuis */
    
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--main-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a { text-decoration: none; color: var(--secondary-color); transition: color 0.3s ease; }
a:hover { color: var(--light-text); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-text);
}
.section-title span { color: var(--primary-color); }

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 2. BOTÕES (CTA) - Paleta Azul */
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.cta-button.primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}
.cta-button.primary:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    transform: translateY(-2px);
}
.cta-button.secondary {
    background-color: var(--secondary-color);
    color: var(--light-text);
    border-color: var(--secondary-color);
}
.cta-button.secondary:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    transform: translateY(-2px);
}
.cta-button.primary-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.cta-button.primary-outline:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}
.cta-button.large {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    font-weight: 700;
}
.cta-button i { margin-right: 0.5rem; }

/* 3. HEADER (CABEÇALHO) - Tema Escuro */
.header {
    background-color: transparent;
    border-bottom: 1px solid transparent;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.header.header-scrolled {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 900; color: var(--dark-text); }

/* ------ A EXCEÇÃO APLICADA AQUI ------ */
.logo span { color: #D4002A; } /* Vermelho, como pedido */
/* -------------------------------------- */

.nav-menu { display: flex; gap: 1.5rem; }
.nav-menu a {
    color: var(--dark-text);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.nav-menu a:hover::after { width: 100%; }
.hamburger { display: none; cursor: pointer; }
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--dark-text);
}

/* 4. V11: SEÇÃO HERO (Split-Screen) - Tema Escuro */
.hero-v11 {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 71px;
    background-color: var(--main-bg); /* Fundo Preto */
    border-bottom: 1px solid var(--border-color);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}
.hero-content {
    max-width: 600px;
    text-align: left;
}
.hero-tag {
    display: inline-block;
    background-color: var(--section-bg);
    color: var(--primary-color); /* Azul */
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}
.hero-title span { color: var(--primary-color); } /* "SUPERWOLT" em azul */
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 500px;
}
.hero-image {
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    /* Efeito de "flutuar" */
    animation: float 4s ease-in-out infinite;
}

/* Animação de flutuar para a bateria */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}


/* 5. BARRA DE CONFIANÇA (Trust-Bar) - Tema Escuro */
.trust-bar {
    background-color: var(--section-bg);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}
.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.trust-item i {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}
.trust-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--dark-text);
}
.trust-item p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* 6. SEÇÃO DE SERVIÇOS (50/50) - Tema Escuro */
.services {
    padding: 6rem 0;
    background-color: var(--main-bg);
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}
.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.services-image img { 
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Sombra mais escura */
}
.services-list p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}
.services-list ul { margin-bottom: 2rem; }
.services-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.services-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

/* 7. SEÇÃO DE PRODUTOS - Tema Escuro */
.products {
    padding: 5rem 0;
    background-color: var(--section-bg);
    border-bottom: 1px solid var(--border-color);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.product-card {
    background-color: var(--main-bg);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.product-tag {
    background-color: var(--primary-color);
    color: var(--light-text);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    align-self: flex-start;
    margin-bottom: 1rem;
}
.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.product-title .brand-name {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.6rem;
    display: block;
}
.product-card p {
    color: var(--text-gray);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* 8. SEÇÃO DE CONTATO (50/50) - Tema Escuro */
.contact-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background-color: var(--section-bg);
    border-top: 1px solid var(--border-color);
}
.contact-info-wrapper {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info-block { margin-bottom: 2.5rem; }
.contact-info-block h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.contact-info-block h3 i { margin-right: 1rem; width: 20px; }
.contact-info-block p { color: var(--text-gray); padding-left: 2.5rem; }
.contact-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    padding-left: 2.5rem;
    transition: color 0.3s ease;
}
.contact-phone:hover { color: #25D366; }
.contact-phone i { color: #25D366; margin-right: 1rem; }
.contact-map-wrapper {
    background-color: #E0E0E0; /* Fundo cinza claro para o mapa */
    width: 100%;
    height: 100%;
    min-height: 400px;
}
.contact-map-wrapper iframe {
    /* ------ ALTERAÇÃO APLICADA AQUI ------ */
    filter: none; /* Sem filtro, mapa "branco, normal" */
    /* -------------------------------------- */
    width: 100%;
    height: 100%;
}

/* 9. RODAPÉ - Tema Escuro */
.footer {
    background-color: #0A0A0A; /* Quase preto */
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}
.footer p { margin-bottom: 0.5rem; }
.footer a { font-weight: 600; }

/* 10. WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: all 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.05); }
.whatsapp-float i { font-size: 2rem; }
.whatsapp-float span {
    font-size: 1rem;
    font-weight: 600;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    display: none;
}
.whatsapp-float:hover { padding-right: 1.25rem; color: #FFF; }
.whatsapp-float:hover span { display: inline; }

/* 11. ANIMAÇÕES DE SCROLL */
.hidden-up, .hidden-left, .hidden-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hidden-up { transform: translateY(30px); }
.hidden-left { transform: translateX(-50px); }
.hidden-right { transform: translateX(50px); }
.show {
    opacity: 1;
    transform: translateY(0) translateX(0);
}
.trust-item.show {
    transition-delay: calc(0.1s * var(--item-index));
}
.product-card.show {
    transition-delay: calc(0.1s * var(--card-index));
}

/* 12. RESPONSIVIDADE (MOBILE) */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-v11 { text-align: center; min-height: 90vh; }
    .hero-content { text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-image { display: none; } /* Esconde a bateria no mobile para focar no texto */

    .services-content { grid-template-columns: 1fr; }
    .services-image { order: -1; text-align: center; }
    .contact-v3 { grid-template-columns: 1fr; }
    .contact-map-wrapper { order: -1; }
}
@media (max-width: 768px) {
    html { font-size: 14px; }
    .container { padding: 0 1rem; }
    .section-title { font-size: 2rem; }

    /* Menu Hamburger */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 71px;
        flex-direction: column;
        background-color: var(--section-bg);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        border-top: 1px solid var(--border-color);
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { width: 100%; }
    .nav-menu a {
        display: block;
        padding: 1.5rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--border-color);
        color: var(--dark-text);
    }
    .nav-menu a:hover::after { width: 0; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .navbar .cta-button { display: none; }
    
    .hero-v11 { min-height: 90vh; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .cta-button.large {
        font-size: 1rem;
        padding: 0.8rem 1.8rem;
    }
    .trust-bar .container { grid-template-columns: 1fr; }
    
    .contact-v3 { min-height: 60vh; }
    .contact-info-wrapper { padding: 3rem 1.5rem; }
    .contact-map-wrapper { min-height: 300px; }
    
    .whatsapp-float span { display: none; }
    .whatsapp-float:hover { padding-right: 0.75rem; }
}