body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f0e6ff;
  color: white;
}

header {
  background: linear-gradient(90deg, #0c0c0c38, #0000003d);
  border-bottom: 2px solid #0400f0;
  box-shadow: 0 0 10px #ff00bf;
  padding: 00px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 10px;
}

.logo-container img {
  width: 106px;
  height: 100px;
}

.logo-container span {
  font-weight: bold;
  color: #00fff7;
  margin-top: 5px;
  font-size: 18px;
  text-shadow: 0 0 8px #2600ff, 0 0 12px #030303;
}

.profile-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

nav.nav-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

nav.nav-links a {
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: transform 0.2s, color 0.3s;
}

nav.nav-links a:nth-child(1) {
  color: #f50101;
}

nav.nav-links a:nth-child(2) {
  color: #cc66ff;
}

nav.nav-links a:nth-child(3) {
  color: #66ffff;
}

nav.nav-links a:nth-child(4) {
  color: #ff66cc;
}

nav.nav-links a:nth-child(5) {
  color: #00ff99;
}

nav.nav-links a:nth-child(6) {
  color: #ffcc00;
}

nav.nav-links a:nth-child(7) {
  color: #66ff66;
}

nav.nav-links a:nth-child(8) {
  color: #00bfff;
}

nav.nav-links a:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: black;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #fd003b;
  padding: 20px;
  text-align: center;
}

.mobile-menu a {
  text-decoration: none;
  font-weight: bold;
  margin: 10px 0;
  font-size: 18px;
}

.mobile-menu a:nth-child(1) {
  color: #ff4d4d;
}

.mobile-menu a:nth-child(2) {
  color: #cc66ff;
}

.mobile-menu a:nth-child(3) {
  color: #66ffff;
}

.mobile-menu a:nth-child(4) {
  color: #ff66cc;
}

.mobile-menu a:nth-child(5) {
  color: #00ff99;
}

.mobile-menu a:nth-child(6) {
  color: #ffcc00;
}

.mobile-menu a:nth-child(7) {
  color: #66ff66;
}

.mobile-menu a:nth-child(8) {
  color: #00bfff;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px;
  }

  .logo-container {
    align-items: flex-start;
  }

  .logo-container img {
    width: 70px;
    height: 65px;
  }

  .logo-container span {
    font-size: 14px;
  }

  .profile-img {
    display: none;
  }

  .menu-icon {
    display: block;
    margin-right: 10px;
  }

  nav.nav-links {
    display: none;
  }

  .mobile-menu.show {
    display: flex;
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 25px #2600ff;
  }

  50% {
    box-shadow: 0 0 20px #ff0000;
  }

  100% {
    box-shadow: 0 0 30px #e5ff00;
  }
}

header {
  animation: glow 2.5s infinite ease-in-out;
}
#pantalla-inicio {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 3, 3, 0);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.carousel-slide {
  display: flex;
  animation: scroll 30s linear infinite;
}

.carousel-slide img {
  height: 300px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  margin: 0 10px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.carousel-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(68, 0, 255, 0.6),
    0 0 30px rgba(255, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .carousel-slide img {
    height: 240px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}
.buscador-container {
  margin: 15px auto 5px auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#buscador {
  width: 300px;
  max-width: 90%;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  background-color: #1a1a1a;
  color: #a3a1fc;
  box-shadow: 0 0 10px rgb(0, 247, 255);
  transition: all 0.3s ease-in-out;
}

#buscador:focus {
  transform: scale(1.05);
  border: 2px solid #00fff7;
  box-shadow: 0 0 15px #00fff7, 0 0 25px #00fff7;
}

.ofertas-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
  padding: 30px;
}

.tarjeta {
  background: linear-gradient(135deg, #001920, #0f0f0f);
  border: 1px solid rgb(0, 255, 255);
  border-radius: 15px;
  width: 270px;
  height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  animation: glow 2.5s ease-in-out infinite;
}

.tarjeta img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgb(47, 0, 255);
}

