body {
  font-family: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at top, #1a0b2e, #000);
   background: #0a0a0a;
  color: white;
  margin: 0;
  padding: 0;
}

body {
  padding-top: 100px;
}


/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  background: linear-gradient(to right, #000000, #0a0a0a, #000000);
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: transform 0.3s ease;
}

.header.oculto {
  transform: translateY(-100%);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  position: absolute;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* IMAGEN */
.logo img {
  width: 100px;   /* ajusta tamaño */
  height: 90px;
  object-fit: contain;
}

/* TEXTO */
.logo span {
  font-weight: bold;
  color: #a855f7;
  text-shadow: 0 0 10px #a855f7;
  font-size: 1rem;
}

/* MENÚ */
.menu {
  display: flex;
  gap: 40px;
}

.menu a:hover::after {
  box-shadow: 0 0 12px #a855f7, 0 0 25px #a855f7;
}

/* LINKS */
.menu a {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 1rem;
}

/* LÍNEA NEÓN */
.menu a::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
  background: #a855f7;
  box-shadow: 0 0 8px #a855f7, 0 0 15px #a855f7;
}

/* QUITAR LA ÚLTIMA LÍNEA */
.menu a:last-child::after {
  display: none;
}

/* TEXTO HOVER */
.menu a:hover {
  color: #a855f7;
  text-shadow: 0 0 10px #a855f7, 0 0 20px #a855f7;
}

/* LÍNEA BRILLA MÁS */
.menu a:hover::after {
  box-shadow: 0 0 15px #a855f7, 0 0 25px #a855f7;
}

/* DESTELLO MÁS FUERTE */
.menu a:hover::before {
  box-shadow: 
    0 0 10px #a855f7,
    0 0 20px #a855f7,
    0 0 35px #a855f7;
} 

/* SECCIÓN INICIO */
.inicio {
  margin-top: 120px;
  text-align: center;
  padding: 40px;
}

.inicio h1 {
  font-size: 2.5rem;
  color: #a855f7;
  text-shadow: 0 0 20px #a855f7;
}

.intro {
  margin: 20px auto;
  max-width: 600px;
  color: #ccc;
}

/* FIN DEL CSS DE MENÚ*/

/* SECCIÓN PRODUCTOS DESTACADOS */
.productos-destacados {
  text-align: center;
  margin-top: 60px;
}

.productos-destacados h2 {
  color: #ff2d95;
  margin-bottom: 30px;
  text-shadow: 0 0 15px #ff2d95;
}

/* CONTENEDOR */
.contenedor-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  width: 260px;
  border-radius: 15px;
  overflow: hidden;
  background: #0f0f0f;
  border: 2px solid #7b2cff;
  box-shadow: 0 0 15px #7b2cff;
  transition: 0.3s;
}

/* IMAGEN */
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* TEXTO */
.card p {
  padding: 15px;
  color: #ccc;
}

/* HOVER EFECTO PRO */
.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px #a855f7, 0 0 40px #7b2cff;
  border-color: #a855f7;
}

.card:hover p {
  color: #fff;
}
/* FIN DE PRODUCTOS DESTACADOS*/

/* SECCIÓN CATEGORIAS*/
.categorias {
  text-align: center;
  margin-top: 80px;
}

.categorias h2 {
  color: #ff2d95;
  margin-bottom: 40px;
  text-shadow: 0 0 15px #ff2d95;
}

/* CONTENEDOR */
.contenedor-categorias {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CADA CATEGORÍA */
.categoria {
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

/* CÍRCULO DE CATEGORIAS*/
.categoria img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #a855f7;
  box-shadow: 0 0 15px #a855f7;
  transition: 0.3s;
}

/* TEXTO */
.categoria p {
  margin-top: 10px;
  color: #ccc;
  font-size: 0.9rem;
}

/* HOVER */
.categoria:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 25px #a855f7, 0 0 40px #a855f7;
  border-color: #ff2d95;
}

