

.valores {
    border-radius: 10px;
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.valores-titulo h4 {
    font-size: 2rem;
    color: #0fa759;
    text-align: center;
    margin-bottom: 20px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Columnas adaptables */
    gap: 30px;
}

.valor-item {
    display: block; /* Hace que todo el recuadro sea un enlace */
    background-color: #fff;
    border-radius: 8px;
    height: 150px;
    padding: 20px;
    text-align: center;
    text-decoration: none; /* Quita el subrayado del enlace */
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-item h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
}

.valor-item p {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    text-align: center;
}

.valor-item:hover {
    background-color: #0fa759; /* Fondo cambia a azul */
    color: #fff; /* Texto cambia a blanco */
    transform: translateY(-10px); /* Efecto de elevación */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.valor-item:hover h5, .valor-item:hover p {
    color: #fff; /* Cambia el texto a blanco en hover */
}

.valores-grid a{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.honestidad{
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../imagenes/valores/honestidad.png);
}

.disciplina{
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../imagenes/valores/DICIPLINA.jpg);
}

.estudio{
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../imagenes/valores/ESTUDIO.jpg);
}

.identidad{
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../imagenes/valores/IDENTIDAD.jpg);
}

.iniciativa{
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../imagenes/valores/INICIATIVA.jpg);
}

.liderazgo{
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../imagenes/valores/LIDERAZGO.jpg);
}

.respeto{
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../imagenes/valores/RESPETO.jpg);
}

.responsabilidad{
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../imagenes/valores/RESPONSABILIDAD.jpg);
}

.solidaridad{
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../imagenes/valores/SOLIDARIDAD.jpg);
}

.superacion{
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../imagenes/valores/SUPERACION.jpg);
}

.tolerancia{
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../imagenes/valores/Tolerancia.jpg);
}

.trabajo{
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../imagenes/valores/TRABAJO.jpg);
}