/* ============================================
   SISTEMA MODELOS VIP - ESTILOS PRINCIPALES
   Dark Mode: #1a1a1a | Rosa: #ff2d55
============================================ */

.sistema-modelos-container {
    display: flex;
    min-height: 100vh;
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* SIDEBAR DE FILTROS */
.filtros-sidebar {
    width: 300px;
    background: #252525;
    padding: 25px;
    border-right: 2px solid #333;
    position: sticky;
    top: 20px;
    height: fit-content;
    border-radius: 12px;
    margin: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.filtros-titulo {
    color: #ff2d55;
    font-size: 1.8em;
    margin-bottom: 25px;
    border-bottom: 2px solid #ff2d55;
    text-align: center;
}

.filtro-grupo { margin-bottom: 25px; }
.filtro-grupo label { display: block; color: #ccc; margin-bottom: 8px; font-weight: 600; }

.filtro-input, .filtro-select {
    width: 100%;
    padding: 12px 15px;
    background: #333;
    border: 1px solid #444;
    border-radius: 8px;
    color: white;
}

/* GRID DE MODELOS */
.contenedor-principal { flex: 1; padding: 20px; }

.modelos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* TARJETA INDIVIDUAL */
.modelo-tarjeta {
    background: #252525;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #333;
}

.modelo-tarjeta:hover {
    transform: translateY(-10px);
    border-color: #ff2d55;
    box-shadow: 0 15px 30px rgba(255, 45, 85, 0.2);
}

.modelo-imagen-contenedor {
    position: relative;
    height: 350px;
}

.modelo-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modelo-imagen-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    text-align: center;
}

.modelo-info { padding: 20px; text-align: center; }

.modelo-nombre { color: white; font-size: 1.5em; margin-bottom: 10px; }

.modelo-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #aaa;
    margin-bottom: 15px;
}

/* BOTÓN WHATSAPP */
.whatsapp-oneclick-btn {
    display: block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .sistema-modelos-container { flex-direction: column; }
    .filtros-sidebar { width: auto; margin: 10px; position: static; }
}