body {
    font-family: Inter, sans-serif;
    margin: 0;
    background-color: #fff;
    box-sizing: border-box;
    padding: 30px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.nosotros {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 10%;
}

h1, h2 {
    color: #333;
    text-align: center;
    margin: 60px 0
}

.socios-globales, .socios-argentina {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.socio, .socio-horizontal {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.socio:hover, .socio-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.socio-img, .socio-horizontal-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}

.socio-info, .socio-horizontal-info {
    flex: 1;
}

.socio-horizontal {
    flex-direction: row;
    width: 100%;
    max-width: 500px;
    text-align: left;
}

.socio-horizontal-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.nombre {
    font-weight: bold;
    font-size: 1.1em;
    margin: 0;
}

.puesto {
    font-weight: 300;
    color: #666;
    margin: 5px 0;
    text-align: center;
}

.puestoh {
    font-weight: 300;
    color: #666;
    margin: 5px 0;
    text-align: left;
}

a {
    color: #0077b5;
    text-decoration: none;
    font-size: 1.2em;

    transition: color 0.3s;
}

a:hover {
    color: #005582;
}

.socio:hover .nombre, 
.socio-horizontal:hover .nombre {
    color: #d4b16d;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .socios-globales, .socios-argentina {
        flex-direction: column;
        align-items: center;
    }

    .socio, .socio-horizontal {
        flex-direction: row;
        width: calc(100% - 40px);
        max-width: none;
        text-align: left;
        margin: 10px 20px;
    }

    .socio-img, .socio-horizontal-img {
        width: 80px;
        height: 80px;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .socio-info, .socio-horizontal-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .nombre, .puesto, a {
        margin-top: 0;
        text-align: left;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .socios-globales {
        justify-content: center;
    }

    .socios-argentina {
        justify-content: center;
    }

    .socio {
        flex: 0 0 calc(40% - 20px);
        margin: 10px;
    }

    .socio-horizontal {
        flex: 0 0 calc(40% - 20px);
        margin: 10px;
    }
}

@media (min-width: 1025px) {
    .socios-globales {
        justify-content: center;
    }

    .socios-argentina {
        justify-content: center;
    }

    .socio {
        flex: 0 0 calc(250px - 20px);
        margin: 10px;
    }

    .socio-horizontal {
        flex: 0 0 calc(31% - 20px);
        margin: 10px;
    }
}