.contenido {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contenido h2 {
  color: #1eff00;
  font-size: 16px;
  margin-bottom: 5px;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.descripcion {
  color: #ccc;
  font-size: 13px;
  height: 35px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}

.precio {
  color: #00ff9d;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  text-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stock {
  color: #fff;
  font-size: 13px;
}

.btn-whatsapp {
  background-color: #25D366;
  padding: 8px 12px;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ec456;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.6),
    0 0 24px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .ofertas-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 10px 30px 10px;
    gap: 20px;
  }

  .tarjeta {
    width: 200px;
    height: 370px;
    flex: 0 0 auto;
  }

  .contenido h2 {
    font-size: 14px;
  }

  .descripcion {
    font-size: 11px;
  }

  .precio {
    font-size: 13px;
  }

  .btn-whatsapp {
    font-size: 11px;
    padding: 6px 10px;
  }
}

/* Ícono en la esquina del contenedor relativo */
.descripcion-icono {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 16px;
  cursor: pointer;
  background-color: rgba(0, 255, 255, 0.2);
  border: 1px solid rgba(55, 0, 255, 0.4);
  border-radius: 50%;
  padding: 4px 6px;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
  transition: all 0.3s ease;
  z-index: 10;
  color: white;
}

.descripcion-icono:hover {
  background-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.7);
}

.descripcion-icono:hover {
  background-color: #e0e0e0;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.63);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, #0a0a0a, #1d1c1c);
  color: #00fff7;
  padding: 25px;
  border-radius: 15px;
  width: 80%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 0 15px rgb(255, 0, 55),
    0 0 25px rgb(89, 0, 255);
  animation: aparecer 0.4s ease-out;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
}

.cerrar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #00fff7;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.cerrar:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #00fff7;
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


.categorias-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 10px 0;
}

.categoria {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #00ffd5;
  font-weight: bold;
  font-size: 14px;
  min-width: 110px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 1px solid rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.25);
  background: linear-gradient(135deg, #0a0a0a, #170272);

  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 0.8s forwards;
}

.categoria:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(135deg, #00fff7 0%, #6f00ff 100%);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5),
    0 0 20px rgba(111, 0, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
  .categoria {
    font-size: 13px;
    padding: 8px 14px;
    margin-bottom: 5px;
  }
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.categoria:nth-child(1) {
  animation-delay: 0.1s;
}

.categoria:nth-child(2) {
  animation-delay: 0.2s;
}

.categoria:nth-child(3) {
  animation-delay: 0.3s;
}

.categoria:nth-child(4) {
  animation-delay: 0.4s;
}

.categoria:nth-child(5) {
  animation-delay: 0.5s;
}

.categoria:nth-child(6) {
  animation-delay: 0.6s;
}

.categoria:nth-child(7) {
  animation-delay: 0.7s;
}

.categoria:nth-child(8) {
  animation-delay: 0.8s;
}

.categoria:nth-child(9) {
  animation-delay: 0.9s;
}

.categoria:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #6f00ff 0%, #00fff7 100%);
  color: #fff;
  box-shadow: 0 0 8px rgba(111, 0, 255, 0.4),
    0 0 12px rgba(0, 255, 247, 0.3);
}

.categoria.active {
  border: 2px solid #00fff7;
  background: linear-gradient(135deg, #1f003b 0%, #003b3a 100%);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4),
    0 0 20px rgba(111, 0, 255, 0.2);
  color: #ffffff;
}

@media (max-width: 768px) {
  .categorias-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-left: 10px;
  }
}

#productos .ofertas-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
  padding-top: 10px;
}

@media (max-width: 768px) {
  #productos .ofertas-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  #productos .tarjeta {
    width: 170px;
    height: 310px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  }

  #productos .tarjeta img {
    height: 140px;
    border-radius: 4px;
  }

  #productos .contenido h2 {
    font-size: 13px;
  }

  .descripcion {
    font-size: 11.5px;
    height: 34px;
  }

  .precio {
    font-size: 13.5px;
  }

  .stock {
    font-size: 11.5px;
  }

  .btn-whatsapp {
    font-size: 11px;
    padding: 6px 10px;
    box-shadow: 0 0 6px rgba(37, 211, 102, 0.5);
  }
}

#productos .ofertas-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 productos por fila en PC */
  gap: 25px;
  justify-items: center;
  padding-top: 10px;
}

#productos .tarjeta {
  background-color: #0a0a0a;
  border-radius: 14px;
  width: 250px;
  height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1),
    0 0 20px rgba(255, 0, 255, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

#productos .tarjeta:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4),
    0 0 30px rgba(255, 0, 255, 0.2);
}

#productos .tarjeta img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #00fff7;
}

#productos .contenido {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

