<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

   body:hover .video-controls {
  opacity: 1;
  pointer-events: auto;
}

    .banner-container {
      position: relative;
      width: 90%;
      height: 400px;
      margin: 20px auto;
      overflow: hidden;
      border-radius: 10px;
     background-color: #00435F;
    }

video {
  width: 100%;
  height: 400px;
  object-fit: contain;
  display: none;
  background: linear-gradient(135deg, rgba(0, 45, 65, 1), rgba(0, 85, 115, 0.9));
  position: relative;
}
video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 60%);
    pointer-events: none;  /* Evita que el destello interfiera con la interacciÃ³n del video */
    animation: destello 1.5s ease-in-out infinite;
}

@keyframes destello {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.2;
    }
}



    .banner-button {
      position: absolute;
      top: 20px;
      left: 20%;
      transform: translateX(-20%);
      z-index: 2;
      padding: 12px 24px;
      background-color: #fff;
      color: #004160;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease;
    }

    .banner-button:hover {
      background-color: #006d91;
    color:white;
    }

/* WHATSAPP Estilo del botÃ³n flotante */
/* Estilo del botÃ³n flotante en la izquierda */
.whatsapp-button {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background-color: #25D366; /* Color de fondo de WhatsApp */
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Estilo de la lista de contactos */
.contact-list {
    display: none;  /* Oculta por defecto */
    position: fixed;
    bottom: 140px;
    right: 20px;  /* CambiÃ© 'right' por 'left' */
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    width: 200px;
}

.contact-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin: 10px 0;
    display: flex;
    align-items: center; /* Alinea la imagen y el texto */
}

.contact-list a {
    text-decoration: none;
    color: #25D366;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.contact-list a:hover {
    background-color: #e8f5e9;
}

/* Estilo para la imagen de perfil */
.contact-list img {
    margin-right: 10px; /* Espacio entre la imagen y el nombre */
}
.video-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* Mostrar controles al pasar el mouse sobre cualquier video */
video:hover + .video-controls,
.video-controls:hover {
  opacity: 1;
  pointer-events: auto;
}

/* Estilo de botones */
.video-controls button {
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  padding: 14px;
  font-size: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
}

.video-controls button:hover {
  background-color: #00435F;
  color: white;
  transform: scale(1.1);
}

/* Carrusel de CategorÃ­as */
.categorias {
    padding: 20px;
    text-align: center;
}



/* Carrusel de CategorÃ­as mejorado */
.carrusel {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.slide {
    flex: 0 0 25%;
    padding: 10px;
    text-align: center;
}


.slide img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 5px;
}


.slide h6 {
    margin: 0;
    font-size: 10px;
    color: #333;
}

.flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px; /* TamaÃ±o adecuado de la flecha */
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    border-radius: 50%;
    user-select: none;
    padding: 0;
    line-height: 1;
}

.flecha-izquierda {
    left: 10px;
}

.flecha-derecha {
    right: 10px;
}



.flecha:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.flecha-izquierda {
    left: 1px;
}

.flecha-derecha {
    right: 1px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Efectos de transiciones */
.categorias h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

a.mi-enlace {
    color: #f46717;
    text-decoration: none;
}

a.mi-enlace:hover {
    text-decoration: underline;
}


.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
}

.cerrar {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    width: 90%; /* mÃ¡s ancho */
    max-width: 1000px;
    border-radius: 10px;
}

.card {
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.card-text strong {
    font-weight: bold;
    color: #F46717;
}

.precio {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745; /* Un verde similar al de precios en muchas tiendas */
    margin-bottom: 0.5rem;
}

.descripcion {
    color: #666;
    margin-bottom: 1rem;
}

.subcategoria {
    font-size: 0.9rem;
    color: #777;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 0.25rem; /* Bordes ligeramente redondeados */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
/* SECCIÃ“N 1 */
.banner-promocional {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 400px;
    max-height: 400px;
    min-height: 250px;
    overflow: hidden;
}

.banner-texto, .banner-imagen {
    flex: 1 1 50%;
    position: relative;
}

.banner-texto {
    background-image: url('PROM/1.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 30px;
    min-height: 250px; /* Para asegurar visibilidad en mÃ³viles */
}

.contenido-texto {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    text-align: left;
}

.contenido-texto h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contenido-texto p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn-promocion {
    display: inline-block;
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid white;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-promocion:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

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

/* Avatar de login */
.login-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.login-avatar:hover {
    background-color: #dcdcdc;
}

.login-avatar i {
    pointer-events: none; /* evita clics sobre el icono */
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .banner-promocional {
        flex-direction: column;
        height: auto;
        max-height: none;
    }

    .banner-texto, .banner-imagen {
        flex: 1 1 100%;
        max-height: none;
        height: auto;
    }

    .banner-imagen img {
        height: auto;
        max-height: 300px;
    }

    .contenido-texto {
        padding: 20px;
        max-width: 100%;
        text-align: center;
    }

    .contenido-texto h2 {
        font-size: 1.3rem;
    }

    .contenido-texto p {
        font-size: 0.95rem;
    }

    .btn-promocion {
        margin-top: 10px;
    }
}
</pre></body></html>