
.img_background {
    background-image: url('../imagenes/Quienes_somos/quienes-somos-gris.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 320px; 

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: rgb(255, 243, 243); 
    padding: 20px;
    margin-bottom: 60px;
}

.img_background h1 {
    font-size: 3.5em; /* Optional styling */
    margin: 0;
}
.intro_text{
    padding: 20px;
    padding-left: 40px;
    
    font-size: 1.1rem; 
    line-height: 1.6; 
}
.intro_text p {
    margin-bottom: 1.2em; /* Adds spacing between paragraphs */
}

.btn-left{
    display: flex;
    justify-content: end;
    align-items: end;
    padding: 30px;
}
.btn-color{
    background-color: #4e0c20;
    color: white;
    transition: background 0.3s ease-in-out;
}
.btn-color:hover{
    background-color: #b9975b;
    color: white;
}

.valores_title{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.valores_title h1 {
    font-size: 2em; /* Optional styling */
    color: #901d41;
    margin: 0;
}
.valores_body{
    padding: 20px;
    padding-left: 75px;
    
    font-size: 1.1rem; 
    line-height: 1.6;  
}
.valores_table {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    padding-left: 75px;
    flex-wrap: wrap; 
}
.valor_item {
    flex: 1;
    min-width: 250px; 
    max-width: 32%;

    padding: 15px;
}
.valor_item h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #901d41;
}
.valor_item p {
    line-height: 1.6;
}