#productos .contenido h2 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

#productos .descripcion {
  color: #d0d0d0;
  font-size: 12px;
  height: 35px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}


#productos .precio {
  color: #00FF00;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}

#productos .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#productos .stock {
  color: #fff;
  font-size: 13px;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

#productos .btn-whatsapp {
  background-color: #0cda05d3;
  padding: 8px 12px;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  box-shadow: 0 0 6px rgba(37, 211, 102, 0.5);
  transition: background-color 0.3s, box-shadow 0.3s;
}

#productos .btn-whatsapp:hover {
  background-color: #1ebe5c;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.8);
}

@media (max-width: 768px) {
  #productos .ofertas-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 10px;
  }

  /* Mejora la visualización en pantallas más anchas dentro del rango móvil */
  @media (min-width: 500px) and (max-width: 768px) {
    #productos .ofertas-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  #productos .tarjeta {
    width: 150px;
    height: 280px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.1),
      0 0 15px rgba(255, 0, 255, 0.05);
  }

  #productos .tarjeta img {
    height: 110px;
    border-bottom: 1px solid #00fff7;
  }

  #productos .contenido {
    padding: 10px;
  }

  #productos .contenido h2 {
    font-size: 12.5px;
    color: #fff;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.15);
  }

  #productos .descripcion {
    font-size: 10.5px;
    height: 28px;
    color: #cccccc;
  }

  #productos .precio {
    font-size: 12.5px;
    color: #00ffae;
    text-shadow: 0 0 3px #00ffae;
  }

  #productos .stock {
    font-size: 10.5px;
    color: #fff;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  }

  #productos .btn-whatsapp {
    font-size: 10px;
    padding: 5px 7px;
    background-color: #25D366;
    border-radius: 5px;
    box-shadow: 0 0 6px rgba(37, 211, 102, 0.3);
  }

  #productos .btn-whatsapp:hover {
    background-color: #1ebe5c;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
  }

}

/* Sección ¿Por qué elegirnos? */
.elegirnos {
  background: linear-gradient(135deg, #ffeaf404, #f5eff109);
  padding: 60px 20px;
  text-align: center;
}

.titulo-elegirnos {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4c2dff;
  margin-bottom: 40px;
  text-shadow: 0 0 6px #d1f7fa, 0 0 4px #2ef706;
}

/* Tarjetas en PC */
.tarjetas-elegirnos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

/* Tarjeta individual */
.tarjeta-elegir {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 15px rgb(0, 255, 255);
  scroll-snap-align: center;
  min-width: 280px;
  max-width: 320px;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta-elegir:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(76, 45, 255, 0.35);
}

.tarjeta-elegir img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.tarjeta-elegir h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.tarjeta-elegir p {
  font-size: 1rem;
  color: #555;
}

/* Deslizar en móvil */
@media (max-width: 768px) {
  .tarjetas-elegirnos {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 0 10px;
  }
}

.faq-rect-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-rect {
  background: white;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 0 10px rgba(22, 5, 173, 0.959);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #02f4fc;
  position: relative;
}

.faq-rect:hover {
  box-shadow: 0 0 18px rgba(214, 51, 132, 0.25);
  transform: translateY(-2px);
}

.faq-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #3633d6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-content {
  color: #333;
  font-size: 1rem;
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-rect.active .faq-content {
  max-height: 500px;
  opacity: 1;
}

.icon {
  font-size: 1.5rem;
  color: #d63333;
  transition: transform 0.3s ease;
}

.faq-rect.active .icon {
  transform: rotate(45deg);
}

/* Glow effect: opcional si quieres animación inicial */
@keyframes glowIn {
  from {
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 0 0 rgb(3, 241, 210);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 0 15px rgba(0, 10, 12, 0.959);
  }
}

.faq-rect {
  animation: glowIn 0.6s ease forwards;
}

@media screen and (max-width: 600px) {
  .faq-rect {
    padding: 18px 20px;
  }

  .faq-title {
    font-size: 1.05rem;
  }
}





.contact-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 40px 20px;
}

.contact-title {
  font-size: 2.8rem;
  color: #04e5f5;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #02d9ff, 0 0 20px #ff82aa;
}

.contact-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #444;
  line-height: 1.6;
}

.whatsapp-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #25D366;
  font-weight: bold;
  text-shadow: 0 0 5px #25D366;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 3px #25D366);
}

