/* ===== VARIABLES DE COLORES (FÃCIL DE MODIFICAR) ===== */
:root {
    --primary: #4a3cbb;
    --primary-gradient: linear-gradient(135deg, #4a3cbb 0%, #6a5acd 100%);
    --secondary: #e63786;
    --secondary-gradient: linear-gradient(135deg, #91270f 0%, #ff6b9d 100%);
    --accent: #2bd4e6;
    --accent-gradient: linear-gradient(135deg, #2bd4e6 0%, #4aeaff 100%);
    --light: #f8f9fa; /* Usando el valor de home.css y precios.css */
    --dark: #212529;
    --gray: #6c757d;
    --whatsapp: #25D366;
    --light-gray: #e9ecef; /* De precios.css */
    --success: #28a745;     /* De precios.css */
    --warning: #ffc107;     /* De precios.css */
    --pricing-card-bg: #ffffff; /* De precios.css */
    --pricing-card-hover: #f8f9ff; /* De precios.css */
    --discount: #e63786;    /* De precios.css */
}
/* ===== ESTILOS GENERALES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



body {
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9f9f9;
    padding-top: 80px; /* Para compensar el header fijo */
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ===== ESTILOS GENERALES DE BOTONES ===== */
.btn {
    display: inline-block;
    padding: 12px 30px; /* Usar el padding mÃ¡s comÃºn o un valor base */
    background: var(--primary); /* Valor base, se puede sobrescribir */
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center; /* Asegurar centrado para todos los botones */
}

.btn:hover {
    background: var(--secondary); /* Hover general */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Variaciones de botones */
.btn-primary {
    background: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary); /* O un color mÃ¡s oscuro de primary */
}

.btn-secondary {
    background: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary); /* O un color mÃ¡s oscuro de secondary */
}

.btn-accent {
    background: var(--accent);
}

.btn-accent:hover {
    background: #1ac0d1;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-whatsapp {
    background-color: var(--whatsapp); /* Usar background-color para evitar conflictos con background */
    color: white;
}

.btn-whatsapp:hover {
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Estilos para botones dentro de modales de consulta */
.query-modal-btn {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.query-modal-btn i {
    margin-right: 10px;
}

.query-modal-btn.prices-btn {
    background-color: var(--gray);
    color: white;
    border: 1px solid var(--gray);
}

.query-modal-btn.prices-btn:hover {
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
    transform: translateY(-2px);
}

.query-modal-btn.whatsapp-btn {
    background-color: var(--whatsapp);
    color: white;
}

.query-modal-btn.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}
/* ===== HEADER Y NAVEGACIÃ“N ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.51);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
/* ===== BOTÃ“N FLOTANTE MEJORADO (SOLO MÃ“VIL) ===== */
.mobile-filter-toggle {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1000;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25),
                0 0 0 5px rgba(74, 60, 187, 0.15),
                0 0 15px 5px rgba(230, 55, 134, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
}

.mobile-filter-toggle:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.3),
                0 0 0 7px rgba(74, 60, 187, 0.2),
                0 0 20px 7px rgba(230, 55, 134, 0.4);
}

.filter-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    animation: badge-pulse 1.5s infinite;
}

.filter-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-filter-toggle:hover .filter-text {
    opacity: 1;
}

/* ===== PANEL DE FILTROS MÃ“VIL ===== */
        .mobile-filter-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100%;
    background: white;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: right 0.4s ease;
    padding: 0 20px 20px 20px; /* Top padding removed, others kept */
}

.mobile-filter-panel.active {
    right: 0;
}

.panel-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    align-items: stretch;   /* Stretch items to fill width */
    margin: 0 -20px 25px -20px; /* Use negative margin to extend border full-width */
    padding: 20px 20px 15px 20px;
    border-bottom: 2px solid var(--primary);
}

.panel-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.panel-header .panel-actions {
    margin-top: 15px;
    width: 100%;
}

.panel-header h2 {
    color: var(--primary);
}

.close-panel {
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s ease;
}

.close-panel:hover {
    color: var(--secondary);
}

/* ===== OVERLAY ===== */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.overlay.active {
    display: block;
}
/* ===== BARRA DE FILTROS DE ESCRITORIO (NUEVO) ===== */
.sticky-filter-container {
    position: sticky;
    top: 80px;
    z-index: 950;
    margin: 50px 0;
}

.filter-trigger-bar {
    display: flex;
    align-items: center;
    gap: 15px; /* Creates space between items */
    padding: 15px 20px;
    background-color: #ffffffa2; /* Color del usuario */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.66); /* Sombra del usuario */
    border: 1px solid #e9ecef;
    transition: all 0.7s ease;
    cursor: pointer;
}

.filter-trigger-bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

#filter-drawer-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

#quick-clear-btn {
    background: none;
    border: 1px solid var(--gray);
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: none; /* Oculto por defecto */
}

#quick-clear-btn:hover {
    background: var(--gray);
    color: white;
    border-color: var(--gray);
}

.filter-trigger-bar:hover #filter-drawer-btn {
    color: var(--secondary);
}

#filter-drawer-btn i {
    margin-right: 8px;
    transition: transform 0.4s ease;
}

#filter-drawer-btn.is-active i {
    transform: rotate(180deg);
}

/* ===== CONTENIDO DE FILTROS (PANEL DESLIZABLE) ===== */
#desktop-filter-drawer {
    overflow: hidden;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.66);
    transition: max-height 0.2s cubic-bezier(0.16, 1, 0.3, 1), padding-top 0.7s, padding-bottom 0.7s;
}

#desktop-filter-drawer.is-open {
    max-height: 75vh;
    overflow-y: auto;

    padding-top: 15px;
    padding-bottom: 15px;
}

.filter-group {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    transition: padding-bottom 0.4s ease-out;
}

.filter-group + .filter-group {
    margin-top: 12px;
}

.filter-group:has(.filter-content.collapsed) {
    padding-bottom: 0;
}

#desktop-filter-drawer .filter-group:last-child {
    border-bottom: none;
}

.filter-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 20px;
}

.filter-header h3 {
    color: var(--primary);
    font-size: 1.0rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-grow: 1;
}

.header-actions {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}



.filter-count {
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.filter-toggle {
    transition: transform 0.3s ease;
}

.filter-toggle.collapsed {
    transform: rotate(-90deg);
}

.filter-content {
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    max-height: 1000px;
    padding: 0 20px;
}

.filter-content.collapsed {
    max-height: 0;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0;
}

.filter-btn {
    padding: 8px 12px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.filter-btn:hover {
    border-color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
}

.shape-option {
    text-align: center;
    padding: 10px;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 120px;
    background: white;
}

.shape-option:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.shape-option.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.shape-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

/* AgrupaciÃ³n de modelos por categorÃ­a */
.shape-category-group {
    width: 100%;
    margin-bottom: 25px;
}

.shape-category-title {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.shape-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Mobile adjustments for shapes list */
@media (max-width: 768px) {
    .shape-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    .shape-option {
        width: 100% !important;
        padding: 8px;
    }

    .shape-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
}

/* ===== STYLING FOR THE COLOR FILTER BUTTON ===== */

.color-button-wrapper {
    display: flex;
    align-items: center;
    margin-left: auto; /* Pushes it away from the h3 */
    margin-right: 20px; /* Adds space to the right */
}

#color-filter-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #007bff; /* Light blue text */
    border: 3px solid #007bff; /* Thicker light blue border */
    border-radius: 50px;
    background-color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

#color-filter-btn:hover {
    background-color: #007bff;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
}

#color-filter-btn .fa-palette {
    font-size: 1.1em; /* Adjusted icon size */
    margin-right: 8px;
    color: inherit;
}

#color-count {
    margin-left: 10px;
    font-weight: bold;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* --- Drawer Footer --- */
.drawer-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

#collapse-drawer-btn {
    background: var(--light-gray);
    color: var(--dark);
    border: none;
    width: 50px;
    height: 30px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 30px;
    transition: all 0.3s ease;
}

#collapse-drawer-btn:hover {
    background: var(--primary);
    color: white;
}
/* ===== ANIMACIONES ===== */
@keyframes pulse {
    0% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 0 0 5px rgba(37, 211, 102, 0.15), 0 0 15px 5px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 0 0 8px rgba(37, 211, 102, 0.2), 0 0 20px 8px rgba(37, 211, 102, 0.4); }
    100% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 0 0 5px rgba(37, 211, 102, 0.15), 0 0 15px 5px rgba(37, 211, 102, 0.3); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* AnimaciÃ³n para el fondo de la barra de filtros cuando estÃ¡ flotando */
