@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Paleta Corporativa Coopmulgeser */
    --primary-green: #1b431e;
    --primary-green-light: #2c6331;
    --primary-green-dark: #0e2a10;
    --primary-green-rgb: 27, 67, 30;
    
    --gold: #d4af37;
    --gold-light: #ebd068;
    --gold-dark: #b18f23;
    --gold-rgb: 212, 175, 55;
    
    --carbon: #121412;
    --carbon-light: #1c201d;
    --carbon-dark: #080908;
    
    --light-bg: #f4f7f4;
    --light-card: #ffffff;
    --light-text: #1c201d;
    --light-text-secondary: #5a655d;
    --light-border: #e2e8e3;
    
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    
    /* Estados */
    --success: #2e7d32;
    --warning: #f9a825;
    --danger: #c62828;
    --info: #1565c0;
    
    /* Fuentes y Bordes */
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Sombras y Transiciones */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 32px rgba(0,0,0,0.12);
    --transition-all: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-out;
}

/* Reset y Estilos Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
}

body {
    background-color: var(--light-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Personalizado */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-green-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Botones Modernos */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-all);
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(27, 67, 30, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 67, 30, 0.35);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--carbon);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}
.btn-outline:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--danger);
    color: white;
}
.btn-danger:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

/* Formularios Premium */
.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--light-text-secondary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--light-border);
    background-color: var(--light-card);
    color: var(--light-text);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(27, 67, 30, 0.1);
}

/* Tarjetas y Contenedores */
.card {
    background: var(--light-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    transition: var(--transition-all);
    border: 1px solid var(--light-border);
}
.card:hover {
    box-shadow: var(--shadow-lg);
}

/* Insignias (Badges) */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}
.badge-active {
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--success);
}
.badge-pending {
    background-color: rgba(249, 168, 37, 0.1);
    color: var(--warning);
}
.badge-expired {
    background-color: rgba(198, 40, 40, 0.1);
    color: var(--danger);
}

/* Utilidades */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--primary-green); }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }

/* ==========================================================
   GALERÍA DE IMÁGENES — Estilos compartidos Desktop y Móvil
   ========================================================== */

