/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #8b9887;
    color: white;
    text-align: center;
    padding: 20px;
}

header .logo img {
    margin-bottom: 15px;
}

header h1 {
    margin-bottom: 10px;
}

/* Socios Section */
.socios {
    padding: 20px;
    background-color: #fff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.socios h2 {
    text-align: center;
    margin-bottom: 20px;
}

.socios-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.socio {
    width: 250px;
    text-align: center;
    margin: 15px;
}

.socio img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.contacto-socio {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}

.contacto-socio a {
    text-decoration: none;
    color: #0073e6;
    margin: 5px 0;
}

.contacto-socio i {
    margin-right: 8px;
}

/* Contact Section */
.contacto {
    padding: 20px;
    background-color: #fff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contacto h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info div {
    margin: 10px 0;
}

.contact-info i {
    margin-right: 8px;
}

/* Map Section */
.mapa {
    padding: 20px;
    text-align: center;
}

.mapa iframe {
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
    }

    .contact-info div {
        margin: 10px;
    }

    .socios-info {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 24px;
    }

    footer p {
        font-size: 12px;
    }
}