@keyframes pulse-opacity {
    0% { background-color: #ffffff; } /* Opaco */
    50% { background-color: #ffffffd2; } /* TranslÃºcido (tu color) */
    100% { background-color: #ffffff; } /* Opaco */
}

/* AnimaciÃ³n para la sombra de la barra de filtros cuando estÃ¡ flotando */
@keyframes pulse-shadow {
    0% { box-shadow: 0 10px 30px rgba(26, 7, 70, 0.69); } /* Tu sombra */
    50% { box-shadow: 0 25px 20px rgba(87, 37, 179, 0.24); } /* Sombra mÃ¡s grande */
    100% { box-shadow: 0 10px 30px rgba(62, 25, 197, 0.66); } /* Tu sombra */
}

/* Aplica las animaciones solo cuando la barra es "sticky" (flotante) */
.sticky-filter-container.is-sticky .filter-trigger-bar {
    /* VELOCIDAD DE ANIMACIÃ“N: Cambia los valores 2.5s y 2s para ajustar la velocidad */
    animation: pulse-opacity 5.5s infinite, pulse-shadow 5s infinite;
}

/* Detiene las animaciones y hace el fondo opaco cuando el panel de filtros estÃ¡ abierto */
.sticky-filter-container:has(#desktop-filter-drawer.is-open) .filter-trigger-bar {
    animation: none;
    background-color: #ffffff; /* 100% opaco */
}
/* Los estilos de la galerÃ­a ahora son manejados por la librerÃ­a fj-gallery.css */

/* Estilos de PaginaciÃ³n */
.pagination {
    display: flex;
    flex-direction: column; /* Apila los elementos verticalmente */
    align-items: center; /* Centra los grupos de botones */
    gap: 10px; /* Espacio entre la fila de pÃ¡ginas y la de extremos */
    margin: 30px 0;
}

.pagination-pages,
.pagination-ends {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Asegura que los botones se envuelvan en pantallas muy pequeÃ±as */
    gap: 5px; /* Espacio entre botones */
    width: 100%; /* Asegura que los contenedores ocupen todo el ancho */
}

.pagination-btn {
    background-color: #fff;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    font-size: 0.9rem;
}

.pagination-btn:hover {
    background-color: var(--primary-light);
    color: #fff;
}

.pagination-btn.active {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination-ellipsis {
    padding: 8px 5px;
    color: #666;
}

/* Estilos para los botones de carga y errores */
.loading, .error, .no-results {
    text-align: center;
    padding: 50px 20px;
    color: #555;
}

/* Media Query para asegurar la responsividad en mÃ³viles */
@media (max-width: 768px) {
    .pagination {
        flex-direction: column;
    }
}

/* Pre-hide gallery to prevent FOUC */
#results-container.gallery-loading {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.loading i, .error i, .no-results i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}
/* ===== MODAL DE IMAGEN ===== */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-container { position: relative; width: 90%; height: 90%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.modal-content { position: relative; max-width: 100%; max-height: 85vh; display: flex; align-items: center; justify-content: center; overflow: hidden; width: 100%; }
.modal-carousel { display: flex; transition: transform 0.6s ease-in-out; height: 100%; width: 100%; }
.modal-carousel-item { flex: 0 0 100%; display: flex; align-items: center; justify-content: center; height: 100%; }
.modal-image { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.modal-close { position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}
.modal-close:hover { background: rgba(0, 0, 0, 0.8); transform: scale(1.1); }
.modal-nav { position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 5;
}
.modal-arrow {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.modal-arrow:hover { background: var(--primary); transform: scale(1.1); }

.modal-arrow.nav-text {
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    padding: 5px;
}

.modal-info { position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: white;
    z-index: 5;
}
.modal-counter { background: rgba(0, 0, 0, 0.7); padding: 8px 20px; border-radius: 20px; font-size: 1.1rem; backdrop-filter: blur(5px); }
.modal-dots { display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0);
    padding: 10px 15px;
    border-radius: 30px;
    backdrop-filter: blur(2px);
}
.modal-dot { width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.modal-dot.active { background: var(--primary); transform: scale(1.2); }
.modal-dot:hover { background: rgba(255, 255, 255, 0.6); }
.modal-thumbnails {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Alinear al inicio */
    gap: 10px;
    padding: 10px 20px; /* AÃ±adir padding horizontal */
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    overflow-x: auto; /* Habilitar scroll horizontal */
    /* Ocultar scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.modal-thumbnails::-webkit-scrollbar {
    display: none;
}

.modal-container:hover .modal-thumbnails { opacity: 1; pointer-events: all; }

.modal-thumbnail, .modal-thumbnail-nav {
    flex-shrink: 0; /* Evitar que los items se encojan */
}
.modal-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.modal-thumbnail:hover, .modal-thumbnail.active { opacity: 1; border-color: var(--primary); transform: scale(1.1); }

.modal-thumbnail-nav {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    gap: 4px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.modal-thumbnail-nav:hover {
    background-color: var(--primary);
    border-color: var(--primary-dark);
    transform: scale(1.1);
}
.modal-actions {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}
.modal-action-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}
.modal-action-btn:hover { background: var(--primary); transform: scale(1.1); }

/* ===== MODAL INTERMEDIO DE CONSULTA ===== */
.query-modal-overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000; /* Por encima del modal de imagen */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.query-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.query-modal-content {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 90%;
    max-width: 450px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.query-modal-overlay.active .query-modal-content {
    transform: scale(1);
}

.query-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s ease;
}

.query-modal-close:hover {
    color: var(--dark);
}

.query-modal-logo {
    height: 40px;
    margin-bottom: 15px;
}

.query-modal-content p {
    margin-bottom: 10px;
    color: var(--gray);
    font-weight: 500;
}

.query-modal-thumbnail {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 3px solid #eee;
}

#query-modal-product-name {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.query-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ===== ESTILOS PARA EL MODAL DE FILTRO DE COLOR ===== */

.color-modal-overlay {
    position: fixed;
    z-index: 2500; /* Encima del modal de imagen pero debajo del de consulta */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none; /* Se controla con JS */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.color-modal-content {
    background-color: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.color-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid #e0e0e0;
}

.color-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.color-modal-close {
    font-size: 2.5rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s ease;
}

.color-modal-close:hover {
    color: #333;
}

.color-modal-body {
    padding: 25px;
    overflow-y: auto;
    display: grid;
    gap: 25px;
}

.color-section h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden; /* Para gradientes */
}

.color-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.color-circle.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary);
}

/* Checkmark para el cÃ­rculo seleccionado */
.color-circle.selected::after {
    content: '\f00c'; /* CÃ³digo de FontAwesome para el checkmark */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: white;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
}

.color-modal-footer {
    padding: 15px 25px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
}

/* ===== MODALES DE POLÃTICA Y TÃ‰RMINOS ===== */
.privacy-modal, .terms-modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 4000; /* Alto para estar por encima de todo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Habilitar scroll si el contenido es muy largo */
    background-color: rgba(0,0,0,0.7);
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

.privacy-modal-content, .terms-modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s
}

.privacy-modal-close, .terms-modal-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.privacy-modal-close:hover,
.privacy-modal-close:focus,
.terms-modal-close:hover,
.terms-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Keyframes para la animaciÃ³n */
@-webkit-keyframes slideIn {
    from {margin-top: -5%; opacity: 0} 
    to {margin-top: 5%; opacity: 1}
}

@keyframes slideIn {
    from {margin-top: -5%; opacity: 0}
    to {margin-top: 5%; opacity: 1}
}

@-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}

/* Estilos para el modal de ediciÃ³n de detalles (clientes/envÃ­o) */
#editDetailsModal {
    display: none; /* Oculto por defecto */
    position: fixed; /* Fijo en la ventana */
    z-index: 1000; /* Por encima de otros elementos */
    left: 0;
    top: 0;
    width: 100%; /* Ancho completo */
    height: 100%; /* Alto completo */
    overflow: auto; /* Habilitar scroll si el contenido es muy grande */
    background-color: rgba(0, 0, 0, 0.6); /* Fondo semi-transparente */
    display: flex; /* Usar flexbox para centrar contenido */
    align-items: center; /* Centrado vertical */
    justify-content: center; /* Centrado horizontal */
}

#editDetailsModal .modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Ancho del contenido del modal */
    max-width: 600px; /* Ancho mÃ¡ximo */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative; /* Para posicionar el botÃ³n de cerrar */
}

#editDetailsModal .close-button {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#editDetailsModal .close-button:hover,
#editDetailsModal .close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* ===== MODAL DE TARJETA DE PRECIO ===== */

.price-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000; /* Por encima del modal de imagen */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.price-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.price-modal-content {
    position: relative;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px; /* Ancho similar a las tarjetas de precios */
    transform: scale(0.9);
    transition: transform 0.3s ease;
    padding: 20px; /* Padding para que la tarjeta no pegue a los bordes */
    max-height: 85vh; /* Limitar altura al 85% de la pantalla */
    overflow-y: auto; /* Habilitar scroll si el contenido es muy alto */
}

.price-modal-overlay.active .price-modal-content {
    transform: scale(1);
}

.price-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    z-index: 10;
}

.price-modal-close:hover {
    color: var(--dark);
}

