/**
 * Portal Prainha - Estilos da Página Inicial
 */

.bebas { 
    font-family: 'Bebas Neue', sans-serif; 
}

/* Fundo do Topo (Hero) */
.hero-section {
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), 
                url('https://prainhatresmarias.com.br/img/hero2.png?auto=format&fit=crop&w=1920&q=40');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

/* Cartões de Status - Menores */
.status-box {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0.6rem;
    box-shadow: 0 8px 12px -3px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    min-width: 160px;
}

/* Menu Azul da Fronteira - COM DEGRADÊ PREMIUM */
.menu-fronteira {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 9999px;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    margin-top: -20px;
    position: relative;
    z-index: 40; 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-scroll { 
    overflow-x: auto; 
    white-space: nowrap; 
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    text-align: center; 
}

.nav-scroll::-webkit-scrollbar { 
    display: none; 
}

/* Seta indicadora de scroll para mobile */
.nav-mobile-indicator { 
    position: absolute; 
    right: 15px; 
    top: 50%; 
    transform: translateY(-50%); 
    color: white; 
    animation: pulse-arrow 1.5s infinite; 
    pointer-events: none; 
    transition: opacity 0.5s ease;
}

@keyframes pulse-arrow { 
    0%, 100% { opacity: 0.3; transform: translate(0, -50%); } 
    50% { opacity: 1; transform: translate(5px, -50%); } 
}

@media (min-width: 769px) { 
    .nav-mobile-indicator { display: none; } 
}