/* =========================================
   11. HOME PAGE / LANDING (Cinematic Luxury)
   ========================================= */

/* Trava a rolagem para garantir o efeito "Tela Cheia" */
body.home-page {
    background-color: #050505;
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
}

/* --- NAVBAR (Transparente/Glass) --- */
.home-navbar {
    background: rgba(0, 0, 0, 0.2); /* Quase invisível no topo */
    backdrop-filter: blur(8px);      /* Desfoque sutil */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    transition: background 0.3s ease;
}

.home-navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.1em; /* Espaçamento luxuoso */
    font-size: 1.4rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Botão Área Restrita (Outline Vidro) */
.home-page .btn-outline-light {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.home-page .btn-outline-light:hover {
    background: #fff;
    color: var(--palette-primary-darker); /* Roxo escuro ao passar o mouse */
    border-color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* Botão Painel (Se logado) */
.home-page .btn-primary {
    /* Mantém o gradiente roxo definido anteriormente */
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 0.85rem;
    box-shadow: 0 5px 20px rgba(102, 4, 109, 0.4);
}

/* --- HERO SECTION (Imagem de Fundo) --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    /* Imagem de moda high-end */
    background-image: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?q=80&w=2064&auto=format&fit=crop');
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Overlay para garantir leitura (Gradiente Roxo -> Preto) */
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Gradiente radial sutil no centro, escurecendo nas bordas */
    background: radial-gradient(circle at center, rgba(102, 4, 109, 0.25) 0%, rgba(5, 5, 5, 0.85) 90%);
    z-index: 1;
    /* Textura sutil opcional */
    box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
    /* Animação de entrada */
    animation: heroFadeIn 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; /* Bem grande */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.hero-content .lead {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

/* --- FOOTER (Fixo no rodapé) --- */
.home-page footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 25px 0;

    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    /* Gradiente para o texto do footer ficar legível */
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* Animação de Entrada */
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content .lead {
        font-size: 1rem;
    }
    .home-navbar {
        background: rgba(0,0,0,0.8); /* Mais escuro no mobile */
    }
}