/* AdaptaciÃ³n de la tarjeta de producto para el modal */
#price-card-container {
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

#price-card-image {
    max-height: 300px; /* Limitar altura de la imagen */
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
}

/* ===== BOTÃ“N DE WHATSAPP FLOTANTE ===== */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite; /* Asumiendo que pulse estÃ¡ en _animations.css */
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 4px 6px 14px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

/* ===== MODAL DE WHATSAPP ===== */
.whatsapp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.whatsapp-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.whatsapp-modal h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.whatsapp-modal p {
    color: var(--gray);
    margin-bottom: 20px;
}

.whatsapp-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Reglas especÃ­ficas para botones de WhatsApp en el modal */
#sendWhatsApp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, #128C7E 100%); /* Usar var(--whatsapp) */
    color: white;
}

.whatsapp-float { /* Esta regla ya estÃ¡ arriba, pero la dejo aquÃ­ por si hay alguna especificidad */
    background-color: var(--whatsapp);
}
/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-col {
    flex: 1;
    min-width: 200px;
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}
.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}
/* Responsive adjustments */

@media (max-width: 992px) {
    #desktop-filter-drawer, .filter-trigger-bar, .sticky-filter-container {
        display: none; /* Ocultar filtros de escritorio y el nuevo botÃ³n en mÃ³vil */
    }
}

@media (min-width: 993px) {
    .mobile-filter-toggle {
        display: none; /* Ocultar botÃ³n flotante en escritorio */
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    
    /* Ajustes para modal en mÃ³viles */
    .modal-arrow { width: 50px; height: 50px; font-size: 1.5rem; }
    .modal-thumbnails { display: none; }
    .modal-info { 
		flex-direction: column; 
		gap: 10px; 
		bottom: 90px; /* Subir para dejar espacio al botÃ³n de WhatsApp */
	}
}

@media (max-width: 576px) {
    /* Para el modal en mÃ³viles */
    .modal-nav { padding: 0 10px; }
    .modal-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
    .modal-actions { top: 10px; left: 10px; }
    .modal-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 2rem; }
}

/* === BOTÃ“N DE WHATSAPP EN EL MODAL - POSICIONAMIENTO DINÃMICO === */
#whatsapp-btn-modal {
    position: absolute;
    top: 25px; /* PosiciÃ³n para Desktop: bien arriba */
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 90%;
    max-width: 400px;
    padding: 12px 18px;
    background: linear-gradient(145deg, #101110ff, #101312ff);
    color: white !important;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(41, 37, 51, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

#whatsapp-btn-modal:hover {
    transform: translateX(-50%) translateY(-2px); /* Mantener el translateX para el centrado */
    box-shadow: 0 8px 20px rgba(10, 8, 17, 0.5);
    background: #030108ff;
}

#whatsapp-btn-modal i {
    margin-right: 8px;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* En mÃ³vil, mover el botÃ³n abajo del todo */
@media (max-width: 768px) {
    #whatsapp-btn-modal {
        top: auto;
        bottom: 5px; /* PosiciÃ³n para MÃ³vil: abajo */
        font-size: 0.95rem;
        padding: 10px 16px;
        width: 95%;
    }
}
/* ===== VARIABLES DE COLORES (FÃCIL DE MODIFICAR) ===== */
:root {
    --header-height: 80px;
    /* Aproximadamente la altura del header */
}

/* ===== ESTILOS GENERALES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: white;
    /* Fondo general blanco */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

/* ===== ESTILOS DE BOTONES ===== */

/* ===== ESTILOS DE TÃTULOS DE SECCIÃ“N ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
}

/* ===== HEADER Y NAVEGACIÃ“N ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 1002;
}

/* CAMBIAR TAMAÃ‘O DEL LOGO: Ajusta la altura aquÃ­ */
.logo-img {
    height: 50px;
    /* Cambia este valor para agrandar/achicar el logo */
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

/* ===== BOTÃ“N DE MENÃš MÃ“VIL CON ANIMACIÃ“N MEJORADA ===== */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 50%;
    background-color: rgba(74, 60, 187, 0.1);
    animation: bouncePulse 2s infinite;
    z-index: 1001;
}

@keyframes bouncePulse {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 0 rgba(74, 60, 187, 0.4);
    }

    40% {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 5px 15px rgba(74, 60, 187, 0.6);
        background-color: rgba(74, 60, 187, 0.2);
    }

    60% {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 3px 10px rgba(74, 60, 187, 0.5);
    }
}

.mobile-menu-btn:hover {
    animation: none;
    background-color: rgba(74, 60, 187, 0.2);
}

/* ===== NUEVO: ESTILOS PARALLAX HERO ===== */
.hero-parallax-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
}



/* Evitamos el margen extra en secciones parallax que no son el Hero superior */
.testimonials-parallax-wrapper {
    margin-top: 0 !important;
}

.hero-parallax-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Opacidad del 34% */
    z-index: 1;
    pointer-events: none;
}



.parallax-hero-bg {
    position: absolute;
    top: -45%; /* Más arriba para dar más margen inferior */
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: 130%; /* Un poco mÃ¡s ancho */
    height: 200%; /* Mucho mÃ¡s alto para cubrir el scroll largo solicitado */
    object-fit: cover;
    object-position: center;
    object-position: center;
    z-index: 0;
    /* DetrÃ¡s del carrusel */
    opacity: 1;
    /* Valor numÃ©rico estÃ¡ndar */
    will-change: transform;
    pointer-events: none;
}

/* Franja Parallax antes del Footer - Separada para control del usuario */
.footer-parallax-separator {
    height: 135px; /* Modifica esto para el alto */
    background-image: url('../img/backgrounds/luxury_parallax.webp');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 0px solid rgba(255,255,255,0.05);
}

.footer-parallax-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    backdrop-filter: blur(6px); /* Modifica esto para el desenfoque */
    background: rgba(0, 0, 0, 0.4); /* Modifica esto para el tono */
}


/* ===== HERO SECTION CON SWIPER ===== */
.hero {
    padding: 0;
    /* Swiper gestiona su propio padding/margin si es necesario */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    /* Ancho mÃ¡ximo del carrusel */
    height: 550px;
    /* Altura fija para el carrusel */
    z-index: 1;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, var(--overlay-opacity, 0.5));
    z-index: 1;
    transition: background-color 0.3s ease;
}

.carousel-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.swiper-slide-active .carousel-image {
    transform: scale(1.05);
}

.carousel-content {
    position: absolute;
    z-index: 2;
    color: white;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 35%;
    /* Reducido para que el texto salte antes */
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.carousel-content h1, .carousel-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    /* Evita que los botones salten de lÃ­nea */
    gap: 15px;
    /* Espacio entre los botones */
}

/* Estilos para los elementos de navegaciÃ³n de Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
    transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: white;
}


/* ===== SECCIÃ“N DE MODELOS ===== */
.models {
    background-color: white;
    padding: 60px 0;
}

.models-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    justify-content: center;
    gap: 30px;
    width: 100%;
}


