/* ESTILOS ESPECÍFICOS PARA LA PORTADA CON CARRUSEL */
.intro-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* transition: opacity 1s ease-in-out; */
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Recuadro de texto */
.text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px 60px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 400px;
}

/* Enlace que envuelve todo */
.text-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.text-box h1 {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 0;
}

.text-box p {
    font-size: 17px;
    margin-bottom: 0;
}

.text-box span {
    font-size: 17px;
    color: #000;
}

/* Texto normal - visible por defecto */
.text-content {
    transition: opacity 0.3s ease;
}

/* Texto "Entrar" - oculto por defecto */
.enter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 17px;
    pointer-events: none; /* Para que no interfiera con el clic */
}

/* Hover effects */
.text-box:hover .text-content {
    opacity: 0;
}

.text-box:hover .enter-text {
    opacity: 1;
}

/* Cursor pointer para indicar que es cliqueable */
.text-box {
    cursor: pointer;
}

header {
    display: none !important;
}