body {
    font-family: 'Outfit', sans-serif;
    color: #222;
    line-height: 1.6;
}

/* Hero */
.nosotros-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 2rem;
    padding: 2rem;
    align-items: center;
    background: #fafafa;
}
.nosotros-hero img {
    width: 100%;
    border-radius: 10px;
}
.nosotros-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    padding: 2rem;
    background: #fff;
}
.timeline-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
}
.timeline-item {
    text-align: center;
}
.timeline-item .year {
    font-weight: bold;
    font-size: 1.5rem;
    color: #d4af37;
}

/* Equipo */
.equipo {
    padding: 2rem;
    text-align: center;
    background: #fafafa;
}
.equipo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.equipo-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.equipo-card img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

/* Logros */
.logros {
    padding: 2rem;
    text-align: center;
}
.logros-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.logro h3 {
    color: #d4af37;
    font-size: 2rem;
}

/* Testimonios */
.testimonios {
    padding: 2rem;
    background: #fafafa;
    text-align: center;
}
.testimonios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.testimonio {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Mapa */
.mapa {
    padding: 2rem;
    text-align: center;
}
.about-us {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-in-out;
}

.about-header h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
}

.about-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    animation: slideInLeft 1s ease-in-out;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
    animation: slideInRight 1s ease-in-out;
    padding: 20px;
}

.about-text h2 {
    color: #333;
    margin-bottom: 15px;
}

.about-text p {
    color: #555;
    line-height: 1.6;
}

.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

.mv-item {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.mv-item:hover {
    transform: translateY(-5px);
}

.mv-item h3 {
    color: #222;
    margin-bottom: 15px;
}

.mv-item p {
    color: #555;
    line-height: 1.5;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsivo */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}
