/* 1. Importamos la fuente original desde tu carpeta local */
@font-face {
    font-family: 'Neue Haas Unica';
    src: url('../assets/fonts/NeueHaasUnica-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Unica';
    src: url('../assets/fonts/NeueHaasUnica-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Aplicamos tu fuente real */
    font-family: "Neue Haas Unica", Arial, sans-serif;
    background-color: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Slider fullscreen */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
}

/* 🎥 CAPA OSCURA: Filtro sutil para que el texto blanco y el logo siempre se lean impecable */
.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); /* Oscurece las fotos un 25% */
    z-index: 2;
    pointer-events: none;
}

/* Contenedor del Logo centrado */
.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.main-logo {
    max-height: 60px; 
    width: auto;
    object-fit: contain;
    pointer-events: none;
}

/* Footer Institucional */

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    opacity: 0.85;
}


.footer-section {
    flex: 1;
}

.footer-section.left {
    text-align: left;
}

.footer-section.center {
    text-align: center;
}

.footer-section.right {
    text-align: right;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.6;
}

/* Responsive para pantallas táctiles y celulares */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        gap: 16px;
        padding: 30px 20px;
        font-size: 13px;
    }
    
    .footer-section.left, 
    .footer-section.center, 
    .footer-section.right {
        text-align: center;
    }
    
    .main-logo {
        max-height: 45px;
    }
}
