/* ============================================================
   HISTORIA Y RESEÑA 
   ============================================================ */

.mv-page {
    background: #ffffff;
    min-height: auto;
}

/* --- SEGUIMIENTO (BREADCRUMBS) --- */
.mv-breadcrumb-subtle {
    padding: 0 !important;
    margin-bottom: 20px !important;
}

.mv-breadcrumb-subtle a, 
.mv-breadcrumb-subtle span, 
.mv-breadcrumb-subtle li {
    font-size: 14px !important;
    color: #686868;
    text-decoration: none;
}

.mv-breadcrumb-subtle .current, 
.mv-breadcrumb-subtle b {
    color: #000000 !important;
    font-weight: 600 !important;
}

/* ---- Tabs  ---- */
.mv-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid #dedede;
    background: #fff;
}

.mv-tab {
    padding: 20px 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #686868;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    border-right: 1px solid #dedede;
    position: relative;
}

.mv-tab:last-child { border-right: none; }

.mv-tab.active {
    background: #fdfdfd;
    color: #000;
}

.mv-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #B80201;
}

/* ---- Paneles de Contenido ---- */
.mv-panel { display: none; }
.mv-panel.active { display: block; animation: mv-fadein 0.3s ease; }

@keyframes mv-fadein {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- TARJETA BLANCA MAESTRA ---- */
.mv-card-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
}

/* ---- IMAGEN FLOTANDO ADENTRO DEL TEXTO ---- */
.mv-img-side {
    float: right; /* Esto hace que el texto la envuelva */
    width: 380px; 
    margin-left: 30px;
    margin-bottom: 15px;
    border: 1px solid #eeeeee;
    border-radius: 15px;
    overflow: hidden;
}

.mv-img-side img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.mv-img-footer {
    padding: 12px 16px;
    font-size: 12px;
    color: #686868;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #eee;
}

/* ---- PÁRRAFOS DEL TEXTO ---- */
.mv-paragraph {
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 18px;
    text-align: justify;
}

/* ---- Responsive ---- */
@media (max-width: 850px) {
    .mv-img-side { 
        float: none; 
        width: 100%; 
        margin-left: 0; 
    }
}

@media (max-width: 600px) {
    .mv-tabs { grid-template-columns: 1fr; }
    .mv-tab { border-right: none; border-bottom: 1px solid #dedede; }
}