.about-hero {
    background: linear-gradient(135deg, #0a7bc2 0%, #60b57a 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
}

.mission-vision-section {
    padding: 80px 0;
    background: #ffffff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mv-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: white;
}

.mv-icon-green {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    color: white;
}

.mv-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

.values-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 48px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #0ea5e9;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}


/* Tablets */
@media (max-width: 968px) {
    .about-hero-content h1 {
        font-size: 2.25rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Móviles */
@media (max-width: 640px) {
    .about-hero {
        padding: 60px 20px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .mission-vision-section,
    .values-section {
        padding: 60px 0;
    }

    .mv-card,
    .value-card {
        padding: 30px 24px;
    }
}