/*

#mainCarousel {
    position: relative;
    width: 100%;
    height: 100vh;
}

#mainCarousel .carousel-item {
    height: 100vh;
    background-image: url('../media/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#mainCarousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.623);
}

#mainCarousel .carousel-item .content {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    margin-top: 120px;
}

/* Estructura básica para el contenido 
#mainCarousel .carousel-item .content .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilos para el primer slide 
#mainCarousel .carousel-item .content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#mainCarousel .carousel-item .content p {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#mainCarousel .carousel-item .content .cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

#mainCarousel .carousel-item .content .cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(142, 68, 173, 0.5);
}

/* Estructura del slide 2 
#mainCarousel .carousel-item .about {
    height: 100%;
    width: 100%;
    display: flex;
}

#mainCarousel .carousel-item .about .row {
    margin: 0;
    height: 100%;
    width: 100%;
}

#mainCarousel .carousel-item .about .col-lg-6 {
    height: 100%;
    padding: 2rem;
}

/* Animación pulse 
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    #mainCarousel .carousel-item {
        height: auto;
        min-height: 100vh;
    }

    #mainCarousel .carousel-item .content h2 {
        font-size: 2rem;
    }

    #mainCarousel .carousel-item .content p {
        font-size: 1.2rem;
    }

    #mainCarousel .carousel-item .about .row {
        flex-direction: column;
    }

    #mainCarousel .carousel-item .about .col-lg-6 {
        width: 100%;
        padding: 1rem;
        height: auto;
    }
} */

.pulse {
    animation: pulse 2.5s infinite;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.carousel-inner
{
    background-color: azure;
    /* max-height: 38rem; */
    max-height: 96vh;
}