/* ========================================= */
/* 1. RESET E CONFIGURAÇÕES GLOBAIS          */
/* ========================================= */
:root {
    --dark-bg: #0A0A10; /* Fundo muito escuro, quase preto */
    --primary-color: #A020F0; /* Roxo Neon */
    --secondary-color: #20E0F0; /* Ciano Elétrico */
    --text-light: #F0F0F5; /* Texto principal claro */
    --text-muted: #B0B0C0; /* Texto secundário/parágrafo */
    --border-color: rgba(160, 32, 240, 0.3); /* Borda sutil de neon */
    --card-bg: #14141E;
    --card-highlight: #1F1F2A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ESSENCIAL para Mobile: Previne scroll horizontal global */
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 70px 0; 
}

/* Garante que imagens são responsivas */
img {
    max-width: 100%;
    height: auto;
}

/* ========================================= */
/* 2. TIPOGRAFIA E ESTILOS GERAIS            */
/* ========================================= */
h1, h2 {
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
}

h2 span, .logo span, .hero h1 span {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(160, 32, 240, 0.8); 
}

/* BOTÕES */
.btn-primary, .btn-secondary, .btn-header {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px; 
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(160, 32, 240, 0.6); 
}

.btn-primary:hover {
    background: #C45AFF; 
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.9);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: inset 0 0 10px rgba(160, 32, 240, 0.5); 
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.05);
}

.btn-header {
    background: rgba(160, 32, 240, 0.1); 
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
}

.btn-header:hover {
    background: rgba(160, 32, 240, 0.3);
}

.big {
    font-size: 1.2em;
    padding: 15px 40px;
}

/* ========================================= */
/* 3. SEÇÕES ESPECÍFICAS                     */
/* ========================================= */

/* HEADER/NAVBAR */
.header {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color); 
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--dark-bg); 
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: 900;
}

/* SEÇÃO HERO */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 16, 1) 0%, rgba(10, 10, 16, 0.7) 100%), url('futuristic_grid_bg.jpg') no-repeat center center;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero p {
    font-size: 1.2em;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CARROSSEL - CRÍTICO PARA MOBILE */
.carousel-section {
    padding: 40px 0;
    /* Permite scroll horizontal dentro da seção, sem afetar o body */
    overflow-x: auto; 
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    /* Opcional: Esconde a barra de scroll */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Opcional: Esconde a barra de scroll para Chrome/Safari */
.carousel-section::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    white-space: nowrap; 
}

.carousel-slide {
    flex: 0 0 auto;
    width: 300px; 
    margin-right: 15px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.carousel-slide img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
    display: block;
}

.carousel-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(32, 224, 240, 0.7); 
    z-index: 5;
}

/* SEÇÃO BENEFÍCIOS */
.benefits {
    padding: 80px 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefit-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card i {
    font-size: 3em;
    color: var(--secondary-color); 
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(32, 224, 240, 0.5);
}

.benefit-card h3 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: var(--card-highlight);
    box-shadow: 0 10px 30px rgba(160, 32, 240, 0.3);
}

/* SEÇÃO PREÇOS */
.pricing {
    padding: 80px 0;
    background-color: #0E0E14; 
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.pricing-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    text-align: center;
    border: 1px solid #282835;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card.destaque {
    background: var(--card-highlight);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.5); 
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 2em;
    margin-bottom: 15px;
}

.price {
    font-size: 3em;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price span {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.pricing-card ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: 0 0 10px rgba(32, 224, 240, 0.8);
}

/* GARANTIA */
.garantia {
    padding: 40px 0;
    background-color: var(--dark-bg);
}

.g-box {
    background: var(--card-highlight);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid var(--secondary-color); 
    box-shadow: 0 0 20px rgba(32, 224, 240, 0.3);
}

.g-box i {
    font-size: 3em;
    color: var(--secondary-color);
}

.g-box h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

/* CTA FINAL */
.cta-final {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta-final h2 {
    margin-bottom: 30px;
}

/* FOOTER */
.footer {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    background-color: #0E0E14;
}


/* ========================================= */
/* 4. RESPONSIVIDADE (OTIMIZAÇÃO FINAL)      */
/* ========================================= */

/* Mobile e Tablet Médio (max-width: 900px) */
@media (max-width: 900px) {
    /* Redução Geral de Espaçamento */
    section {
        padding: 50px 0;
    }
    .container {
        padding: 0 15px; 
    }

    /* TIPOGRAFIA */
    h2 {
        font-size: 2.2em;
        margin-bottom: 40px;
    }
    .hero h1 {
        font-size: 3em;
    }

    /* BENEFÍCIOS */
    .benefit-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
        gap: 20px;
    }
    
    /* PREÇOS: Empilhamento */
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .pricing-card {
        width: 100%;
        max-width: 400px;
        padding: 30px;
        transform: none !important; 
    }
}

/* Celular Pequeno (max-width: 550px) */
@media (max-width: 550px) {
    /* TIPOGRAFIA */
    h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .hero h1 {
        font-size: 2.2em; 
        line-height: 1.2;
    }
    
    /* CARROSSEL - REFORÇO FINAL */
    .carousel-slide {
        /* Reduz a largura para garantir espaço em 100% dos celulares */
        width: 160px; 
    }

    /* BENEFÍCIOS */
    .benefit-grid {
        /* Força 1 coluna */
        grid-template-columns: 1fr; 
    }

    /* BOTÕES GERAIS */
    .btn-primary, .btn-secondary, .btn-header {
        padding: 10px 15px;
        font-size: 0.8em;
    }
    .btn-primary.big {
        width: 100%;
        padding: 15px 0;
    }

    /* GARANTIA */
    .g-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}