/* ===== NOSOTROS - HERO ===== */
.Hero-Nosotros {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600");
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.Hero-Nosotros h1 {
    font-size: 48px;
    color: #e94560;
    margin-bottom: 15px;
}

.Hero-Nosotros p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.9;
}

/* ===== HISTORIA ===== */
.historia {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.historia-cont h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 40px;
}

.sobre {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.mision, .vision, .valores {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: box-shadow 0.3s;
}

.mision:hover, .vision:hover, .valores:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #e94560;
}

.icon i {
    font-size: 40px;
}

.sobre h3 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.sobre p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* ===== DIFERENCIA ===== */
.diferencia {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
}

.diferencia-cont h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.diferencia-cont p {
    color: #666;
    margin-bottom: 40px;
}

.diferencia-lista {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.valor-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: box-shadow 0.3s;
}

.valor-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.valor-item h4 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.valor-item p {
    color: #666;
    font-size: 14px;
}

/* ===== EQUIPO ===== */
.equipo {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.equipo-cont h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.equipo-cont p {
    color: #666;
    margin-bottom: 40px;
}

.equipo-lista {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.equipo-card {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: box-shadow 0.3s;
}

.equipo-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.equipo-card h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.equipo-card p {
    color: #666;
    font-size: 14px;
}

/* ===== CTA ===== */
.cta {
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 60px 20px;
}

.cta h2 {
    font-size: 36px;
    color: #e94560;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.primary-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #e94560;
    color: white;
    border-radius: 30px;
    font-size: 18px;
    transition: all 0.3s;
}

.primary-btn:hover {
    background: #d63851;
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .Hero-Nosotros {
        padding: 80px 20px;
    }
    .mision, .vision, .valores {
        width: calc(50% - 15px);
    }
    .valor-item {
        width: calc(50% - 15px);
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .Hero-Nosotros {
        padding: 60px 15px;
    }
    .Hero-Nosotros h1 {
        font-size: 28px;
    }
    .Hero-Nosotros p {
        font-size: 15px;
    }
    .historia {
        padding: 40px 15px;
    }
    .historia-cont h2 {
        font-size: 24px;
    }
    .mision, .vision, .valores {
        width: 100%;
        max-width: 350px;
    }
    .diferencia {
        padding: 40px 15px;
    }
    .diferencia-cont h2 {
        font-size: 24px;
    }
    .valor-item {
        width: 100%;
        max-width: 220px;
    }
    .equipo {
        padding: 40px 15px;
    }
    .equipo-cont h2 {
        font-size: 24px;
    }
    .equipo-card {
        width: 100%;
        max-width: 300px;
    }
    .cta {
        padding: 40px 15px;
    }
    .cta h2 {
        font-size: 24px;
    }
}
