/* ==========================================
   About Us Section (¿Quiénes somos?)
   ========================================== */
.about-us-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 131, 196, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.about-us-section .container {
    position: relative;
    z-index: 1;
}

/* Vision & Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: 5rem;
}

.vm-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 10px 30px -5px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px -12px rgba(0, 131, 196, 0.15),
        0 10px 20px -5px rgba(30, 64, 175, 0.1),
        inset 0 0 0 1px rgba(0, 131, 196, 0.2);
}

.vm-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.vm-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
}

/* Values Section */
.values-block {
    text-align: center;
    margin-top: 4rem;
}

.values-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Pyramid Layout */
.values-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.pyramid-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.values-pyramid .value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 10px 30px -5px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    width: 160px;
    flex-shrink: 0;
}

.values-pyramid .value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 131, 196, 0.03) 0%, rgba(32, 79, 153, 0.03) 100%);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.values-pyramid .value-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 20px 40px -12px rgba(0, 131, 196, 0.2),
        0 10px 20px -5px rgba(30, 64, 175, 0.15),
        inset 0 0 0 1px rgba(0, 131, 196, 0.3);
    border-color: rgba(0, 131, 196, 0.3);
}

.values-pyramid .value-card:hover::before {
    opacity: 1;
}

.values-pyramid .value-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #0083c4 0%, #204f99 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 15px rgba(0, 131, 196, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.values-pyramid .value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(0, 131, 196, 0.4);
}

.values-pyramid .value-icon svg {
    width: 26px;
    height: 26px;
}

.values-pyramid .value-card h4 {
    font-size: 1.05rem;
    color: #1e293b;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .values-pyramid {
        max-width: 100%;
    }

    .pyramid-row {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .values-pyramid .value-card {
        width: 140px;
        padding: 1.25rem;
    }

    .values-pyramid .value-icon {
        width: 50px;
        height: 50px;
    }

    .values-pyramid .value-icon svg {
        width: 24px;
        height: 24px;
    }
}