/* --------------------------------- */
/* Estilos Pagina Acerca de Nosotros */
/* ---------------------------------- */

#nosotros{
    padding: 50px 0;
}

#nosotros-title{    
    text-align: center;
    margin-bottom: 50px;
}

.about-us-container {

    width: 90%;
    height: fit-content;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;

}

.about-column {
    width: 30%;
    /* min-height:75vh; */
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: var(--white);
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.about-column img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.about-column h2 {
    margin-bottom: 10px;
}

.about-column:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.link-container {
    width: 100%;
    text-align: center;
}

.arrow-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.arrow-link span {
    font-size: 20px;
}

.arrow-link:hover {
    background-color: #0056b3;
}
    
@media (max-width: 788px){

    .about-us-container{
        flex-direction: column;
        justify-content: center;
    }
    .about-column{
        width: 90%;
    }
    .about-column p{
        margin: 0 auto;
    }
}