.whatsapp-button {
  background-color: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px #25D366;
  font-weight: bold;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
  box-shadow: 0 0 20px #1ebe5d, 0 0 30px #1ebe5d;
  transform: scale(1.05);
}

.horario {
  margin-top: 30px;
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
}

.pack-offer-box {
  background: linear-gradient(145deg, #ffe2f0, #ffd3e9);
  border-left: 6px solid #ff2d75;
  border-radius: 14px;
  padding: 25px;
  margin-top: 50px;
  text-align: left;
  box-shadow: 0 0 15px rgba(255, 45, 117, 0.15);
  transition: all 0.3s ease;
}

.pack-offer-box:hover {
  transform: scale(1.01);
  box-shadow: 0 0 30px rgba(255, 45, 117, 0.3);
}

.pack-offer-box h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: #c2185b;
  text-shadow: 0 0 5px #ffb6c1;
}

.pack-offer-box p {
  margin: 0;
  font-size: 1.05rem;
  color: #555;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .contact-title {
    font-size: 2rem;
  }

  .whatsapp-block {
    flex-direction: column;
  }

  .pack-offer-box {
    text-align: center;
  }
}


.boton-flyer {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #ff4d4d;
  color: white;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff4d4d, 0 0 20px #ff4d4d, 0 0 30px #ff4d4d;
  z-index: 10000;
  cursor: pointer;
  animation: pulseFlyer 1.5s infinite ease-in-out;
  transition: transform 0.3s, box-shadow 0.3s;
}

.boton-flyer:hover {
  transform: scale(1.15);
  background-color: #e60000;
  box-shadow: 0 0 15px #e60000, 0 0 25px #e60000;
}

@keyframes pulseFlyer {

  0%,
  100% {
    box-shadow: 0 0 10px #ff4d4d, 0 0 20px #ff4d4d;
  }

  50% {
    box-shadow: 0 0 20px #ff4d4d, 0 0 35px #ff4d4d, 0 0 50px #ff4d4d;
  }
}

.modal-flyers {
  display: none;
  position: fixed;
  z-index: 11000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(3px);
  overflow-y: auto;
}

.modal-contenido {
  background: #b400f0;
  margin: 50px auto;
  padding: 35px 25px;
  border-radius: 16px;
  width: fit-content;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 25px #e600ff, 0 0 40px #cc00ff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: popupFade 0.4s ease;
}

@keyframes popupFade {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cerrar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.cerrar:hover {
  color: #ffcccc;
  text-shadow: 0 0 5px #fff;
}

.modal-contenido h2 {
  margin-top: 0;
  font-size: 30px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 8px #ffccff, 0 0 12px #ff99ff;
}

.flyer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.flyer-card {
  width: 380px;
  height: 380px;
  background-color: #111;
  border-radius: 12px;
  box-shadow: 0 0 10px #fff, 0 0 25px #ff00ff, 0 0 35px #ff00ff;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.flyer-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #fff, 0 0 30px #ff33ff, 0 0 45px #ff33ff;
}

.flyer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.footer-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to bottom, #ff009db9, #1a1919fa);
  border-top: 2px solid #ff00ff;
  box-shadow: 0 -5px 25px rgba(255, 0, 255, 0.3);
}

.footer-logo-nombre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 60px;
  filter: drop-shadow(0 0 6px #ff00ff);
}

.footer-title {
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
  text-shadow: 0 0 5px #ff66ff, 0 0 8px #cc00ff;
}

.footer-nav {
  margin: 30px 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.footer-nav a {
  color: #cccccc;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff00ff;
  transition: 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px #ff00ff;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
  animation: pulseWsp 2s infinite;
}

@keyframes pulseWsp {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px #25D366);
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px #25D366);
  }
}

.footer-whatsapp .whatsapp-icon {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 5px #25D366);
}

.footer-whatsapp a {
  color: #25D366;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 0 5px #25D366;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #999;
  margin-top: 40px;
  line-height: 1.6;
  font-style: italic;
  text-shadow: 0 0 2px #333;
}

