/* ============================================
   MISIÓN / VISIÓN / VALORES - AMAYALAB
   ============================================ */

.mvv {
    padding: 6rem 2.5rem;
    background: #F8F9FA;
}

.mvv-contenedor {
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== ENCABEZADO ===== */
.mvv-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.mvv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 129, 242, 0.06);
    border: 1px solid rgba(15, 129, 242, 0.12);
    color: #0F81F2;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.mvv-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0A5DB0;
}

.texto-resaltado {
    color: #0F81F2;
    position: relative;
}

.texto-resaltado::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(15, 129, 242, 0.15);
    border-radius: 4px;
    z-index: -1;
}

/* ===== GRID ===== */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ===== TARJETA ===== */
.mvv-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(15, 129, 242, 0.06);
    box-shadow: 0 4px 20px rgba(15, 129, 242, 0.03);
    transition: all 0.35s ease;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 129, 242, 0.1);
    border-color: rgba(15, 129, 242, 0.15);
}

/* Tarjeta central destacada */
.mvv-card-destacada {
    border-color: #0F81F2;
    box-shadow: 0 10px 35px rgba(15, 129, 242, 0.1);
}

/* ===== ÍCONO ===== */
.mvv-icono {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 129, 242, 0.08), rgba(10, 93, 176, 0.04));
    border-radius: 18px;
    font-size: 1.8rem;
    color: #0F81F2;
    transition: all 0.35s ease;
}

.mvv-card:hover .mvv-icono {
    background: linear-gradient(135deg, #0F81F2, #0A5DB0);
    color: #FFFFFF;
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(15, 129, 242, 0.3);
}

/* ===== TEXTO ===== */
.mvv-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0A5DB0;
    margin-bottom: 0.8rem;
}

.mvv-card p {
    font-size: 0.9rem;
    color: #5A6B7D;
    line-height: 1.65;
}

/* Lista de valores */
.mvv-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mvv-card ul li {
    font-size: 0.88rem;
    color: #2C3E50;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mvv-card ul li i {
    color: #25D366;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ===== AOS ===== */
[data-aos] {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mvv {
        padding: 4rem 1.5rem;
    }
    
    .mvv-titulo {
        font-size: 1.9rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .mvv-card {
        padding: 2rem 1.5rem;
    }
}