<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&amp;display=swap');

:root {
    --primary-color: #8B5CF6;
    --primary-hover-color: #7C3AED;
    --background-color: #121212;
    --surface-color: #1E1E1E;
    --on-surface-color: #E0E0E0;
    --text-color: #FFFFFF;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--on-surface-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
}

header {
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    color: var(--text-color);
    padding-top: 30px;
    min-height: 70px;
}

header a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}



.logo-glow {
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.7));
    transition: filter 0.3s ease;
}

.logo-glow:hover {
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.9));
}

.menu-item, .mobile-menu-item {
    color: var(--text-color);
    transition: all 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.2s ease;
}

.menu-item:hover::after {
    width: 100%;
}

.mobile-menu-item:hover {
    background-color: rgba(139, 92, 246, 0.1);
}

#mobile-menu {
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

#mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

#hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 500px;
    position: relative;
}

.slide img, .slide video, .slide iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide img {
    animation: panAndZoom 10s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes panAndZoom {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.05) translate(-2%, -1%); }
    100% { transform: scale(1.1) translate(-4%, -2%); }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 10px;
    text-decoration: none;
    cursor: pointer;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

.product-card {
    background-color: var(--surface-color);
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-detail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.product-detail-content {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(139, 92, 246, 0.25);
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(139, 92, 246, 0.3);
}

#search-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

#search-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
}

#search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.brand-item {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.brand-item:hover {
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
}

.content-section {
    background-color: var(--surface-color);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover-color);
}

.news-card {
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.news-tag {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.uppercase-text {
    text-transform: uppercase;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-icon img {
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon::after {
    content: 'Chatea con nosotros';
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    background-color: #25D366;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-icon:hover::after {
    opacity: 1;
    right: calc(100% + 10px);
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    #desktop-menu {
        display: none;
    }
    #mobile-menu {
        display: block;
    }
    .product-detail-content {
        max-width: 90vw;
        width: 90vw;
    }
}

ul li {
    margin-bottom: 10px;
    padding-bottom: 5px;
}

p {
    margin-bottom: 16px;
}

h3, h5, ul, table {
    margin-top: 16px;
    margin-bottom: 16px;
}

/* AÃ±ade esto a tu styles.css o reemplaza las secciones correspondientes */

/* Estilos generales del menÃº */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Estilos para el menÃº de escritorio */
#desktop-menu {
    display: flex;
    gap: 20px;
}

.menu-item {
    color: var(--text-color);
    text-decoration: none;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    color: var(--primary-color);
}

/* Estilos para el menÃº mÃ³vil */
#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

#mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background-color);
    z-index: 1000;
    padding: 20px;
}

#mobile-menu.active {
    display: block;
}

.mobile-menu-item {
    display: block;
    padding: 10px 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid var(--surface-color);
}

/* Media queries para ajustar la visualizaciÃ³n en diferentes tamaÃ±os de pantalla */
@media (max-width: 768px) {
    #desktop-menu {
        display: none;
    }

    #mobile-menu-toggle {
        display: block;
    }
}



/* Estilos del catÃ¡logo */
.catalog {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.sidebar {
    flex: 0 0 200px;
}

.sidebar-title {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.brand-list {
    list-style-type: none;
    padding: 0;
}

.brand-item {
    cursor: pointer;
    padding: 5px 0;
}

.brand-item:hover {
    color: #007bff;
}

.catalog-main {
    flex: 1;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.category-button {
    /* background-color: #f0f0f0; */
    border: solid gray;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-image-container {
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 10px;
}

.product-title {
    font-size: 1em;
    margin: 0 0 5px 0;
}

.product-description {
    font-size: 0.9em;
    color: #666;
    margin: 0 0 5px 0;
}

.product-price {
    font-weight: bold;
    color: #007bff;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination-button {
    background-color: #f0f0f0;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.pagination-button.active {
    background-color: #007bff;
    color: white;
}

#mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

#mobile-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

#mobile-menu-items {
    text-align: center;
}

.mobile-menu-item {
    display: block;
    color: white;
    font-size: 18px;
    padding: 15px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-item:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

#mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

#mobile-menu-close:hover {
    color: var(--primary-color);
}


#mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

#mobile-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}


#mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

#mobile-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hidden {
    display: none !important;
}


.product-detail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.product-detail-content {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

.product-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 10px;
    text-decoration: none;
    cursor: pointer;
    z-index: 10;
}

.product-image-nav.prev { left: 10px; }
.product-image-nav.next { right: 10px; }

@media (max-width: 768px) {
    .product-detail-content {
        width: 95%;
        height: 95vh;
        padding: 1rem;
    }
}


@media (max-width: 768px) {
    .catalog {
        flex-direction: column; /* Cambiar a disposiciÃ³n vertical */
    }

    .sidebar {
        width: 100%; /* Ocupa todo el ancho en mÃ³viles */
        margin-bottom: 1rem; /* AÃ±adir un margen inferior para separaciÃ³n */
    }

    .catalog-main {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr; /* Una columna en mÃ³viles */
    }
}

.pagination-button {
    background-color: transparent; /* Sin color de fondo */
    border: none; /* Sin borde */
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.pagination-button.active {
    font-weight: bold; /* Resaltar el botÃ³n activo */
    border-bottom: 2px solid var(--primary-color); /* AÃ±adir una lÃ­nea debajo del botÃ³n activo */
}

.pagination-button:hover {
    color: var(--primary-color); /* Cambiar color al pasar el mouse */
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

* {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.gap-6 { gap: 1.5rem; }
.bg-gray-800 { background-color: #1f2937; }
.rounded-lg { border-radius: 0.5rem; }
.overflow-hidden { overflow: hidden; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.transition-transform { transition-property: transform; }
.duration-300 { transition-duration: 300ms; }
.hover\:scale-105:hover { transform: scale(1.05); }
.relative { position: relative; }
.h-64 { height: 16rem; }
.w-full { width: 100%; }
.object-cover { object-fit: cover; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.bg-black { background-color: #000; }
.bg-opacity-50 { background-color: rgba(0, 0, 0, 0.5); }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.opacity-0 { opacity: 0; }
.text-white { color: #fff; }
.text-lg { font-size: 1.125rem; }
.p-4 { padding: 1rem; }
.text-sm { font-size: 0.875rem; }

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.animate-marquee {
  animation: marquee 30s linear infinite;
}

</pre></body></html>