/* --- Preview Bento Mosaic (Home Desktop) --- */
.gallery-home-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #f0f7f1 0%, #ffffff 100%);
}
.gallery-home-inner { max-width: 1100px; margin: 0 auto; }
.gallery-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 190px;
    gap: 12px;
    margin-top: 2.5rem;
}
.gallery-home-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: linear-gradient(135deg, #d4e8d6, #c0d8c3);
}
.gallery-home-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-home-item:nth-child(5) { grid-column: span 2; }
.gallery-home-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    display: block;
}
.gallery-home-item:hover img { transform: scale(1.07); }
.gallery-home-item .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,42,16,0.75) 0%, rgba(14,42,16,0.08) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex; align-items: flex-end; padding: 14px;
}
.gallery-home-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text strong { display: block; color: #fff; font-size: 0.9rem; font-weight: 700; line-height: 1.3; }
.gallery-overlay-text span { color: rgba(255,255,255,0.75); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.6px; }
.gallery-home-ph {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; color: #8aad8d; font-size: 0.72rem; text-align: center; padding: 12px;
}
.gallery-home-ph .ph-icon { font-size: 2.2rem; opacity: 0.6; }

/* --- Full Gallery Page (Desktop Tab) --- */
.gallery-page-header {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    padding: 3.5rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gallery-page-header::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0; height: 50px;
    background: var(--light-bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.gallery-page-header h2 { color: white; font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.gallery-page-header p { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 520px; margin: 0 auto; }
.gallery-page-body { max-width: 1200px; margin: 0 auto; padding: 2rem 2rem 3rem; }

/* Category Filter Pills */
.gallery-filter-bar {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; align-items: center;
}
.gallery-filter-pill {
    padding: 7px 18px; border-radius: 30px;
    border: 1.5px solid var(--light-border);
    background: white; color: var(--light-text-secondary);
    font-size: 0.83rem; font-weight: 600; cursor: pointer;
    transition: var(--transition-fast); white-space: nowrap;
    display: inline-flex; align-items: center; gap: 4px;
}
.gallery-filter-pill:hover { border-color: var(--primary-green); color: var(--primary-green); background: #f0f7f1; }
.gallery-filter-pill.active { background: var(--primary-green); border-color: var(--primary-green); color: white; }
.gallery-filter-num {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px; padding: 0 5px;
    background: rgba(255,255,255,0.22); border-radius: 10px; font-size: 0.65rem;
}
.gallery-filter-pill:not(.active) .gallery-filter-num { background: rgba(0,0,0,0.08); }

/* Masonry Grid */
.gallery-masonry { columns: 3; column-gap: 14px; }
.gallery-masonry-item {
    break-inside: avoid; margin-bottom: 14px;
    border-radius: 12px; overflow: hidden;
    position: relative; cursor: pointer;
    background: linear-gradient(135deg, #d4e8d6, #c0d8c3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: galleryFadeIn 0.4s ease both;
}
@keyframes galleryFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.gallery-masonry-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,67,30,0.2); }
.gallery-masonry-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-masonry-item:hover img { transform: scale(1.04); }
.gallery-masonry-item .g-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,42,16,0.82) 0%, rgba(14,42,16,0.06) 55%, transparent 100%);
    opacity: 0; transition: opacity 0.3s ease;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
}
.gallery-masonry-item:hover .g-overlay { opacity: 1; }
.g-overlay-title { color: white; font-size: 0.88rem; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.g-overlay-desc { color: rgba(255,255,255,0.8); font-size: 0.72rem; line-height: 1.4; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.g-feat-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--gold); color: var(--carbon);
    font-size: 0.58rem; font-weight: 800; padding: 3px 9px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.g-cat-badge {
    position: absolute; top: 10px; right: 10px;
    background: rgba(14,42,16,0.8); color: white;
    font-size: 0.58rem; font-weight: 700; padding: 3px 9px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: 0.4px;
    backdrop-filter: blur(6px);
}
.gallery-empty-state {
    text-align: center; padding: 80px 20px;
    color: var(--light-text-secondary); grid-column: 1/-1;
}
.gallery-empty-icon { font-size: 3.5rem; margin-bottom: 14px; display: block; }

/* --- LIGHTBOX --- */
.gallery-lightbox {
    position: fixed; inset: 0; background: rgba(4,12,5,0.97);
    z-index: 9995; display: none;
    align-items: center; justify-content: center;
    flex-direction: column; backdrop-filter: blur(12px);
}
.gallery-lightbox.open { display: flex; }
.gallery-lb-close {
    position: absolute; top: 18px; right: 22px;
    background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.22);
    color: white; width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.25rem; transition: var(--transition-fast); z-index: 10;
}
.gallery-lb-close:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.gallery-lb-counter {
    position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65);
    font-size: 0.78rem; padding: 5px 16px; border-radius: 20px;
    backdrop-filter: blur(4px);
}
.gallery-lb-img-wrap {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 70px 90px 16px; width: 100%;
}
.gallery-lb-img-wrap img {
    max-width: 100%; max-height: 74vh; object-fit: contain;
    border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    transition: opacity 0.2s ease;
}
.gallery-lb-info {
    width: 100%; max-width: 860px; padding: 12px 90px 28px;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.gallery-lb-texts h3 { color: white; font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.gallery-lb-texts p { color: rgba(255,255,255,0.6); font-size: 0.83rem; margin: 0; line-height: 1.5; }
.gallery-lb-cat-badge {
    flex-shrink: 0;
    background: rgba(212,175,55,0.18); border: 1px solid rgba(212,175,55,0.5); color: var(--gold);
    font-size: 0.65rem; font-weight: 700; padding: 5px 14px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.6px; white-space: nowrap; margin-top: 2px;
}
.gallery-lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.18);
    color: white; width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.4rem; transition: var(--transition-fast);
    backdrop-filter: blur(4px); z-index: 10;
}
.gallery-lb-nav:hover { background: rgba(255,255,255,0.22); }
.gallery-lb-nav:disabled { opacity: 0.2; cursor: default; pointer-events: none; }
.gallery-lb-prev { left: 22px; }
.gallery-lb-next { right: 22px; }

/* --- ADMIN GALLERY PANEL --- */
.admin-gallery-form-wrap {
    background: #f8faf8; border: 1.5px dashed var(--light-border);
    border-radius: 14px; padding: 1.75rem; margin-bottom: 1.75rem;
}
.admin-gallery-form-wrap.has-file { border-color: var(--primary-green); background: #f0f7f1; }
.gallery-count-bar {
    display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem;
    background: white; border: 1px solid var(--light-border);
    border-radius: 10px; padding: 12px 16px;
}
.gallery-count-fill {
    flex: 1; height: 8px; background: #e4ece5; border-radius: 4px; overflow: hidden;
}
.gallery-count-fill-bar {
    height: 100%; border-radius: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    transition: width 0.4s ease;
}
.gallery-count-label { font-size: 0.8rem; color: var(--light-text-secondary); white-space: nowrap; }
.gallery-count-num { font-weight: 800; font-size: 0.92rem; color: var(--primary-green); white-space: nowrap; }
.gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px; margin-top: 1.25rem;
}
.gallery-admin-item {
    position: relative; border-radius: 10px; overflow: hidden;
    aspect-ratio: 1; background: linear-gradient(135deg, #d4e8d6, #c0d8c3);
    box-shadow: var(--shadow-sm);
}
.gallery-admin-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ga-overlay {
    position: absolute; inset: 0; background: rgba(14,42,16,0.78);
    opacity: 0; transition: opacity 0.25s;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 10px;
}
.gallery-admin-item:hover .ga-overlay { opacity: 1; }
.ga-btn {
    width: 88%; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.45);
    color: white; font-size: 0.72rem; font-weight: 600; padding: 5px 10px;
    border-radius: 6px; cursor: pointer; transition: var(--transition-fast); text-align: center;
}
.ga-btn:hover { background: rgba(255,255,255,0.28); }
.ga-btn.danger { border-color: rgba(255,100,100,0.6); color: #ffaaaa; }
.ga-btn.danger:hover { background: rgba(200,0,0,0.35); }
.ga-info {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 6px 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
    color: white; font-size: 0.62rem; line-height: 1.3;
}
.ga-feat-pin {
    position: absolute; top: 6px; left: 6px;
    background: var(--gold); color: var(--carbon);
    font-size: 0.52rem; font-weight: 800; padding: 2px 7px;
    border-radius: 10px; text-transform: uppercase;
}
.ga-draft-pin {
    position: absolute; top: 6px; right: 6px;
    background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.7);
    font-size: 0.52rem; padding: 2px 7px; border-radius: 10px;
}

