/* Reset básico y Tipografía */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
}

/* Reglas Globales de Enlaces */
a {
    text-decoration: none !important; /* Quita subrayado */
    color: inherit;                 /* Quita el azul */
}

/* SECCIÓN HERO CON PARALLAX */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* CONFIGURACIÓN PARALLAX */
    background-image: url('../images/secciones/entrevistas/2026-02/00.jpg'); /* Ajusta la ruta si es necesario */
    background-attachment: fixed;  /* Mantiene la imagen fija al hacer scroll */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

/* Capa oscura sobre la imagen fija */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Oscurece la foto para que el texto resalte */
    z-index: 1;
}

/* Contenedor de Texto */
.container {
    position: relative;
    z-index: 2; /* Por encima del overlay */
    max-width: 900px;
    text-align: center;
    padding: 20px;
}

.logo-png {
    max-width: 300px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.title {
    color: #ffffff;
    font-weight: 900;
    font-size: 3.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.description {
    color: #e5e7eb;
    font-size: 1.75rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* BOTÓN MAGENTA */
.btn-read-more {
    background-color: #BF2176;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 16px 45px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-read-more:hover {
    background-color: #723D8C;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .title { font-size: 2rem; }
    .description { font-size: 1.25rem; }
    .hero { background-attachment: scroll; } /* En móviles el parallax suele dar error, mejor scroll */
}
@media (max-width: 768px) {
    .description {
        font-size: 1.25rem;
    }
    
    .btn-read-more {
        width: 100%;
        padding: 14px 20px;
    }
    .title {
        color: #ffffff;
        font-weight: 900;
        font-size: 30px;
        text-transform: uppercase;
    }
}