@media screen and (max-width: 600px) {
  .footer-logo-nombre {
    flex-direction: column;
  }

  .footer-title {
    font-size: 1.4rem;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
}

.redes-sociales {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  animation: redesFadeIn 1s ease-in-out;
}

@keyframes redesFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.redes-sociales a {
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 0, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.redes-sociales img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 0 4px #ff00ff);
}

.redes-sociales a:hover {
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0 0 15px #ff00ff, 0 0 20px #cc00ff;
}

.redes-sociales img:hover {
  filter: drop-shadow(0 0 10px #ff00ff);
}

/* === MODO OSCURO === */
.dark-mode {
  background-color: #121212;
  color: white;
}

.dark-mode .tarjeta,
.dark-mode .cat-card {
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.15);
  transition: background-color 0.3s, transform 0.3s;
}

.dark-mode header,
.dark-mode nav.nav-links,
.dark-mode .mobile-menu,
.dark-mode section,
.dark-mode .categorias-container,
.dark-mode .ofertas-container {
  background-color: #1f1f1f !important;
}

body,
section,
header,
nav,
.tarjeta,
.cat-card {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dark-mode .logo-container span,
.dark-mode nav.nav-links a,
.dark-mode .mobile-menu a,
.dark-mode .contenido h2,
.dark-mode .descripcion,
.dark-mode .stock,
.dark-mode .btn-whatsapp,
.dark-mode .precio,
.dark-mode .categoria,
.dark-mode h1,
.dark-mode h2,
.dark-mode p,
.dark-mode a {
  color: white !important;
}

.dark-mode .tarjeta {
  background-color: #2a2a2a;
}

.dark-mode .btn-whatsapp {
  background-color: #25D366;
  color: black;
}

.categorias-modernas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
}

.cat-card {
  background-color: #1e1e1e;
  border-radius: 16px;
  text-align: center;
  padding: 25px 15px;
  color: white;
  text-decoration: none;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  box-shadow: 0 4px 15px rgba(255, 0, 255, 0.15);
}

.cat-card:hover {
  background-color: #292929;
  transform: scale(1.05);
  box-shadow: 0 0 20px #cc00ff;
}

.cat-card .emoji {
  font-size: 38px;
  margin-bottom: 12px;
  color: #ff00ff;
  text-shadow: 0 0 6px #ff00ff;
}

.cat-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.dark-mode .faq-rect {
  background-color: #2a2a2a;
  color: white;
}

.dark-mode .modal-contenido {
  background-color: #3a003d;
  box-shadow: 0 0 20px #ff00ff;
}

.dark-mode .footer-container {
  background-color: #1a1a1a;
}

.dark-mode .flyer-card {
  background-color: #333;
}

.menu-principal {
  position: absolute;
  top: 10px;
  left: 150px;
  /* Ajusta según la posición deseada */
  z-index: 10;
}

.menu-principal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.menu-principal ul li a {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  color: cyan;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px cyan;
  transition: 0.3s ease;
}

.menu-principal ul li a:hover {
  background-color: cyan;
  color: black;
  box-shadow: 0 0 15px cyan;
}

/* Contenedor completo */
.intro-container {
  position: fixed;
  inset: 0;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 1s ease-out 4s forwards;
  overflow: hidden;
}



#botonAsistente {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #ff0040;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 0 10px #000000aa;
  z-index: 9999;
}

#modalAsistente {
  display: none;
  position: fixed;
  z-index: 9998;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

#contenidoAsistente {
  background-color: #1a1a1a;
  margin: 5% auto;
  padding: 0;
  border-radius: 14px;
  width: 95%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

#cerrarAsistente {
  color: white;
  align-self: flex-end;
  font-size: 20px;
  padding: 10px 15px;
  cursor: pointer;
}

#chatbot-container {
  padding: 0 20px 20px;
  color: white;
  font-family: 'Arial', sans-serif;
}

#chatbot-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
  color: #ff0040;
}

#sugerencias {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  justify-content: center;
}

#sugerencias button {
  background-color: #333;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
}

#chatbot-messages {
  background-color: #222;
  height: 280px;
  overflow-y: auto;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.mensaje {
  margin-bottom: 10px;
}

.usuario {
  text-align: right;
  color: #58d68d;
}

.asistente {
  text-align: left;
  color: #f0f0f0;
}

#chatbot-input-section {
  display: flex;
  gap: 10px;
}

#chatbot-input {
  flex: 1;
  padding: 6px 10px;
  border-radius: 20px;
  border: none;
  outline: none;
  font-size: 14px;
}

#chatbot-input-section button {
  background-color: #ff0040;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}