/* --- MOBILE GALLERY --- */
.m-gallery-strip {
    display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.m-gallery-strip::-webkit-scrollbar { display: none; }
.m-gallery-strip-item {
    flex-shrink: 0; width: 128px; height: 128px;
    border-radius: 12px; overflow: hidden; cursor: pointer;
    position: relative; background: linear-gradient(135deg, #d4e8d6, #c0d8c3);
}
.m-gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; }
.m-gallery-strip-item .m-gl-ovl {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,42,16,0.72) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 8px;
}
.m-gallery-strip-item .m-gl-ovl span {
    color: white; font-size: 0.62rem; font-weight: 600; line-height: 1.2;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.m-gallery-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1rem;
}
.m-gallery-grid-item {
    aspect-ratio: 1; border-radius: 10px; overflow: hidden;
    position: relative; cursor: pointer;
    background: linear-gradient(135deg, #d4e8d6, #c0d8c3);
}
.m-gallery-grid-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.m-gallery-grid-item .m-gl-ovl {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,42,16,0.72) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 8px;
}
.m-gallery-grid-item .m-gl-ovl span { color: white; font-size: 0.65rem; font-weight: 600; }
.m-gallery-filter-bar {
    display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px;
    scrollbar-width: none; margin-bottom: 12px;
}
.m-gallery-filter-bar::-webkit-scrollbar { display: none; }
.m-gallery-pill {
    flex-shrink: 0; padding: 5px 14px; border-radius: 20px;
    border: 1.5px solid var(--light-border); background: white;
    color: var(--light-text-secondary); font-size: 0.75rem; font-weight: 600; cursor: pointer;
}
.m-gallery-pill.active { background: var(--primary-green); border-color: var(--primary-green); color: white; }
.m-gallery-lb {
    position: fixed; inset: 0; background: rgba(4,12,5,0.97);
    z-index: 9998; display: none;
    flex-direction: column; align-items: center; justify-content: center;
}
.m-gallery-lb.open { display: flex; }
.m-gallery-lb-img { max-width: 100%; max-height: 72vh; object-fit: contain; border-radius: 8px; }
.m-gallery-lb-info {
    padding: 14px 18px; width: 100%;
}
.m-gallery-lb-info h3 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.m-gallery-lb-info p { color: rgba(255,255,255,0.6); font-size: 0.78rem; margin: 0; }
.m-gallery-lb-close {
    position: absolute; top: 16px; right: 16px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    color: white; width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.2rem; z-index: 10;
}
.m-gallery-lb-counter {
    position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65);
    font-size: 0.72rem; padding: 4px 14px; border-radius: 20px;
}
.m-gallery-lb-navs {
    position: absolute; bottom: 120px; left: 0; right: 0;
    display: flex; justify-content: space-between; padding: 0 20px;
    pointer-events: none;
}
.m-gallery-lb-btn {
    pointer-events: all;
    background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
    color: white; width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.2rem;
}

/* Responsive ajustes galería */
@media (max-width: 900px) {
    .gallery-masonry { columns: 2; }
    .gallery-home-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 200px 160px 160px; }
    .gallery-home-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-home-item:nth-child(5) { grid-column: span 1; }
    .gallery-lb-img-wrap { padding: 60px 60px 16px; }
    .gallery-lb-info { padding: 12px 60px 24px; }
    .gallery-lb-nav { width: 40px; height: 40px; font-size: 1.1rem; }
}
@media (max-width: 640px) {
    .gallery-masonry { columns: 1; }
    .gallery-lb-img-wrap { padding: 55px 12px 12px; }
    .gallery-lb-info { padding: 10px 16px 20px; flex-direction: column; gap: 8px; }
    .gallery-lb-nav { width: 36px; height: 36px; font-size: 1rem; }
    .gallery-lb-prev { left: 8px; }
    .gallery-lb-next { right: 8px; }
}

