/* Estilos del Hero con Bootstrap Carousel */
#fh5co-home {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

#fh5co-home .carousel-item {
    position: relative;
    height: 100vh;
    /* Altura completa para cada slide */
    background-size: cover;
    background-position: center;
}

#fh5co-home .fh5co-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.5;
    background: #000;
}

#fh5co-home .fh5co-text {
    position: absolute;
    z-index: 3;
    width: 100%;
    top: 60%;
    /* Bajamos un poco el texto */
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}

#fh5co-home .fh5co-text h1 {
    font-family: serif;
    font-size: 150px;
    /* Tamaño del título grande */
    font-weight: 700;
    font-style: italic;
    color: #fff;
    transition: 0.3s ease;
}

@media screen and (max-width: 992px) {
    #fh5co-home .fh5co-text h1 {
        font-size: 80px;
        /* Ajuste para pantallas medianas */
    }
}

@media screen and (max-width: 768px) {
    #fh5co-home .fh5co-text h1 {
        font-size: 50px;
        /* Ajuste para pantallas pequeñas */
    }
}

#fh5co-home .fh5co-text h2 {
    font-family: "Merriweather", serif;
    font-weight: 300;
    font-size: 40px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
    /* Añadimos un margen inferior */
    transition: 0.3s ease;
}

@media screen and (max-width: 768px) {
    #fh5co-home .fh5co-text h2 {
        font-size: 20px;
        /* Ajuste para pantallas pequeñas */
    }
}

/* Estilo del botón "Inscribite ya" */
#fh5co-home .btn-primary {
    background-color: #196be6;
    /* Color del botón */
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 25px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#fh5co-home .btn-primary:hover {
    background-color: #266339;
    /* Color del botón al hacer hover */
    border: 1px solid white;
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    #fh5co-home .btn-primary {
        font-size: 0.9rem;
        /* Ajuste del tamaño del botón para pantallas pequeñas */
    }
}