.categoria:hover p {
  color: #fff;
  text-shadow: 0 0 10px #a855f7;
}

/*FIN DEL CSS CATEGORIAS*/

/*MARCAS QUE LA EMPRESA MANEJA*/

.marcas {
  text-align: center;
  margin-top: 100px;
}

.marcas h2 {
  color: #b6019e;
  font-size: 2rem;
  margin-bottom: 40px;
  text-shadow: 0 0 15px #c3a4e0ab;
}

/* CARRUSEL */
.carrusel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

/* TRACK */
.track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* TARJETA */
.marca {
  min-width: 180px;
  background: #0f0f0f;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #7b2cff;
  box-shadow: 0 0 15px #7b2cff;
  text-align: center;
}

/* IMAGEN */
.marca img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}

/* TEXTO */
.marca p {
  margin-top: 10px;
  color: #ccc;
}

/* BOTONES */
.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid #a855f7;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px #a855f7;
}

.prev { left: -50px; }
.next { right: -50px; }

.btn:hover {
  background: #a855f7;
  box-shadow: 0 0 20px #a855f7;
}

/*FIN DEL CSS DE MARCAS*/

/*INICIO DEL CSS DE NOSOTROS*/

.nosotros {
  padding: 100px 20px;
  text-align: center;
}

/* TÍTULO */
.nosotros h1 {
  font-size: 2.5rem;
  color: #a855f7;
  text-shadow: 0 0 20px #a855f7;
}

/* DESCRIPCIÓN */
.descripcion {
  max-width: 700px;
  margin: 20px auto;
  color: #ccc;
  line-height: 1.6;
}

.descripcion span {
  color: #ff2d95;
}

/* BLOQUES */
.info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.bloque {
  width: 300px;
  padding: 20px;
  border: 1px solid #7b2cff;
  border-radius: 15px;
  box-shadow: 0 0 15px #7b2cff;
  transition: 0.3s;
}

.bloque h3 {
  color: #ff2d95;
  margin-bottom: 10px;
}

.bloque p {
  color: #ccc;
}

/* HOVER */
.bloque:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #a855f7;
}

/* HISTORIA */
.historia {
  margin-top: 80px;
  text-align: center;
}

.historia h2 {
  color: #a855f7;
  text-shadow: 0 0 15px #a855f7;
  margin-bottom: 20px;
}

.texto-historia {
  max-width: 700px;
  margin: auto;
  color: #ccc;
  line-height: 1.6;
}

/* CONTENEDOR DE IMÁGENES */
.imagenes-historia {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* CAJA */
.img-box {
  text-align: center;
}

/* IMÁGENES */
.img-box img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid #7b2cff;
  box-shadow: 0 0 15px #7b2cff;
  transition: 0.3s;
}

/* TEXTO */
.img-box p {
  margin-top: 10px;
  color: #ccc;
}

/* HOVER */
.img-box:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 25px #a855f7, 0 0 40px #a855f7;
}

.bloque ul {
  list-style: none;
  color: #ccc;
  text-align: left;
}

.bloque li {
  margin: 5px 0;
}

/*FIN DEL CSS DE NOSOTROS*/

/*INICIO DEL CSS DE PRODUCTOS*/

/* SECCIÓN PRODUCTOS */
.productos {
  padding: 80px 20px;
  text-align: center;
}

.titulo-productos {
  font-size: 2.5rem;
  color: #ff2bd6;
  text-shadow: 0 0 15px #ff2bd6;
}

.sub-productos {
  margin-top: 10px;
  color: #bbb;
  font-size: 0.9rem;
}

