/* ===================================================================
   ARQUIVO: css/pages/index.css
   DESCRIÇÃO: Home Impactante (Logo Grande + Botões Menores + Mobile Scroll)
   =================================================================== */

/* Container Principal */
.main-content-wrapper {
    width: 100%;
    /* No Desktop, ocupa a tela toda fixa */
    height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Conteúdo centralizado */
.home-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%; /* Garante largura para centralizar */
    display: flex;
    flex-direction: column;
    align-items: center; /* Força itens flexíveis ao centro */
}

/* --- LOGO E TÍTULOS (Mantidos Grandes) --- */

.hero-logo {
    height: 140px; /* Logo Grande */
    width: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.8));
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-title {
    font-size: 65px; /* Título Gigante */
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    
    /* FORÇAR CENTRO */
    text-align: center !important;
    width: 100%;
}

.hero-subtitle {
    font-size: 26px; /* Subtítulo visível */
    color: #b2d13a; /* Verde Neon */
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
    
    /* FORÇAR CENTRO (Correção do Problema) */
    text-align: center !important;
    width: 100%;
    display: block;
}

.hero-text {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 40px; /* Espaço para os botões */
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    
    /* FORÇAR CENTRO */
    text-align: center !important;
}

/* --- BOTÕES (Ajustados: Menores) --- */
.action-buttons {
    display: flex;
    gap: 15px; /* Espaço menor entre eles */
    justify-content: center;
    width: 100%;
}

.btn-hero {
    padding: 12px 35px; 
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px; 
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 180px; 
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #b2d13a;
    color: #000;
    border: 2px solid #b2d13a;
    box-shadow: 0 0 15px rgba(178, 209, 58, 0.4);
}

.btn-primary:hover {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: #000;
    text-decoration: none;
}

.btn-outline {
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

/* =========================================
   MOBILE (Ajuste Inteligente)
   ========================================= */
@media (max-width: 991px) {
    .main-content-wrapper {
        /* Permite scroll se não couber */
        height: auto; 
        min-height: 100vh; 
        justify-content: flex-start; /* Começa do topo */
        padding-top: 100px;
        padding-bottom: 50px;
    }

    /* Tamanhos Grandes no Mobile */
    .hero-logo {
        height: 150px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-top: 10px;
        letter-spacing: 1px;
    }

    .hero-text {
        font-size: 16px;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    /* Botões empilhados no mobile */
    .action-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn-hero {
        width: 100%; /* Largura total para facilitar o toque */
        padding: 15px; /* Um pouco mais alto no dedo para facilitar o clique */
    }
}