:root {
    --mmv-primary-color: #1A3E78; /* Azul oscuro corporativo */
    --mmv-bg-light: #f8f9fa;
    --mmv-border: #e1e1e1;
    --mmv-width: 1200px;
    --mmv-height: 550px;
    --mmv-sidebar-width: 260px;
}

.mmv-container {
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    z-index: 1000;
}

/* --- Botón Principal --- */
.mmv-trigger {
    /* background-color: var(--mmv-primary-color); */
    color: #fff;
    /* padding: 15px 25px; */
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px 4px 0 0;
    width: max-content;
}

/* --- Dropdown Container --- */
.mmv-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: var(--mmv-width);
    height: var(--mmv-height);
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
    /* border: 1px solid var(--mmv-border); */
}

/* Mostrar al hover */
.mmv-container:hover .mmv-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* --- Sidebar (Columna 1) --- */
.mmv-sidebar {
    width: var(--mmv-sidebar-width);
    background-color: var(--mmv-primary-color);
    border-right: 1px solid var(--mmv-border);
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
    overflow-y: auto;
    flex-shrink: 0;
}

.mmv-parent-item a {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.1s;
}

.mmv-parent-item:hover,
.mmv-parent-item.active {
    background-color: var(--mmv-bg-light);
    color: var(--mmv-primary-color);
    font-weight: 600;
}

.mmv-parent-item.active a {
    color: var(--mmv-primary-color);
}

/* --- Content Wrapper (Columnas 2 y 3) --- */
.mmv-content-wrapper {
    flex-grow: 1;
    position: relative;
    padding: 0;
}

/* --- Panel Individual --- */
.mmv-panel {
    display: none;
    width: 100%;
    height: 100%;
    grid-template-columns: 2fr 1.5fr; /* Proporción contenido vs imagen */
    box-sizing: border-box;
}

.mmv-panel.active {
    display: grid;
    animation: mmvFadeIn 0.3s ease-out;
}

/* Subcategorías Grid */
.mmv-sub-grid {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-content: start;
    overflow-y: auto;
}

.mmv-column-item h4 a {
    font-size: 13px;
    color: #444;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}

.mmv-column-item h4 a:hover {
    color: var(--mmv-primary-color);
}

/* Banner / CTA (Columna 3) */
.mmv-cta-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
}

.mmv-cta-overlay {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 80%;
}

.mmv-cta-overlay h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #222;
}

.mmv-btn {
    display: inline-block;
    background: var(--mmv-primary-color);
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
}

@keyframes mmvFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Agrega esto a assets/css/style.css */
.mmv-sub-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}
.mmv-sub-list li a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    display: block;
}
.mmv-sub-list li a:hover {
    color: var(--mmv-primary-color);
}
.mmv-cta-banner { padding: 20px; box-sizing: border-box; } /* Ajuste de padding */
.banner-bg { width: 100%; height: 100%; background-size: cover; background-position: center; border-radius: 4px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px;}