
/* --- ESTILOS GENERALES (BASE) --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #000; /* Fondo de respaldo */
    color: #fff;
    overflow-x: hidden;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../assets/fondo.jpg') no-repeat center center;
    background-size: cover;
}

/* Imagen de fondo responsiva */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:white;
    background-size: cover;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay h1 {
    color: #000;
    font-size: 2rem;
    /* opacity: 0.2; */
    font-weight: 800;
    letter-spacing: 5px;
}

/* --- LOGO Y NAV --- */
.logo {
    padding: 15px;
    text-align: center; /* Centrado por defecto en móvil */
}

.logo img {
    max-width: 80px; /* Un poco más pequeño en móvil */
    height: auto;
}

.wrapper .nav {
    justify-content: center !important; /* Menú centrado en móvil */
    margin-bottom: 20px;
}

/* --- TEXTO PRINCIPAL (HEADER) --- */
.header {
    padding: 60px 20px;
    text-align: center;
}

.header h1 {
    font-size: 2rem;
    /* line-height: 1.2; */
    color: rgb(255, 255, 255)
}

/* --- BARRA INFERIOR (TARJETAS) --- */
.bottom-bar {
    background: rgba(0, 0, 0, 0.757);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px 20px;
    border-radius: 30px 30px 0 0; /* Curva elegante en el tope */
}

.bottom-bar h6 {
    color: #ffd700; /* Dorado navideño */
    font-size: 1.5rem;
    margin-top: 15px;
}
.bottom-bar p{
    font-size: 1rem;
    color: white;
}

/* --- MEDIA QUERIES (PARA TABLETS Y PC) --- */
@media (min-width: 992px) {
    .logo {
        text-align: left;
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .wrapper .nav {
        justify-content: flex-end !important;
        padding-right: 30px;
    }

    .header {
        height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .header h1 {
        font-size: 4.5rem;
    }

    .bottom-bar {
        border-radius: 0;
    }
}