.model-card {
    flex: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;

    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.model-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.model-content {
    padding: 20px;
}

.model-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.model-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.model-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

/* Media Queries para Responsive */
@media (max-width: 992px) {
    .carousel-content {
        max-width: 65%;
        left: 3%;
        padding: 30px;
    }

    .carousel-content h1, .carousel-content h2 {
        font-size: 2.2rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-parallax-wrapper {
        padding-top: 0;
        box-sizing: border-box;
    }


    .hero {
        height: 70vh;
        /* Altura relativa para mÃ³viles */
        border-radius: 0;
        /* Permitir que el contenido (el cuadro de texto) se vea fuera */
        overflow: visible !important;
        /* AÃ±adir espacio en la parte inferior para el cuadro de texto que "cuelga" */
        margin-bottom: 80px;
        /* Espacio para el cuadro de texto */
    }

    .hero-swiper,
    .swiper-wrapper,
    .swiper-slide {
        /* MUY IMPORTANTE: Permitir que el contenido se desborde, forzando la regla */
        overflow: visible !important;
    }

    .carousel-content {
        /* Posicionamiento absoluto para "sacarlo" del flujo */
        position: absolute;
        width: 100%;
        max-width: 100%;
        left: 0;
        top: auto;
        /* Anclar el borde inferior del cuadro al borde inferior de la imagen */
        bottom: 0;
        /* Desplazar el cuadro hacia abajo en un 50% de su propia altura */
        transform: translateY(50%);
        text-align: left;
        background: rgba(0, 0, 0, 0.6);
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 0;
        z-index: 2;
        /* Asegurar que estÃ© por encima del fondo parallax */
    }

    .carousel-content h1,
    .carousel-content p {
        font-size: 5vw;
        white-space: nowrap;
        overflow: hidden;
        width: 100%;
        /* Asegura que ocupe todo el ancho para el overflow */
    }

    .carousel-content p {
        font-size: 3.5vw;
        margin-bottom: 10px;
    }

    /* Estilos para los botones en mÃ³vil */
    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        /* Botones a los bordes */
        width: 100%;
        /* Asegura que ocupe todo el ancho para el space-between */
        gap: 15px;
        margin-top: 10px;
        /* Reducimos margen superior */
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem;
    }

    .hero-swiper .swiper-pagination {
        /* Mover los puntos de paginaciÃ³n a la parte superior del carrusel */
        top: 10px !important;
        bottom: auto !important;
    }

    /* ===== ESTILOS PARA MARQUESINA DE TEXTO LARGO (CONTROLADO POR JS) ===== */
    .carousel-content .is-scrolling>span {
        display: inline-block;
        animation: marquee 5s linear 2s infinite;
        /* 2s de pausa, 5s de animaciÃ³n */
    }
}

@media (max-width: 576px) {
    .carousel-content {
        padding: 15px;
        /* Menos padding en pantallas muy chicas */
    }

    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS DEL MENÃš MÃ“VIL Y RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: -120%;
        left: 0;
        right: 0;
        width: auto;
        height: auto;
        background: white;
        flex-direction: column;
        transition: top 0.4s ease-in-out;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        padding-top: 80px;
        padding-bottom: 20px;
        overflow: hidden;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    nav.active {
        top: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 100%;
    }

    nav ul li {
        margin: 0;
        width: 90%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 20px 10px;
        font-size: 1.15rem;
        font-weight: 500;
    }

    nav ul li a i {
        margin-right: 12px;
        width: 20px;
    }

    .mobile-menu-close-arrow {
        position: relative;
        margin: 25px auto 0;
        left: auto;
        bottom: auto;
        transform: none;
        background-color: var(--primary);
        color: white;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
    }

    .mobile-menu-close-arrow:hover {
        background-color: var(--secondary);
        transform: scale(1.1);
    }
}

/* Estilos para corregir la cabecera en modo escritorio */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }

    #mobile-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        flex-direction: row;
        transition: none;
        padding-top: 0;
        padding-bottom: 0;
        overflow: visible;
        border-radius: 0;
    }

    #mobile-menu ul {
        flex-direction: row;
        padding: 0;
        align-items: center;
    }

    #mobile-menu li {
        margin: 0 15px;
        width: auto;
        border-bottom: none;
    }

    #mobile-menu li a {
        padding: 0;
        font-size: 1rem;
    }

    #mobile-menu li a i {
        display: none;
    }

    #mobileMenuCloseArrow {
        display: none;
    }
}

/* ===== DEFINICIÃ“N DE LA ANIMACIÃ“N MARQUEE (CONTROLADA POR JS) ===== */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-105%);
        /* -100% para el texto, -5% extra para asegurar que salga completamente */
    }
}

/* Swiper en mosaicos */
.mosaico-swiper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.mosaico-swiper .swiper-button-next,
.mosaico-swiper .swiper-button-prev {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.4);
}

.mosaico-swiper .swiper-button-next::after,
.mosaico-swiper .swiper-button-prev::after {
    font-size: 14px;
}

.mosaico-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
}


/* Estilos para el slide de Ver MÃ¡s al final del carrusel */
.slide-ver-mas {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    overflow: hidden;
}

.slide-ver-mas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Overlay oscuro para legibilidad */
    z-index: 1;
    transition: background 0.3s ease;
}

.slide-ver-mas:hover::before {
    background: rgba(0, 0, 0, 0.4);
    /* Se aclara sutilmente al pasar el mouse */
}


.slide-ver-mas a {
    text-decoration: none;
    color: white !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    /* Asegurar que estÃ© por encima de todo */
    cursor: pointer;
}


.ver-mas-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.slide-ver-mas:hover .ver-mas-content {
    transform: scale(1.1);
}


.ver-mas-content i {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #ffffff !important;
    /* Blanco intenso */
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    /* Sombra para resaltar */
}

.ver-mas-content span {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff !important;
    /* Blanco intenso */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    /* Sombra intensa para legibilidad */
}


.ver-mas-content span {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* css/neon_effects.css */
:root {
    --elegant-gold: #d4af37;
    --elegant-silver: #c0c0c0;
    --elegant-bronze: #b87333;
    --elegant-champagne: #f7e7ce;
    --deep-bg: #050505;
}

/* Global Reset & Body */
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    background-color: #000;
    overflow-x: hidden;
    position: relative;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(var(--elegant-silver) 1px, transparent 0px),
        radial-gradient(var(--elegant-gold) 1px, transparent 0px);
    background-size: 100px 100px;
    background-position: 0 0, 50px 50px;
    opacity: 0.00;
    z-index: -1;
    animation: backgroundMove 60s linear infinite;
}

@keyframes backgroundMove {
    from {
        background-position: 0 0, 50px 50px;
    }

    to {
        background-position: 100px 100px, 150px 150px;
    }
}

/* SecciÃ³n de Modelos - Escaneo TÃ©cnico */
.models {
    position: relative;
    background: transparent;
    position: relative;
    z-index: 2;
    padding: 100px 0;
    overflow: hidden;
    width: 100%;
}

.models::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    mask-image: radial-gradient(circle at center, black 10%, transparent 45%);
}

.models::after {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.15), transparent);
    animation: scanMove 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* TÃ­tulos de SecciÃ³n */
.section-title {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
    width: 100%;
}

.section-title h2 {
    color: var(--elegant-gold) !important;
    font-weight: 200 !important;
    text-transform: uppercase !important;
    letter-spacing: 12px !important;
    font-size: clamp(1.8rem, 5vw, 3rem) !important;
    margin-bottom: 20px !important;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2) !important;
    border: none !important;
}

.section-title h2::after {
    display: none !important;
}

.section-title p {
    color: var(--elegant-silver) !important;
    font-weight: 300 !important;
    letter-spacing: 4px !important;
    opacity: 0.8 !important;
    margin: 0 auto !important;
    max-width: 600px !important;
}

/* Sistema de AcordeÃ³n Reintroducido */
.category-accordion {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
}

.category-accordion-item {
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.1, 5);
}

.category-accordion-item.reveal {
    opacity: 0.9;
    transform: translateY(0);
}

.neon-card-container {
    position: relative;
    width: 100%;
    height: clamp(140px, 20vw, 200px);
    background: transparent;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: all 0.5s ease;
}

.neon-card-container:hover {
    border-color: var(--elegant-gold);
}

.neon-card-container::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background-image: conic-gradient(transparent, var(--elegant-gold), transparent 20%);
    animation: rotate-halo 10s linear infinite;
    opacity: 0.15;
    top: -25%;
    left: -25%;
}

.neon-card-content {
    position: absolute;
    inset: 2px;
    background: #080808;
    border-radius: 18px;
    z-index: 1;
    overflow: hidden;
}

.neon-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(100%) brightness(0.5);
    transition: 0.8s ease;
}

.neon-card-container:hover .neon-card-image,
.category-accordion-item.is-open .neon-card-image {
    opacity: 0.6;
    filter: grayscale(0%) brightness(0.8);
}

.neon-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 2;
}

.neon-card-title {
    color: var(--elegant-champagne) !important;
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    font-weight: 200;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0;
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    opacity: 0;
    width: 100%;
}

.category-accordion-item.is-open .category-content {
    max-height: 10000px;
    opacity: 1;
    padding: 40px 0;
}

.models-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* SECCIÃ“N TESTIMONIOS (Mejora de visibilidad Parallax) */
.testimonials-parallax-wrapper {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
}

.testimonials-section {
    background: rgba(0, 0, 0, 0.0) !important;
    /* MÃ¡s transparente para ver el fondo */
    backdrop-filter: blur(5px) !important;
    padding: 0px 0 !important;
    width: 100% !important;
    position: relative;
    border: none !important;
}

.testimonials-container-new {
    background: transparent !important;
    /* Eliminar recuadro blanco */
    box-shadow: none !important;
    padding: 0 !important;
    display: grid !important; /* Stack grid */
    grid-template-columns: 1fr;
}


.testimonial-new {
    background: rgba(10, 10, 10, 0.8) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 30px !important;
    padding: 60px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(15px) !important;
    grid-area: 1 / 1 / 2 / 2; /* Todo en la misma celda */
    display: flex !important; /* Para alineaciÃ³n interna */
}


.author-info {
    border-top: 1px solid rgba(212, 175, 55, 0.1) !important;
    padding-top: 25px !important;
    margin-top: 25px !important;
}

.author-avatar {
    border: 2px solid var(--elegant-gold) !important;
}

.testimonials-container-new .arrow {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--elegant-gold) !important;
    color: var(--elegant-gold) !important;
}

.testimonials-container-new .arrow:hover {
    background: var(--elegant-gold) !important;
    color: #000 !important;
}

/* PIE DE PÃGINA (RestauraciÃ³n completa de estilos) */
footer {
    background: #000 !important;
    border-top: 2px solid #111 !important;
    padding: 100px 0 50px 0 !important;
}

