/* Misión & Visión + Nuestros Valores — temp02/about.html */
.mv-area {
    position: relative;
    background: #f4f6fb;
    padding: 100px 0;
    overflow: hidden;
}
.mv-area::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(205, 125, 11, .12);
}
.mv-area::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(0, 36, 126, .07);
}
.mv-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 20px;
    padding: 45px 40px;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0, 36, 126, .08);
    border: 1px solid rgba(0, 36, 126, .08);
    transition: all .45s ease;
    overflow: hidden;
}
.mv-card.in-view {
    opacity: 1;
    transform: translateY(0);
    transition: all .7s cubic-bezier(.2,.8,.2,1);
}
.mv-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00247e, #001852);
    opacity: 0;
    transition: opacity .45s ease;
    z-index: -1;
}
.mv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 36, 126, .25);
}
.mv-card:hover::before { opacity: 1; }
.mv-card:hover .mv-title,
.mv-card:hover .mv-text,
.mv-card:hover .mv-num { color: #fff; }
.mv-card:hover .mv-icon {
    background: #fff;
    color: #00247e;
    transform: rotateY(360deg);
}
.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #cd7d0b, #f0a93a);
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
    transition: all .6s ease;
}
.mv-num {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(0, 36, 126, .06);
    transition: color .45s ease;
    line-height: 1;
}
.mv-title {
    font-family: 'Barlow', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #00247e;
    margin-bottom: 15px;
    transition: color .45s ease;
}
.mv-text {
    color: #5b6478;
    margin-bottom: 0;
    transition: color .45s ease;
}

.values-area {
    position: relative;
    padding: 100px 0;
    background: #fff;
}
.value-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: #f4f6fb;
    height: 100%;
    position: relative;
    transition: all .4s ease;
    cursor: pointer;
}
.value-item.in-view {
    opacity: 1;
    transform: scale(1);
    transition: all .6s cubic-bezier(.2,.8,.2,1);
}
.value-item:hover {
    background: linear-gradient(135deg, #00247e, #001852);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 45px rgba(0, 36, 126, .2);
}
.value-item:hover .value-icon {
    background: #fff;
    color: #cd7d0b;
    transform: scale(1.15) rotate(8deg);
}
.value-item:hover h4,
.value-item:hover p { color: #fff; }
.value-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #cd7d0b;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(0, 36, 126, .12);
    transition: all .4s ease;
}
.value-item h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #00247e;
    margin-bottom: 12px;
    transition: color .4s ease;
}
.value-item p {
    font-size: 14px;
    color: #5b6478;
    margin-bottom: 0;
    transition: color .4s ease;
}
