/* Estilos para la imagen con texto encima */

.hero-image {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #5f4c6b;
    background-color: rgba(255, 255, 255, 0.8);
    /* Blanco pastel translúcido */
    padding: 20px 40px;
    border-radius: 15px;
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    user-select: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* QUIÉNES SOMOS SECTION */

.quienes-somos-section {
    font-family: 'Poppins', sans-serif;
    color: var(--texto-principal, #5f4c6b);
}

.section-title {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    color: #d27ba6;
    margin-bottom: 20px;
}

.section-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    text-align: justify;
    line-height: 1.8;
    color: #000000;
}

.section-text p {
    margin-bottom: 1.2rem;
}


/* Carrusel de imágenes */

.carousel-inner img {
    border-radius: 12px;
    object-fit: cover;
    height: 300px;
}

.carousel-control-prev,
.carousel-control-next {
    border: none;
    background: transparent;
    box-shadow: none;
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
    outline: none;
    box-shadow: none;
}