.footer-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 50px !important;
    justify-content: space-between !important;
}

.footer-col {
    flex: 1 1 200px !important;
}

footer h4 {
    color: var(--elegant-gold) !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    letter-spacing: 4px !important;
    margin-bottom: 30px !important;
    font-size: 1.1rem !important;
}

footer p,
footer li,
footer a {
    color: var(--elegant-silver) !important;
    font-weight: 200 !important;
    line-height: 1.8 !important;
    font-size: 0.95rem !important;
}

footer ul {
    list-style: none !important;
    padding: 0 !important;
}

footer ul li {
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

footer i {
    color: var(--elegant-gold) !important;
    width: 20px !important;
}

footer a:hover {
    color: var(--elegant-gold) !important;
    transform: translateX(5px);
    display: inline-block;
}

.copyright {
    margin-top: 80px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding-top: 40px !important;
    text-align: center !important;
    opacity: 0.4;
}

@keyframes rotate-halo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes scanMove {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .neon-card-title {
        letter-spacing: 4px;
    }

    .section-title h2 {
        letter-spacing: 6px;
    }

    .footer-col {
        flex: 1 1 100%;
        text-align: center;
    }

    footer ul li {
        justify-content: center;
    }

    /* Mostrar color focalizado Ãºnicamente en la primera por Ãºnica vez (antes de interactuar) */
    .category-accordion-item.first-mobile-preselect .neon-card-image {
        opacity: 0.6 !important;
        filter: grayscale(0%) brightness(0.8) !important;
    }

    .category-accordion-item.first-mobile-preselect .neon-card-container {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.5) !important;
        border: 1px solid rgba(212, 175, 55, 0.8) !important;
    }
}

/* ========================================================
   5. MOSAIC CARDS - SILVER MINIMALIST REDESIGN
   ======================================================== */
.model-card {
    height: 420px;
    background: #0a0a0a;
    border: 1px solid rgba(192, 192, 192, 0.3);
    /* Silver border */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

/* Silver Halo Effect */
.model-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            rgba(192, 192, 192, 0.25),
            transparent 30%);
    animation: rotate-halo 6s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.model-card:hover {
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.15);
    border-color: rgba(192, 192, 192, 0.6);
}

/* Image Zoom Effect */
.mosaico-swiper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
}

.mosaico-swiper .swiper-pagination,
.mosaico-swiper .swiper-button-next,
.mosaico-swiper .swiper-button-prev {
    z-index: 10;
}

.mosaico-swiper .swiper-slide {
    overflow: hidden;
    /* Vital for zooming inside boundary */
}

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.model-card:hover .model-image {
    transform: scale(1.1);
}

/* Minimalist Overlay */
.model-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

.model-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 300;
}

.model-minimal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    pointer-events: auto;
    /* Re-enable interactions for buttons */
}

.minimal-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.more-link {
    color: var(--elegant-silver, #c0c0c0);
}

.price-link {
    color: var(--elegant-silver, #c0c0c0);
}

.minimal-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ========================================================
   6. SCROLL INDICATOR (HOME UX)
   ======================================================== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    /* Un poco mÃ¡s arriba para asegurar que no se solape por debjao del hero */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    /* Prioridad mÃ¡xima */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    /* Texto y flecha en blanco puro */
    text-shadow: 0 0 10px rgba(212, 175, 55, 1), 0 0 20px rgba(212, 175, 55, 0.8), 0 4px 5px rgba(0, 0, 0, 1);
    /* Fuerte brillo dorado con fondo negro para contraste extremo */
    cursor: pointer;
    animation: bounceScroll 2s infinite;
    opacity: 0.95;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 500;
}

.scroll-indicator i {
    font-size: 1.6rem;
}

@keyframes bounceScroll {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-12px) translateX(-50%);
    }

    60% {
        transform: translateY(-6px) translateX(-50%);
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 15px;
    }
}

/* ========================================================
   7. GALLERY PREVIEW ACCORDION (TRANSICIÃ“N INICIO)
   ======================================================== */
.gallery-transition-wrapper {
    width: 100%;
    background-color: #000000;
    /* Negro puro idÃ©ntico al fondo de colecciones */
    position: relative;
    padding-bottom: 80px;
    margin-top: -1px;
    /* Oculta sub-pÃ­xeles de separaciÃ³n */
    overflow: hidden;
    /* Asegurar que el escaneo no sobresalga */
}

/* Efecto de escaneo tÃ©cnico (Malla) idÃ©ntico a las colecciones */
.gallery-transition-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    /* Igualado a Colecciones */
    z-index: 2;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0) 50%);


    /* MÃ¡s visibilidad lateral */
    pointer-events: none;
}


/* Sistema de Doble EscÃ¡ner alternado */
.neon-scanner-line {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: scanMove 18s linear infinite;
    pointer-events: none;
    z-index: 3;
}

.neon-scanner-line.secondary {
    animation-delay: -9s;
    /* Desfase para que aparezcan alternadas */
}

/* 7.1 LÃ­nea Recta Animada tipo LÃ¡ser NeÃ³n */
.neon-travel-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #111, #333, #111);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 1);
    /* Sombra difusa natural */
}

/* El destello/halo que viaja internamente por la lÃ­nea */
.neon-travel-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(170, 170, 170, 0.5), rgba(212, 175, 55, 0.6), rgba(170, 170, 170, 0.5), transparent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    animation: travelFlash 4.5s ease-in-out infinite;
}

@keyframes travelFlash {
    0% {
        left: -200px;
        opacity: 0;
    }

    10% {
        opacity: 1;
        /* Aparece brillando */
    }

    90% {
        opacity: 1;
        /* Mantiene el brillo todo el camino */
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.gallery-preview-accordion {
    position: relative;
    z-index: 10;
    /* Contenido por encima de los efectos */
    padding-top: 150px;
    display: flex;
    justify-content: center;
    width: 100%;
    background: transparent !important;
}

.accordion-container {
    display: flex;
    width: 90%;
    max-width: 1100px;
    height: 350px;
    overflow: hidden;
    background: #111;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(192, 192, 192, 0.3);
    /* Contorno plateado/dorado */
    transform: translateY(0);
    transition: transform 0.3s;
}

/* 7.2 Efecto AcordeÃ³n Horizontal usando Flexbox */
.accordion-panel {
    position: relative;
    flex: 1;
    /* Inician angostos */
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s;
    overflow: hidden;
    cursor: pointer;
    border-right: 2px solid #000;
    /* LÃ­nea de separaciÃ³n negra entre fotos */
    filter: grayscale(100%) brightness(0.5);
    /* Blanco y negro oscuro por defecto */
}

/* El Ãºltimo panel no tiene borde derecho */
.accordion-panel:last-child {
    border-right: none;
}

/* TODOS a color cuando se entra al contenedor (mouse adentro) pero oscuros si no estÃ¡n enfocados */
.accordion-container:hover .accordion-panel {
    flex: 1;
    filter: grayscale(0%) brightness(0.4);
}

/* El panel que se estÃ¡ enfocando se expande e ilumina con halo */
.accordion-container:hover .accordion-panel:hover,
.accordion-panel.active {
    flex: 5;
    filter: grayscale(0%) brightness(1) drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
    /* A todo color con halo */
}

/* 7.3 BotÃ³n interactivo interno encima de cada fotografÃ­a */
.hover-gallery-btn {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    /* Oculto por defecto */
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(184, 134, 11, 0.95));
    /* Rojo vino base si prefiere rojo, pero dejemos tono oro oscuro elegante */
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    pointer-events: none;
    /* SEGUNDA FASE: Por defecto no debe ser cliqueable si es invisible */
}

/* Mostrar el botoncito solo cuando SU respectivo panel estÃ¡ siendo enfocado/expandido */
.accordion-container:hover .accordion-panel:hover .hover-gallery-btn,
.accordion-panel.active .hover-gallery-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    /* IMPORTANTE: Ahora sÃ­ el botÃ³n captura el clic porque ya apareciÃ³ visualmente */
}

/* Asegurar que la imagen cubra todo pero se recorte al achicar */
.accordion-panel img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    min-width: 100%;
    object-fit: cover;
    pointer-events: none;
    /* Mejor UX, que no moleste el drag */
}

/* 7.3 BotÃ³n Final de Enlace */
.panel-link {
    background: linear-gradient(135deg, #181818, #000);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--elegant-gold, #d4af37);
}

.panel-link-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
    min-width: 140px;
    /* Para que no se rompa la palabra 'GalerÃ­a' */
}

