.slide-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

/* TITULO PRINCIPAL */
.slide-title {
    font-family: 'Teko', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 0.85;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    max-width: 900px;
    width: 90%;
    pointer-events: auto;
}


/* SUBTITULO */
.slide-subtitle {
    font-family: 'Teko', sans-serif;
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.85;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    pointer-events: auto;
}

/* CLAIM / FRASE */
.slide-claim {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    line-height: 1.25;
    font-style: italic;
    margin-bottom: 2rem;
    display: block;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    pointer-events: auto;
}

/* BOTÓN */
.boton-inscripcion {
    pointer-events: auto;
    background-color: #a31e33;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 400;
    display: inline-block;
    margin-top: 1rem;
    border: none;
    transition: all 0.3s ease;
}

.boton-inscripcion:hover {
    background-color: #7f1728;
    transform: translateY(-2px);
}
