/* Estilos para la sección Nosotros */

.nosotros-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0130ba;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2944b8 0%, #6423a5 100%);
    border-radius: 2px;
}

.nosotros-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.nosotros-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.nosotros-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d3748;
    position: relative;
    padding-bottom: 15px;
}

.nosotros-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2944b8 0%, #6423a5 100%);
    border-radius: 2px;
}

.nosotros-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.nosotros-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.nosotros-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nosotros-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nosotros-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nosotros-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nosotros-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nosotros-subtitle {
        font-size: 1.3rem;
    }
}