/* GRID */
.grid-productos {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* CARD */
.card {
  background: #0a0a1f;
  border-radius: 15px;
  overflow: hidden;
  padding-bottom: 20px;
  border: 2px solid #9d4edd;
  box-shadow: 0 0 15px #9d4edd44;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px #9d4edd, 0 0 50px #9d4edd55;
}

/* IMAGEN */
.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* TEXTO */
.card h3 {
  margin-top: 15px;
  font-size: 1rem;
}

/* BOTÓN */
.card button {
  margin-top: 10px;
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  background: transparent;
  color: #9d4edd;
  border: 1px solid #9d4edd;
  cursor: pointer;
  transition: 0.3s;
}

.card button:hover {
  background: #9d4edd;
  color: black;
  box-shadow: 0 0 15px #9d4edd;
}

.btn-wsp {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: #25D366;
  border: 1px solid #25D366;
  transition: 0.3s;
  font-size: 0.9rem;
}

.btn-wsp:hover {
  background: #25D366;
  color: black;
  box-shadow: 0 0 15px #25D366, 0 0 30px #25D366;
}

/*FIN DEL CSS DE PRODUCTOS*/

/* CODIGO CSS DE UBICACIÓN */
.ubicacion {
  padding: 80px 20px;
  text-align: center;
}

.titulo-ubicacion {
  font-size: 2.5rem;
  color: #00f7ff;
  text-shadow: 0 0 15px #00f7ff;
}

.sub-ubicacion {
  margin-top: 10px;
  color: #bbb;
}

/* CONTENEDOR */
.contenedor-ubicacion {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

/* MAPA */
.mapa iframe {
  border-radius: 15px;
  box-shadow: 0 0 20px #00f7ff55;
}

/* INFO */
.info-ubicacion {
  max-width: 300px;
  text-align: left;
}

.info-ubicacion h3 {
  color: #9d4edd;
  text-shadow: 0 0 10px #9d4edd;
}

.info-ubicacion p {
  margin-top: 10px;
  color: #aaa;
}

/* BOTÓN */
.btn-maps {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: #00f7ff;
  border: 1px solid #00f7ff;
  transition: 0.3s;
}

.btn-maps:hover {
  background: #00f7ff;
  color: black;
  box-shadow: 0 0 15px #00f7ff;
}

.btn-ruta {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: #39ff14;
  border: 1px solid #39ff14;
  transition: 0.3s;
}

.btn-ruta:hover {
  background: #39ff14;
  color: black;
  box-shadow: 0 0 15px #39ff14, 0 0 30px #39ff14;
}

.card-info h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff2bd6;
  text-shadow: 0 0 10px #ff2bd6;
}

/* ICONOS */
.card-info svg {
  width: 20px;
  height: 20px;
  color: #ff2bd6;
  filter: drop-shadow(0 0 5px #ff2bd6);
}
.grid-info {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* CONTENEDOR CONTACTANOS */
.redes {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* ICONOS */
.icono {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #444;
}

/* ICONO SVG */
.icono svg {
  width: 22px;
  height: 22px;
}

/* INSTAGRAM */
.ig {
  color: #ff2bd6;
  border-color: #ff2bd6;
}

.ig:hover {
  background: #ff2bd6;
  color: black;
  box-shadow: 0 0 20px #ff2bd6, 0 0 40px #ff2bd6;
  transform: scale(1.1);
}

/* WHATSAPP */
.wsp {
  color: #39ff14;
  border-color: #39ff14;
}

.wsp:hover {
  background: #39ff14;
  color: black;
  box-shadow: 0 0 20px #39ff14, 0 0 40px #39ff14;
  transform: scale(1.1);
}

/* FACEBOOK */
.fb {
  color: #00f7ff;
  border-color: #00f7ff;
}

.fb:hover {
  background: #00f7ff;
  color: black;
  box-shadow: 0 0 20px #00f7ff, 0 0 40px #00f7ff;
  transform: scale(1.1);
}

/* CONTACTO */
.contacto {
  padding: 80px 20px;
  text-align: center;
}

.titulo-contacto {
  font-size: 2.5rem;
  color: #00f7ff;
  text-shadow: 0 0 15px #00f7ff;
}

.sub-contacto {
  margin-top: 10px;
  color: #bbb;
}

/* CONTENEDOR */
.contenedor-contacto {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* FORM */
.formulario {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 300px;
}

/* INPUTS */
.formulario input,
.formulario textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #9d4edd;
  background: transparent;
  color: white;
  outline: none;
}

.formulario input:focus,
.formulario textarea:focus {
  border-color: #00f7ff;
  box-shadow: 0 0 10px #00f7ff;
}

/* TEXTAREA */
.formulario textarea {
  height: 100px;
  resize: none;
}

/* BOTÓN */
.formulario button {
  padding: 10px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(90deg, #ff2bd6, #00f7ff);
  color: black;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.formulario button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff2bd6, 0 0 20px #00f7ff;
}

.formulario input:focus,
.formulario textarea:focus {
  border-color: #00f7ff;
  box-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff44;
  transform: scale(1.02);
}

.formulario {
  box-shadow: 0 0 20px #9d4edd33;
  padding: 25px;
  border-radius: 15px;
  background: rgba(10, 10, 30, 0.6);
  backdrop-filter: blur(10px);
}

.contacto::before {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, transparent, #00f7ff, transparent);
}
.wsp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: black;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 0 15px #25D366;
}

.icono i {
  font-size: 20px;
}

.titulo-redes {
  margin-top: 30px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #ff2bd6;
  text-shadow: 0 0 10px #ff2bd6;
  position: relative;
}

.titulo-redes::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, transparent, #ff2bd6, transparent);
  box-shadow: 0 0 10px #ff2bd6;

}

/* FOOTER BASE */
.footer {
  width: 100%;
  background: #0a0a1f;
  padding: 60px 20px;
  margin-top: 100px;
}

/* CONTENIDO CENTRADO */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* LOGO */
.footer-logo {
  color: white;
  margin-bottom: 20px;
}

/* LINKS */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00f7ff;
}

/* REDES */
.footer-redes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-redes a {
  color: white;
  font-size: 22px;
  transition: 0.3s;
}

.footer-redes a:hover {
  color: #f700ff;
  text-shadow: 0 0 10px #5900ff;
  transform: scale(1.1);
}

/* COPYRIGHT */
.footer-copy {
  color: #666;
  font-size: 0.8rem;
}

.footer {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background: #0a0a1f;
  padding: 60px 20px;
  margin-top: 100px;
}

.footer::before {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, transparent, #00f7ff, transparent);
}

.footer-redes a:hover {
  transform: scale(1.2) rotate(5deg);
}

.footer {
  opacity: 0;
  transform: translateY(40px);
  animation: aparecer 1s ease forwards;
}

@keyframes aparecer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;

  background: #0a0a1f;
  padding: 60px 20px;
  margin-top: 100px;

  /* 🔥 GLOW */
  box-shadow:
    0 -5px 30px rgba(157, 78, 221, 0.3),
    0 0 60px rgba(0, 247, 255, 0.15);
}

.footer {
  border-top: 1px solid rgba(157, 78, 221, 0.4);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f7ff, #ff2bd6, transparent);
  box-shadow: 0 0 10px #00f7ff, 0 0 20px #ff2bd6;
}

.footer {
  background: linear-gradient(
    to top,
    #0a0a1f,
    #0a0a1f 70%,
    rgba(157, 78, 221, 0.1)
  );
}

/* SECCIÓN */
.porque {
  margin-top: 80px;
  text-align: center;
}

/* TÍTULO */
.porque h2 {
  color: #00f7ff;
  text-shadow: 0 0 15px #00f7ff;
  margin-bottom: 40px;
}

/* CONTENEDOR */
.porque-contenedor {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* TARJETAS */
.porque-card {
  width: 250px;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #9d4edd;
  background: rgba(10, 10, 30, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px #9d4edd33;
  transition: 0.3s;
}

/* TEXTO */
.porque-card h3 {
  color: #ff2bd6;
  margin-bottom: 10px;
}

.porque-card p {
  color: #ccc;
  font-size: 0.9rem;
}

/* HOVER */
.porque-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #9d4edd, 0 0 40px #ff2bd655;
}