
/* Sección Testimonios */
.testimonios {
     /* Fondo oscuro específico para testimonios */
    padding: 50px 20px;
    text-align: center;
    margin-top: 80px;  /* Margen superior */
}

/* Título */
.testimonios h2 {
    color: white;  /* Título blanco */
    font-size: 28px;
    margin-bottom: 40px;
}

/* Contenedor de testimonios */
.contenedor-testimonio {
    background-color: #dbdcdf; 
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;  /* Espacio adicional entre título y testimonios */
}

/* Testimonio individual */
.testimonio {
    margin-top: 100px;
    margin-bottom: 20px;
    height: 15%;
    width: 35%;  /* Ajuste de tamaño */
    background-color: white;  /* Fondo blanco para las tarjetas */
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonio h2 {
    margin-top: 100px;
    font-size: 20px;
    color: #152268;
    margin-top: 15px;
}

/* Imagen dentro del testimonio */
.testimonio img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

/* Texto dentro del testimonio */
.testimonio h3 {
    font-size: 20px;
    color: #152268;
    margin-top: 15px;
}

.testimonio p {
    font-size: 16px;
    color: black;
    padding: 0 10px;
    font-style: italic;
}

.testimonio:hover {
    transform: scale(1.05);
}