/* =============================================
   MISIÓN / VISIÓN / OBJETIVO (MVV) — HOME SECTION
   ============================================= */
.mvv-section {
    padding: 5rem 2rem;
    background: linear-gradient(160deg, #0a1f0c 0%, #1b431e 55%, #0e2a10 100%);
    position: relative;
    overflow: hidden;
}
.mvv-section::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.mvv-inner { max-width: 900px; margin: 0 auto; position: relative; }
.mvv-header { text-align: center; margin-bottom: 2.5rem; }
.mvv-badge {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.35);
    color: #d4af37;
    padding: 5px 18px; border-radius: 20px;
    font-size: 0.74rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 14px;
}
.mvv-header h2 { color: #fff; font-size: 1.9rem; font-weight: 700; margin: 0; line-height: 1.2; }
.mvv-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 2.5rem; flex-wrap: wrap; }
.mvv-tab {
    display: flex; align-items: center; gap: 7px;
    padding: 10px 30px; border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.18);
    background: transparent; color: rgba(255,255,255,0.6);
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    transition: all 0.22s ease; font-family: inherit;
}
.mvv-tab:hover { border-color: rgba(212,175,55,0.45); color: rgba(255,255,255,0.9); background: rgba(212,175,55,0.07); }
.mvv-tab.active { background: linear-gradient(135deg,#d4af37,#b8942a); border-color: transparent; color: #0e2a10; box-shadow: 0 4px 18px rgba(212,175,55,0.35); }
.mvv-panel { display: none; }
.mvv-panel.active { display: flex; gap: 2rem; align-items: flex-start; animation: mvvIn 0.35s ease; }
@keyframes mvvIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.mvv-icon-col {
    flex-shrink: 0; width: 80px; height: 80px; border-radius: 20px;
    background: rgba(212,175,55,0.12); border: 2px solid rgba(212,175,55,0.28);
    display: flex; align-items: center; justify-content: center; font-size: 2.2rem;
}
.mvv-text-col h3 { color: #d4af37; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 14px; }
.mvv-text-col p { color: rgba(255,255,255,0.82); font-size: 0.97rem; line-height: 1.78; margin: 0 0 14px; }
.mvv-text-col p:last-child { margin: 0; }
.mvv-qs-link {
    display: inline-block; margin-top: 1.5rem;
    color: #d4af37; font-size: 0.85rem; font-weight: 600;
    text-decoration: none; border-bottom: 1px solid rgba(212,175,55,0.4);
    padding-bottom: 2px; transition: border-color 0.2s; cursor: pointer;
}
.mvv-qs-link:hover { border-color: #d4af37; }

/* =============================================
   QUIÉNES SOMOS — PAGE
   ============================================= */
.qs-hero {
    background: linear-gradient(155deg, #0a1f0c 0%, #1b431e 55%, #0e2a10 100%);
    padding: 4.5rem 2rem 5rem; text-align: center;
    position: relative; overflow: hidden;
}
.qs-hero::after {
    content: ''; position: absolute;
    bottom: -60px; left: 50%; transform: translateX(-50%);
    width: 120%; height: 120px;
    background: #f9f9f9; border-radius: 50% 50% 0 0;
}
.qs-hero-badge {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.35);
    color: #d4af37; padding: 5px 18px; border-radius: 20px;
    font-size: 0.74rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.qs-hero h1 { color: #fff; font-size: 2.6rem; font-weight: 800; line-height: 1.15; margin: 0 0 16px; }
.qs-hero h1 span { color: #d4af37; }
.qs-hero-lead { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.7; max-width: 580px; margin: 0 auto; }
.qs-body { max-width: 1060px; margin: 0 auto; padding: 5rem 2rem 4rem; }
.qs-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 4.5rem; }
.qs-card {
    background: #fff; border-radius: 18px; padding: 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(27,67,30,0.09);
    border-top: 4px solid var(--primary-green);
    display: flex; flex-direction: column; gap: 12px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.qs-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(27,67,30,0.14); }
.qs-card:nth-child(2) { border-top-color: #d4af37; }
.qs-card:nth-child(3) { border-top-color: #2e7d32; }
.qs-card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), #2a5e2d);
}
.qs-card:nth-child(2) .qs-card-icon { background: linear-gradient(135deg,#c9982a,#d4af37); }
.qs-card:nth-child(3) .qs-card-icon { background: linear-gradient(135deg,#2e7d32,#43a047); }
.qs-card-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-green); }
.qs-card:nth-child(2) .qs-card-label { color: #c9982a; }
.qs-card:nth-child(3) .qs-card-label { color: #2e7d32; }
.qs-card h3 { font-size: 1.1rem; font-weight: 700; color: #1a2e1a; margin: 0; }
.qs-card p { color: #555; font-size: 0.88rem; line-height: 1.7; margin: 0; }
.qs-values {
    background: linear-gradient(135deg,#f0f7f1,#e6f3e7);
    border-radius: 22px; padding: 3rem 2.5rem; margin-bottom: 3rem;
}
.qs-values-title { text-align: center; color: var(--primary-green); font-size: 1.5rem; font-weight: 700; margin: 0 0 .5rem; }
.qs-values-sub { text-align: center; color: #6b8f6d; font-size: 0.9rem; margin: 0 0 2.5rem; }
.qs-values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.qs-value-item {
    background: #fff; border-radius: 14px; padding: 1.4rem 1rem;
    text-align: center; box-shadow: 0 2px 12px rgba(27,67,30,0.06);
    transition: transform 0.2s;
}
.qs-value-item:hover { transform: translateY(-3px); }
.qs-value-icon { font-size: 2rem; margin-bottom: 10px; }
.qs-value-item h4 { color: var(--primary-green); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 6px; }
.qs-value-item p { color: #666; font-size: 0.76rem; line-height: 1.5; margin: 0; }
.qs-cta {
    text-align: center;
    background: linear-gradient(135deg,#0e2a10,#1b431e);
    border-radius: 22px; padding: 3.5rem 2rem; color: white;
}
.qs-cta h2 { font-size: 1.8rem; font-weight: 700; margin: 0 0 14px; line-height: 1.2; }
.qs-cta h2 span { color: #d4af37; }
.qs-cta p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.6; margin: 0 0 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.qs-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Mobile MVV + QS */
.m-qs-card {
    background: linear-gradient(155deg,#0a1f0c,#1b431e);
    border-radius: 16px; padding: 1.5rem; margin-bottom: 1rem;
}
.m-qs-badge {
    display: inline-block;
    background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.3);
    color: #d4af37; padding: 3px 12px; border-radius: 20px;
    font-size: 0.67rem; font-weight: 700; letter-spacing: 0.09em;
    text-transform: uppercase; margin-bottom: 10px;
}
.m-qs-card h3 { color: #fff; font-size: 1rem; font-weight: 700; margin: 0 0 8px; }
.m-qs-card > p { color: rgba(255,255,255,0.7); font-size: 0.78rem; line-height: 1.5; margin: 0 0 14px; }
.m-mvv-tabs { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.m-mvv-tab {
    padding: 5px 13px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent; color: rgba(255,255,255,0.6);
    font-size: 0.73rem; font-weight: 600; cursor: pointer;
    font-family: inherit; transition: all 0.2s;
}
.m-mvv-tab.active { background: #d4af37; border-color: #d4af37; color: #0e2a10; }
.m-mvv-panel { display: none; }
.m-mvv-panel.active { display: block; animation: mvvIn 0.3s ease; }
.m-mvv-panel p { color: rgba(255,255,255,0.8); font-size: 0.78rem; line-height: 1.65; margin: 0 0 8px; }

/* QS mobile full section */
#mobile-sec-quienes-somos .m-qs-full-hero {
    background: linear-gradient(155deg,#0a1f0c,#1b431e);
    border-radius: 16px; padding: 2rem 1.5rem; margin-bottom: 1rem; text-align: center;
}
#mobile-sec-quienes-somos .m-qs-full-hero h2 { color: #fff; font-size: 1.3rem; font-weight: 800; margin: 0 0 8px; }
#mobile-sec-quienes-somos .m-qs-full-hero h2 span { color: #d4af37; }
#mobile-sec-quienes-somos .m-qs-full-hero p { color: rgba(255,255,255,0.7); font-size: 0.8rem; line-height: 1.55; margin: 0; }
.m-qs-pilar {
    background: #fff; border-radius: 14px; padding: 1.25rem;
    margin-bottom: 12px; box-shadow: 0 2px 10px rgba(27,67,30,0.07);
    border-left: 4px solid var(--primary-green);
}
.m-qs-pilar:nth-child(2) { border-left-color: #d4af37; }
.m-qs-pilar:nth-child(3) { border-left-color: #2e7d32; }
.m-qs-pilar-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.m-qs-pilar-icon {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: linear-gradient(135deg,var(--primary-green),#2a5e2d);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.m-qs-pilar:nth-child(2) .m-qs-pilar-icon { background: linear-gradient(135deg,#c9982a,#d4af37); }
.m-qs-pilar:nth-child(3) .m-qs-pilar-icon { background: linear-gradient(135deg,#2e7d32,#43a047); }
.m-qs-pilar-label { font-size: 0.68rem; font-weight: 700; color: var(--primary-green); letter-spacing: 0.08em; text-transform: uppercase; display: block; }
.m-qs-pilar:nth-child(2) .m-qs-pilar-label { color: #c9982a; }
.m-qs-pilar:nth-child(3) .m-qs-pilar-label { color: #2e7d32; }
.m-qs-pilar-header strong { font-size: 0.9rem; color: #1a2e1a; }
.m-qs-pilar p { color: #555; font-size: 0.78rem; line-height: 1.6; margin: 0; }
.m-qs-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 1rem 0; }
.m-qs-val {
    background: #fff; border-radius: 12px; padding: 1rem 0.75rem;
    text-align: center; box-shadow: 0 2px 8px rgba(27,67,30,0.06);
}
.m-qs-val-icon { font-size: 1.5rem; margin-bottom: 6px; }
.m-qs-val h4 { color: var(--primary-green); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; margin: 0 0 4px; }
.m-qs-val p { color: #666; font-size: 0.7rem; line-height: 1.4; margin: 0; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .qs-cards { grid-template-columns: 1fr; }
    .qs-values-grid { grid-template-columns: repeat(2,1fr); }
    .mvv-icon-col { display: none; }
    .mvv-panel.active { flex-direction: column; gap: 1rem; }
}
@media (max-width: 640px) {
    .mvv-header h2 { font-size: 1.5rem; }
    .mvv-tab { padding: 8px 18px; font-size: 0.82rem; }
    .qs-hero h1 { font-size: 1.9rem; }
    .qs-values-grid { grid-template-columns: repeat(2,1fr); }
}

/* =============================================
   PREPÁRATE Y ESTUDIA
   ============================================= */
.pe-home-banner {
    background: linear-gradient(135deg, #1b431e 0%, #0e2a10 100%);
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
}
.pe-home-banner::before {
    content: '';
    position: absolute;
    top: -40%; right: -5%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.pe-home-banner-inner {
    max-width: 1060px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap; position: relative;
}
.pe-home-banner-text { flex: 1; min-width: 280px; }
.pe-home-banner-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(212,175,55,0.14);
    border: 1px solid rgba(212,175,55,0.35);
    color: #d4af37; padding: 5px 16px; border-radius: 20px;
    font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 14px;
}
.pe-home-banner h2 {
    color: #fff; font-size: 1.75rem; font-weight: 800;
    margin: 0 0 12px; line-height: 1.2;
}
.pe-home-banner h2 span { color: #d4af37; }
.pe-home-banner p {
    color: rgba(255,255,255,0.72); font-size: 0.95rem;
    line-height: 1.65; margin: 0;
}
.pe-home-banner-icons {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.pe-home-icon-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    padding: 6px 14px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 500;
    display: flex; align-items: center; gap: 5px;
}

/* Section page */
.pe-hero {
    background: linear-gradient(155deg, #0a1f0c 0%, #1b431e 55%, #0e2a10 100%);
    padding: 4rem 2rem 5rem; text-align: center;
    position: relative; overflow: hidden;
}
.pe-hero::after {
    content: ''; position: absolute;
    bottom: -60px; left: 50%; transform: translateX(-50%);
    width: 120%; height: 120px;
    background: #f9f9f9; border-radius: 50% 50% 0 0;
}
.pe-hero-badge {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.35);
    color: #d4af37; padding: 5px 18px; border-radius: 20px;
    font-size: 0.74rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.pe-hero h1 { color: #fff; font-size: 2.5rem; font-weight: 800; line-height: 1.15; margin: 0 0 14px; }
.pe-hero h1 span { color: #d4af37; }
.pe-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.65; max-width: 560px; margin: 0 auto; }
.pe-body { max-width: 1060px; margin: 0 auto; padding: 4.5rem 2rem 4rem; }
.pe-section { margin-bottom: 4rem; }
.pe-section-title {
    font-size: 1.5rem; font-weight: 800; color: var(--primary-green);
    margin: 0 0 6px;
}
.pe-section-subtitle { color: #6b8f6d; font-size: 0.9rem; margin: 0 0 2rem; line-height: 1.6; }

/* ¿Qué es el Cooperativismo? */
.pe-coop-layout {
    display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: center;
}
.pe-coop-text p { color: #444; font-size: 0.95rem; line-height: 1.78; margin: 0 0 16px; }
.pe-coop-text p:last-child { margin: 0; }
.pe-coop-text .pe-highlight {
    background: linear-gradient(135deg, #0e2a10, #1b431e);
    color: #d4af37; font-size: 1rem; font-weight: 700;
    padding: 1rem 1.5rem; border-radius: 12px;
    text-align: center; margin-top: 1.5rem;
    letter-spacing: 0.02em;
}
.pe-coop-img {
    border-radius: 20px; overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #d4e8d6, #c0d8c3);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 16px 48px rgba(27,67,30,0.18);
    position: relative;
}
.pe-coop-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pe-coop-img-ph { text-align: center; color: #7a9e7f; }
.pe-coop-img-ph .ph-em { font-size: 3.5rem; margin-bottom: 8px; }
.pe-coop-img-ph p { font-size: 0.75rem; line-height: 1.4; max-width: 160px; }

/* Valores cooperativos */
.pe-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.pe-value-chip {
    background: #fff;
    border: 2px solid #e8f2ea;
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: all 0.22s ease;
    box-shadow: 0 2px 8px rgba(27,67,30,0.05);
}
.pe-value-chip:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(27,67,30,0.12);
}
.pe-value-chip-icon { font-size: 1.5rem; margin-bottom: 7px; }
.pe-value-chip span {
    display: block; font-size: 0.78rem; font-weight: 700;
    color: var(--primary-green); line-height: 1.3;
}

/* 7 Principios */
.pe-principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.pe-principle {
    display: flex; gap: 16px; align-items: flex-start;
    background: #fff; border-radius: 14px; padding: 1.4rem 1.5rem;
    box-shadow: 0 2px 16px rgba(27,67,30,0.07);
    border-left: 4px solid var(--primary-green);
    transition: transform 0.2s, box-shadow 0.2s;
}
.pe-principle:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(27,67,30,0.12); }
.pe-principle:nth-child(2) { border-left-color: #d4af37; }
.pe-principle:nth-child(3) { border-left-color: #2e7d32; }
.pe-principle:nth-child(4) { border-left-color: #1565c0; }
.pe-principle:nth-child(5) { border-left-color: #6a1b9a; }
.pe-principle:nth-child(6) { border-left-color: #c62828; }
.pe-principle:nth-child(7) { border-left-color: #e65100; }
.pe-principle-num {
    flex-shrink: 0;
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-green), #2a5e2d);
    color: #fff; font-size: 1.1rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.pe-principle:nth-child(2) .pe-principle-num { background: linear-gradient(135deg,#c9982a,#d4af37); }
.pe-principle:nth-child(3) .pe-principle-num { background: linear-gradient(135deg,#2e7d32,#43a047); }
.pe-principle:nth-child(4) .pe-principle-num { background: linear-gradient(135deg,#1565c0,#1976d2); }
.pe-principle:nth-child(5) .pe-principle-num { background: linear-gradient(135deg,#6a1b9a,#8e24aa); }
.pe-principle:nth-child(6) .pe-principle-num { background: linear-gradient(135deg,#c62828,#e53935); }
.pe-principle:nth-child(7) .pe-principle-num { background: linear-gradient(135deg,#e65100,#f4511e); }
.pe-principle-body h4 { font-size: 0.9rem; font-weight: 700; color: #1a2e1a; margin: 0 0 5px; }
.pe-principle-body p { font-size: 0.83rem; color: #555; line-height: 1.6; margin: 0; }

/* Responsive */
@media (max-width: 900px) {
    .pe-coop-layout { grid-template-columns: 1fr; }
    .pe-coop-img { max-width: 480px; }
    .pe-values-grid { grid-template-columns: repeat(3,1fr); }
    .pe-principles-grid { grid-template-columns: 1fr; }
    .pe-home-banner-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .pe-hero h1 { font-size: 1.8rem; }
    .pe-values-grid { grid-template-columns: repeat(2,1fr); }
    .pe-home-banner h2 { font-size: 1.4rem; }
}

/* ============================================================
   SIMULADOR DE CRÉDITO: BANCO VS COOPERATIVA (Plan 20/20)
   ============================================================ */
.simulator-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.simulator-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.simulator-header { text-align: center; max-width: 640px; margin: 0 auto 1.75rem; position: relative; }
.simulator-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: #0e2a10; color: var(--gold);
    padding: 5px 16px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.simulator-header h2 { font-size: 1.6rem; font-weight: 800; color: var(--carbon); margin: 0 0 0.6rem; line-height: 1.25; }
.simulator-header p { font-size: 0.92rem; color: var(--light-text-secondary); line-height: 1.65; margin: 0; }

/* Input de valor del equipo */
.simulator-input-wrap { max-width: 480px; margin: 0 auto 2rem; position: relative; }
.simulator-input-wrap > label {
    display: block; text-align: center; font-size: 0.82rem; font-weight: 700;
    color: var(--primary-green); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.6rem;
}
.sim-input-currency {
    display: flex; align-items: center; gap: 4px;
    background: #fff; border: 2px solid var(--light-border); border-radius: var(--radius-md);
    padding: 0.6rem 1rem; transition: var(--transition-fast);
}
.sim-input-currency:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.15); }
.sim-input-currency > span:first-child { font-size: 1.4rem; font-weight: 800; color: var(--primary-green); }
.sim-input-currency input {
    flex: 1; border: none; outline: none; font-size: 1.5rem; font-weight: 800;
    color: var(--carbon); background: transparent; text-align: center; min-width: 0;
}
.sim-currency-tag { font-size: 0.75rem; font-weight: 700; color: #999; letter-spacing: 0.05em; }
.simulator-input-wrap input[type="range"] {
    width: 100%; margin: 1rem 0 0.75rem; accent-color: var(--gold); cursor: pointer;
}
.sim-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.sim-chip {
    border: 1.5px solid var(--light-border); background: #fff; color: var(--primary-green);
    font-weight: 700; font-size: 0.8rem; padding: 6px 16px; border-radius: 20px;
    cursor: pointer; transition: var(--transition-fast);
}
.sim-chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.sim-chip.active { background: var(--primary-green); border-color: var(--primary-green); color: #fff; }

/* Comparativo VS */
.sim-vs-grid {
    display: flex; flex-direction: column; gap: 1.25rem;
    align-items: stretch; position: relative; margin-bottom: 1.75rem;
}
.sim-vs-badge {
    align-self: center;
    background: var(--carbon); color: var(--gold);
    font-weight: 800; font-size: 0.85rem; letter-spacing: 0.05em;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); border: 3px solid #fff;
    margin: -0.6rem 0; z-index: 2;
}
.sim-option-card {
    background: #fff; border: 1px solid var(--light-border); border-radius: var(--radius-lg);
    padding: 1.6rem 1.5rem; position: relative; transition: var(--transition-all);
}
.sim-option-card.sim-coop { border: 2px solid var(--gold); background: #fffef8; }
.sim-recommended-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--carbon); font-size: 0.7rem; font-weight: 800;
    padding: 3px 14px; border-radius: 12px; text-transform: uppercase; letter-spacing: 0.04em;
    white-space: nowrap;
}
.sim-option-head { display: flex; align-items: center; gap: 12px; margin-bottom: 1.1rem; }
.sim-option-icon {
    font-size: 1.6rem; width: 48px; height: 48px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: #f0f7f1; border-radius: 12px;
}
.sim-coop .sim-option-icon { background: rgba(212,175,55,0.15); }
.sim-option-head h3 { font-size: 1.05rem; font-weight: 800; color: var(--carbon); margin: 0; }
.sim-option-sub { font-size: 0.76rem; color: var(--light-text-secondary); }
.sim-option-metric-main {
    text-align: center; padding: 1rem 0.5rem; margin-bottom: 1.1rem;
    background: #f8faf8; border-radius: var(--radius-md);
}
.sim-coop .sim-option-metric-main { background: rgba(212,175,55,0.09); }
.sim-metric-value { display: block; font-size: 1.9rem; font-weight: 800; color: var(--primary-green); line-height: 1.15; }
.sim-metric-label { display: block; font-size: 0.76rem; color: var(--light-text-secondary); margin-top: 2px; }
.sim-option-detail { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.sim-option-detail li {
    display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
    font-size: 0.82rem; color: var(--light-text-secondary);
    border-bottom: 1px dashed var(--light-border); padding-bottom: 0.5rem;
}
.sim-option-detail li:last-child { border-bottom: none; padding-bottom: 0; }
.sim-option-detail li strong { color: var(--carbon); font-weight: 700; white-space: nowrap; }
.sim-cost-row strong { color: var(--danger) !important; }
.sim-cost-row.sim-cost-good strong { color: var(--success) !important; }
.sim-coop-note {
    margin-top: 1rem; font-size: 0.76rem; color: var(--primary-green-dark);
    background: #f0f7f1; border-radius: 8px; padding: 0.6rem 0.8rem; line-height: 1.5;
}

/* Banner de ahorro */
.sim-savings-banner {
    display: flex; align-items: center; gap: 16px;
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    color: #fff; border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin-bottom: 1.75rem;
}
.sim-savings-icon { font-size: 2.2rem; flex-shrink: 0; }
.sim-savings-headline { font-size: 1.15rem; font-weight: 800; line-height: 1.3; }
.sim-savings-headline span { color: var(--gold); }
.sim-savings-sub { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 4px; line-height: 1.5; }

/* Barras comparativas */
.sim-compare-bars { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.5rem; }
.sim-bar-row { display: grid; grid-template-columns: 1fr; gap: 4px; }
.sim-bar-label { font-size: 0.78rem; font-weight: 700; color: var(--light-text-secondary); }
.sim-bar-track { background: #eef2ee; border-radius: 20px; height: 14px; overflow: hidden; }
.sim-bar-fill { height: 100%; border-radius: 20px; transition: width 0.5s ease; }
.sim-bar-bank { background: linear-gradient(90deg, #c62828, #e57373); }
.sim-bar-coop { background: linear-gradient(90deg, var(--primary-green), var(--gold)); }
.sim-bar-value { align-self: flex-end; font-size: 0.82rem; font-weight: 800; color: var(--carbon); }

.sim-disclaimer { font-size: 0.7rem; color: #999; line-height: 1.6; text-align: center; max-width: 720px; margin: 0 auto 1.5rem; }
.sim-cta { text-align: center; }

@media (min-width: 900px) {
    .sim-vs-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; }
    .sim-vs-badge { margin: 0; }
    .sim-bar-row { grid-template-columns: 220px 1fr 130px; align-items: center; gap: 14px; }
    .sim-bar-value { text-align: right; }
}