.panel-link:hover .panel-link-content {
    opacity: 1;
    transform: scale(1.05);
    /* Ligerito pop al boton final */
    color: #fff;
    /* Cambio a blanco */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.panel-link-content i {
    font-size: 2.5rem;
}

.panel-link-content span {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Responsividad Tablet y MÃ³vil */
@media (max-width: 768px) {
    .accordion-container {
        height: 250px;
        width: 95%;
    }

    .gallery-preview-accordion {
        padding-top: 100px;
    }

    .panel-link-content span {
        font-size: 0.8rem;
    }

    .panel-link-content i {
        font-size: 1.8rem;
    }
}


/* ===== CYBERPUNK OCCASIONS ACCORDION (LUXURY DARK) ===== */
.occasions-cyber-container {
    padding: 100px 20px;
    background: transparent !important;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.occasion-cyber-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    /* Reducido para estilo acordeÃ³n */
    gap: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpCyber 0.8s forwards;
    cursor: pointer;
    background: transparent;
    transition: all 0.5s ease;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(170, 170, 170, 0.1);
    position: relative;
}

.occasion-cyber-item:hover {
    padding-bottom: 40px;
    border-color: rgba(212, 175, 55, 0.3);
}

.occasion-cyber-item:nth-of-type(odd) {
    flex-direction: row;
    /* Foto a la DERECHA en impares (Texto Izquierda) */
}

.occasion-cyber-item:nth-of-type(even) {
    flex-direction: row-reverse;
    /* Foto a la IZQUIERDA en pares (Texto Derecha) */
}

/* AlineaciÃ³n de Textos */
.occasion-cyber-item:nth-of-type(odd) .occasion-cyber-text {
    text-align: left;
    align-items: flex-start;
}

.occasion-cyber-item:nth-of-type(even) .occasion-cyber-text {
    text-align: right;
    align-items: flex-end;
}

/* El bloque de texto (Columna 1 o 3) */
.occasion-cyber-text {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 180px;
}

.occasion-cyber-btn-wrapper {
    margin-top: auto;
    /* Empuja el botÃ³n al fondo del contenedor de texto */
    padding-bottom: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.occasion-cyber-item:hover .occasion-cyber-btn-wrapper,
.occasion-cyber-item.is-active .occasion-cyber-btn-wrapper {
    opacity: 1;
    transform: translateY(0);
}

/* La descripciÃ³n en el medio */
.occasion-details-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.occasion-details-center .occasion-details {
    margin-top: 0 !important;
    /* Quitar margen que se usaba en el acordeÃ³n viejo */
}

@media (max-width: 991px) {
    .occasions-cyber-container {
        padding: 40px 15px;
    }

    .occasion-cyber-item,
    .occasion-cyber-item:nth-of-type(odd),
    .occasion-cyber-item:nth-of-type(even) {
        flex-direction: column !important;
        gap: 10px;
        text-align: center !important;
        padding: 20px 10px;
        align-items: center !important;
        justify-content: center !important;
    }

    .occasion-cyber-text {
        flex: 0 0 auto !important;
        min-height: auto !important;
        width: 100% !important;
        order: 1;
        align-items: center !important;
        text-align: center !important;
    }

    .occasion-cyber-text h3 {
        text-align: center !important;
        align-self: center !important;
        font-size: 1.3em;
        margin-bottom: 0;
    }

    .occasion-cyber-frame-wrapper {
        order: 2;
        flex: 0 0 auto !important;
        width: 180px !important;
        margin: 10px auto !important;
    }

    .occasion-cyber-btn-wrapper {
        order: 3;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease;
        margin-top: 5px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .occasion-cyber-item.is-active .occasion-cyber-btn-wrapper {
        opacity: 1;
        transform: translateY(0);
    }

    .occasion-details-center {
        order: 4;
        width: 100%;
    }

    .occasion-details p {
        text-align: center;
    }
}

/* MARCO COMPACTO (Como el bosquejo) */
.occasion-cyber-frame-wrapper {
    flex: 0 0 180px;
    /* TamaÃ±o mucho mÃ¡s chico para estilo acordeÃ³n */
    display: flex;
    justify-content: center;
    transition: all 0.5s ease;
}

.occasion-cyber-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    /* Cuadrado compacto */
    padding: 8px;
    background: #000;
    border: 1px solid rgba(170, 170, 170, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.occasion-cyber-item:hover .occasion-cyber-frame {
    border-color: #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.occasion-cyber-frame::before,
.occasion-cyber-frame::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #aaaaaa;
    transition: all 0.4s ease;
}

.occasion-cyber-frame::before {
    top: -4px;
    left: -4px;
    border-right: none;
    border-bottom: none;
}

.occasion-cyber-frame::after {
    bottom: -4px;
    right: -4px;
    border-left: none;
    border-top: none;
}

.occasion-cyber-item:hover .occasion-cyber-frame::before {
    border-color: #d4af37;
    top: -8px;
    left: -8px;
}

.occasion-cyber-item:hover .occasion-cyber-frame::after {
    border-color: #d4af37;
    bottom: -8px;
    right: -8px;
}

.occasion-cyber-image-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.occasion-image-link {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Bloqueado por defecto */
}

/* Habilitar clic en hover (Escritorio) o is-active (MÃ³vil) */
@media (min-width: 992px) {
    .occasion-cyber-item:hover .occasion-image-link {
        pointer-events: auto;
    }
}

.occasion-cyber-item.is-active .occasion-image-link {
    pointer-events: auto;
}

.occasion-cyber-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6);
    transition: all 0.8s ease;
}

.occasion-cyber-item:hover .occasion-cyber-image-inner img,
.occasion-cyber-item.is-active .occasion-cyber-image-inner img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.15);
}

/* TEXTO Y ACORDEÃ“N */
.occasion-cyber-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.occasion-cyber-text h3 {
    font-size: 1.8em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    transition: all 0.4s ease;
}

.occasion-cyber-item:hover .occasion-cyber-text h3,
.occasion-cyber-item.is-active .occasion-cyber-text h3 {
    color: #d4af37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* CONTENIDO EXPANDIBLE (ACORDEÃ“N) */
.occasion-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.occasion-cyber-item:hover .occasion-details,
.occasion-cyber-item.is-active .occasion-details {
    max-height: 400px;
    opacity: 1;
}

.occasion-details p {
    font-size: 1rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 25px;
}

.occasion-cyber-btn {
    display: inline-block;
    padding: 10px 25px;
    color: #d4af37;
    border: 1px solid #d4af37;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 2px;
    background: transparent;
    transition: all 0.3s ease;
}

.occasion-cyber-btn:hover {
    background: #d4af37;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* LA LÃNEA DEL BOSQUEJO (Mitad de pantalla) */
.occasion-tech-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: linear-gradient(90deg, #d4af37, transparent);
    transition: width 0.8s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.occasion-cyber-item:hover .occasion-tech-line {
    width: 50%;
}

.occasion-cyber-item:nth-of-type(even) .occasion-tech-line {
    left: auto;
    right: 0;
    background: linear-gradient(-90deg, #d4af37, transparent);
}

@keyframes fadeInUpCyber {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BOTÃ“N TESTIMONIOS ESTILO CYBER/LUXURY */
.testimonials-cyber-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    text-transform: uppercase;
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
    font-family: inherit;
}

.testimonials-cyber-btn:hover {
    background: #d4af37;
    color: #000;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.testimonials-cyber-btn::before,
.testimonials-cyber-btn::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1px solid #d4af37;
    transition: all 0.4s ease;
}

.testimonials-cyber-btn::before {
    top: 2px;
    left: 2px;
    border-right: none;
    border-bottom: none;
}

.testimonials-cyber-btn::after {
    bottom: 2px;
    right: 2px;
    border-left: none;
    border-top: none;
}

.testimonials-cyber-btn:hover::before {
    top: -2px;
    left: -2px;
    border-color: #fff;
}

.testimonials-cyber-btn:hover::after {
    bottom: -2px;
    right: -2px;
    border-color: #fff;
}

/* ========================================================
   10. GALLERY PAGE CYBER STYLES
   ======================================================== */

.gallery-page-body {
    background-color: #000 !important;
}

/* Eliminar franja blanca entre galerÃ­a y footer */
.gallery-page-body footer {
    margin-top: 0 !important;
    background-color: #000 !important;
    position: relative;
    z-index: 10;
}

/* Asegurar que el body no tenga otros fondos */
body.gallery-page-body {
    background: #000 !important;
}


.gallery-tech-wrapper {
    position: relative;
    background-color: #000;
    min-height: 100vh;
    padding-top: 100px;
    /* Espacio para el header fijo */
    overflow: hidden;
}

/* El mismo grill de la home */
.gallery-tech-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 85%);
    pointer-events: none;
}


.gallery-content-layer {
    position: relative;
    z-index: 10;
}

/* Filtros Estilo TÃ©cnico */
.sticky-filter-container.is-cyber {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.filter-trigger-bar.is-cyber {
    background: transparent !important;
    border: none !important;
    color: #d4af37 !important;
    box-shadow: none !important;
    padding: 10px 20px;
}

.filter-trigger-bar.is-cyber button {
    color: #d4af37 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

#desktop-filter-drawer.is-cyber {
    background: rgba(15, 15, 15, 0.98) !important;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-top: none;
    color: #eee;
}

.filter-group.is-cyber {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
}

.filter-header.is-cyber h3 {
    color: #d4af37 !important;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Botones de Filtro tipo Tech */
.filter-btn.is-cyber {
    background: rgba(30, 30, 30, 0.6) !important;
    border: 1px solid rgba(170, 170, 170, 0.3) !important;
    color: #aaa !important;
    border-radius: 0 !important;
    /* Cuadrados tÃ©cnicos */
    transition: all 0.3s ease;
}

.filter-btn.is-cyber:hover,
.filter-btn.is-cyber.active {
    border-color: #d4af37 !important;
    color: #fff !important;
    background: rgba(212, 175, 55, 0.1) !important;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.2);
}

/* TÃ­tulos de CategorÃ­a en Modelos */
.shape-category-title {
    color: #d4af37 !important;
    border-bottom-color: rgba(212, 175, 55, 0.2) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem !important;
    margin-top: 20px !important;
}

/* Tarjetas de Modelos (Formas) */
.shape-option.is-cyber {
    background: rgba(40, 40, 40, 0.4) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 12px !important;
    transition: all 0.4s ease !important;
}

.shape-option.is-cyber:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.shape-option.is-cyber.active {
    background: #d4af37 !important;
    color: #000 !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.shape-option.is-cyber img {
    border-radius: 2px !important;
    margin-bottom: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shape-option.is-cyber div {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Botones Especiales en el Header de Filtros */
.color-filter-trigger-btn,
.header-actions .btn {
    background: #1a1a1a !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    color: #d4af37 !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 0.75rem !important;
    padding: 8px 15px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

.color-filter-trigger-btn:hover,
.header-actions .btn:hover {
    background: #d4af37 !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
}

/* Badge de Colores */
#color-count {
    background: #d4af37 !important;
    color: #000 !important;
    border: none !important;
    font-weight: 900 !important;
}

/* ========================================================
   11. MOBILE FILTER CYBER STYLES
   ======================================================== */

.mobile-filter-toggle.is-cyber {
    background: #000 !important;
    border: 2px solid #d4af37 !important;
    color: #d4af37 !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(212, 175, 55, 0.2) !important;
    animation: pulseGold 2s infinite !important;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
    }

    100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }
}

.mobile-filter-toggle.is-cyber .filter-badge {
    background: #d4af37 !important;
    color: #000 !important;
    border: 1px solid #fff !important;
}

.mobile-filter-panel.is-cyber {
    background: rgba(10, 10, 10, 0.98) !important;
    border-left: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #fff !important;
    backdrop-filter: blur(15px);
}

.panel-header.is-cyber {
    background: transparent !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4) !important;
    margin-bottom: 20px !important;
}

.panel-header.is-cyber h2 {
    color: #d4af37 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.close-panel {
    color: #d4af37 !important;
}

.mobile-filter-panel .filter-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding-bottom: 15px !important;
}

.mobile-filter-panel .filter-header h3 {
    color: #d4af37 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
}

.no-shapes-message {
    color: #666 !important;
    font-style: italic;
}

/* ========================================================
   12. PRICE MODAL CYBER REDESIGN
   ======================================================== */

.price-modal-content {
    background: #0f0f0f !important;
    border: 1px solid #d4af37 !important;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3) !important;
    color: #fff !important;
    border-radius: 4px !important;
}

.price-modal-content .product-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.price-modal-content .product-title {
    color: #d4af37 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.3rem !important;
}

.price-modal-content .original-price {
    color: #888 !important;
}

.price-modal-content .discount-price {
    color: #d4af37 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.price-modal-content .offer-conditions {
    background: rgba(212, 175, 55, 0.1) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #eee !important;
}

.price-modal-content .payment-method {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #eee !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.price-modal-content .payment-method.transfer {
    background: rgba(37, 211, 102, 0.1) !important;
    color: #25D366 !important;
    border-color: rgba(37, 211, 102, 0.3) !important;
}

.price-modal-content .price-modal-close {
    color: #d4af37 !important;
}

.price-modal-content .product-price-note {
    color: #888 !important;
}

.price-modal-content .btn-whatsapp {
    background: #25D366 !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-weight: 700;
}

.price-modal-content #copiarPrecioJpgBtn {
    background: #1a1a1a !important;
    border: 1px solid #d4af37 !important;
    color: #d4af37 !important;
    border-radius: 4px !important;
}

.price-modal-content #copiarPrecioJpgBtn:hover {
    background: #d4af37 !important;
    color: #000 !important;
}




/* Ãtems de GalerÃ­a con Marco NeÃ³n y Esquinas TÃ©cnicas */
.fj-gallery-item {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: #000;
}

.fj-gallery-item::before,
.fj-gallery-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid #d4af37;
    z-index: 10;
    transition: all 0.4s ease;
    opacity: 0.6;
}

.fj-gallery-item::before {
    top: 5px;
    left: 5px;
    border-right: none;
    border-bottom: none;
}

.fj-gallery-item::after {
    bottom: 5px;
    right: 5px;
    border-left: none;
    border-top: none;
}

.fj-gallery-item:hover {
    border-color: #d4af37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}

.fj-gallery-item:hover::before,
.fj-gallery-item:hover::after {
    opacity: 1;
    border-color: #fff;
    width: 20px;
    height: 20px;
}

.fj-gallery-item img {
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.fj-gallery-item:hover img {
    transform: scale(1.1) brightness(1.1);
}


/* PaginaciÃ³n TÃ©cnica */
.pagination-btn {
    background: #111 !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #aaa !important;
    border-radius: 0 !important;
    margin: 0 3px;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #d4af37 !important;
    color: #000 !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}


/* ========================================================
   13. SOBRE NOSOTROS (CYBERPUNK & PARALLAX)
   ======================================================== */

.about-us-cyber {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #000;
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.about-us-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Acordeones TÃ©cnicos */
.about-us-info .cyber-accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-us-info .cyber-accordion-item.is-active {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.accordion-trigger {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.accordion-trigger h3 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-trigger h3 i {
    color: #d4af37;
    font-size: 1.3rem;
}

.accordion-icon {
    color: #d4af37;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.cyber-accordion-item.is-active .accordion-icon {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    padding: 0 25px;
}

.cyber-accordion-item.is-active .accordion-content {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
    padding: 0 25px 30px;
}

.accordion-content p {
    color: #bbb;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Solar Preview */
.solar-preview-box {
    margin-top: 25px;
    padding: 10px;
    background: #000;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.solar-mini-img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    opacity: 0.8;
    filter: grayscale(1) brightness(0.6) contrast(1.2) sepia(0.5) hue-rotate(-20deg);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.solar-preview-box:hover .solar-mini-img {
    opacity: 1;
    filter: grayscale(0.5) brightness(0.8) contrast(1.1) sepia(0);
    transform: scale(1.05);
}


/* Visual Parallax Printer */
.about-us-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.printer-parallax-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-grid-circle {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border: 1px dashed rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: rotateSlow 30s linear infinite;
    z-index: 1;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.printer-parallax-canvas {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    z-index: 10;
    max-width: 500px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.1), inset 0 0 30px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    display: block;
    background: #000;
}




/* Tech Floating Tags */
.hud-orbit-system {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.tech-tag {
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 6px 14px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    z-index: 20;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
    animation: floatTag 4s ease-in-out infinite;
    /* Centralizado absoluto para Ã³rbita JS */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Ajustes Responsive para HUD */
@media (max-width: 768px) {
    .tech-tag {
        padding: 4px 10px;
        font-size: 0.6rem;
        letter-spacing: 1px;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }
}





.tag-vcl { animation-delay: 0s; }
.tag-ams { animation-delay: 1s; }
.tag-fps { animation-delay: 2s; }



@keyframes floatTag {
    0%, 100% {
        margin-top: 0;
    }
    50% {
        margin-top: -10px;
    }
}



.vfx-scan-hud {
    position: absolute;
    inset: -10%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 5;
    pointer-events: none;
    background-image: linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 100% 40px;
    animation: moveHudScan 10s linear infinite;
    opacity: 0.5;
}

@keyframes moveHudScan {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 400px;
    }
}

/* Responsive Sobre Nosotros */
@media (max-width: 1024px) {
    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-us-visual {
        order: -1;
    }

    .printer-parallax-wrapper {
        max-width: 350px;
    }
}

}


/* ===== NUEVOS ESTILOS PARA TESTIMONIOS ===== */
.testimonials-section {
    position: relative;
    z-index: 10 !important;
    width: 100%;
    padding: 100px 0; /* Aumentado para dar aire y estirar el parallax */
}

.testimonials-container-new {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0; /* Quito el padding extra */
    max-width: 1240px;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 400px;
}







.testimonial-new {
    grid-area: 1 / 1 / 2 / 2;
    padding: 10px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-new.active {
    opacity: 1;
    pointer-events: auto;
}







@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quote-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #ffffff; /* Texto blanco sobre fondo negro */
    margin-bottom: 20px;
    position: relative;
    padding: 0 10px;
    font-style: italic;
    width: 100%;
    
    /* Altura fija para 3 lÃ­neas con scroll */
    height: 90px; 
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #3498db rgba(0,0,0,0.1);
}





.testimonial-text::-webkit-scrollbar {
    width: 5px;
}

.testimonial-text::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.testimonial-text::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 10px;
}


.author-info {
    display: flex;
    align-items: center; /* Alinea verticalmente la imagen y los detalles */
    justify-content: center; /* Centra horizontalmente el contenido */
    margin-bottom: 20px;
    gap: 15px; /* Espacio entre la imagen y el texto */
}

.author-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinea el texto a la izquierda dentro de su contenedor */
}

.author-name {
    font-weight: bold;
    color: #d4af37; /* Nombre en Oro para resaltar */
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-title {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    background-color: #3b5998;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(59, 89, 152, 0.3);
}

.facebook-link:hover {
    background-color: #2d4373;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 89, 152, 0.4);
}

.facebook-link i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.arrows {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.arrow {
    cursor: pointer;
    background: linear-gradient(to right, #b234db, #2c3e50);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 1.2rem;
}

.arrow:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 12px;
}

.dot {
    width: 25px; /* Barra tÃ©cnica HUD */
    height: 3px;
    border-radius: 2px;
    background: rgba(192, 192, 192, 0.3); /* Plata tenue */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
    background: #d4af37; /* Oro NeÃ³n */
    width: 45px; /* ExpansiÃ³n activa */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.dot:hover {
    background: rgba(212, 175, 55, 0.5);
}

.comment-date {
    color: #95a5a6;
    font-size: 0.85rem;
    margin-top: 10px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #3498db;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex; /* Para centrar contenido (imagen o texto) */
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #3498db, #2c3e50); /* Fondo para iniciales */
    color: white; /* Color de texto para iniciales */
}

.author-avatar.author-image {
    object-fit: cover; /* Asegura que la imagen cubra el cÃ­rculo */
    margin-bottom: 0;
}

.author-avatar.author-initials {
    font-size: 2rem; /* TamaÃ±o de fuente para iniciales */
    font-weight: bold; /* Negrita para iniciales */
}

.testimonial-footer-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinea el contenido a la izquierda */
    width: 100%; /* Ocupa todo el ancho disponible */
    max-width: 300px; /* Ajusta segÃºn sea necesario para el ancho del contenido */
    margin-top: 20px; /* Espacio superior */
    margin-bottom: 10px; /* Espacio inferior */
}

.testimonial-new .author-info {
    justify-content: flex-start; /* Alinea la info del autor a la izquierda */
    width: 100%; /* Ocupa todo el ancho del contenedor padre */
    margin-bottom: 0; /* Eliminar margen inferior para que no haya doble espaciado */
}

.testimonial-new .facebook-link {
    margin-top: 5px; /* Ajustar el margen superior para acercarlo al nombre */
    margin-left: 0; /* Asegurarse de que no haya margen izquierdo */
}

.testimonial-new .comment-date {
    width: 100%;
    text-align: left;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* ===== MODAL DE TODOS LOS COMENTARIOS (LUXURY DARK) ===== */
.all-comments-modal {
    display: none;
    position: fixed;
    z-index: 10000; /* Higher than mobile menu */
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Scroll goes inside content */
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.all-comments-modal-content {
    background-color: #0a0a0a; /* Dark background */
    border: 1px solid rgba(212, 175, 55, 0.3); /* Gold border */
    padding: 0 30px 30px 30px;

    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.9);
    width: 90%;
    max-width: 1000px;
    position: relative;
    animation: fadeInScale 0.3s ease-out;
    max-height: 85vh;
    overflow-y: auto;
}

/* Custom scrollbar for modal */
.all-comments-modal-content::-webkit-scrollbar { width: 8px; }
.all-comments-modal-content::-webkit-scrollbar-track { background: #000; border-radius: 8px; }
.all-comments-modal-content::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.5); border-radius: 8px; }
.all-comments-modal-content::-webkit-scrollbar-thumb:hover { background: rgba(212, 175, 55, 0.8); }

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.all-comments-modal-header {
    position: sticky;
    top: 0;
    background-color: rgba(10, 10, 10, 0.95); /* Match modal dark bg */
    backdrop-filter: blur(5px);
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 25px;
}

.all-comments-modal-content h3 {
    text-align: center;
    color: #d4af37; /* Gold */
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    font-size: 1.4rem;
    flex-grow: 1;
}

.all-comments-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

/* Estilo para cada comentario dentro del modal */
.all-comments-list .testimonial-item-modal {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    grid-area: auto !important; /* Reset overlap from .testimonial-new */
    background-color: rgba(255, 255, 255, 0.03); /* Subtle glass */
    padding: 30px;
    border-radius: 12px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.all-comments-list .testimonial-item-modal .testimonial-text {
    color: #b3d9ff; /* Brighter blue for dark bg */
    height: auto !important;
    overflow: visible !important;
    font-style: normal;
}

.all-comments-list .testimonial-item-modal .author-name {
    color: #ecf0f1 !important;
}

.all-comments-list .testimonial-item-modal .author-title {
    color: #bdc3c7 !important;
}

.all-comments-list .testimonial-item-modal:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
}

.all-comments-list .testimonial-item-modal .quote-icon {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 15px;
    opacity: 0.7;
}

.all-comments-list .testimonial-item-modal .testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 25px;
    padding: 0;
    font-style: italic;
    font-weight: 300;
}

.all-comments-list .testimonial-item-modal .author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: flex-start;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.all-comments-list .testimonial-item-modal .author-avatar {
    width: 55px;
    height: 55px;
    border: 2px solid #d4af37;
    background: linear-gradient(135deg, #000, #1a1a1a);
}

.all-comments-list .testimonial-item-modal .author-initials {
    font-size: 1.4rem;
    color: #d4af37;
}

.all-comments-list .testimonial-item-modal .author-name {
    font-size: 1rem;
    margin-bottom: 2px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

.all-comments-list .testimonial-item-modal .author-title {
    font-size: 0.8rem;
    color: #a0a0a0;
}

.all-comments-list .testimonial-item-modal .comment-date {
    font-size: 0.8rem;
    color: #888;
    margin-top: auto;
    width: 100%;
    text-align: left;
}

.all-comments-list .testimonial-item-modal .facebook-link {
    margin-top: 15px;
    font-size: 0.85rem;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(59, 89, 152, 0.8);
    color: #8b9dc3;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.all-comments-list .testimonial-item-modal .facebook-link i {
    margin-right: 8px;
}

.all-comments-list .testimonial-item-modal .facebook-link:hover {
    background: #3b5998;
    color: #fff;
    border-color: #3b5998;
}

/* BotÃ³n de cerrar */
.close-button {
    color: #a0a0a0;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-button:hover {
    color: #fff;
    background-color: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    transform: rotate(90deg);
}

/* Responsive para el modal */
@media (min-width: 768px) {
    .all-comments-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .all-comments-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .all-comments-modal-content h3 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .close-button {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
    }
    
    .all-comments-modal-content {
        padding: 0 15px 15px 15px;
        width: 95%;
    }
}

/* ===== MEJORAS DE LEGIBILIDAD (VERSIÓN FINAL PULIDA) ===== */

/* Caja del testimonio individual (esta es la que debe ser negra sólida) */
.testimonial-new {
    background: #000000 !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 25px !important;
    padding: 50px !important;
    max-width: 900px !important; /* Un poco mÃ¡s ancha */
    margin: 0 auto !important;
    box-shadow: 0 25px 50px rgba(0,0,0,1) !important;
    backdrop-filter: none !important;
}

/* Resaltar título Lo que dicen nuestros clientes con sombra profunda */
.testimonials-parallax-wrapper .section-title h2 {
    color: #d4af37 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,1), 0 0 20px rgba(0,0,0,0.8) !important;
    letter-spacing: 12px;
}

/* Botón Ver todos los comentarios - Fondo Negro y Letras Oro */
.testimonials-cyber-btn {
    background: #000000 !important;
    color: #d4af37 !important;
    border: 2px solid #d4af37 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3) !important;
}

.testimonials-cyber-btn:hover {
    background: #d4af37 !important;
    color: #000 !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6) !important;
}

/* ADN Tecnológico (Estilos que gustaron anteriormente) */
.cyber-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cyber-subtitle {
    display: block;
    color: #d4af37;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 12px;
    font-weight: 600;
}

.cyber-title {
    color: #ffffff;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-weight: 200;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cyber-title { font-size: 1.8rem; letter-spacing: 4px; }
    .testimonials-section { padding: 40px 0; }
    .testimonial-new { padding: 25px !important; width: 95% !important; }
}
