/* ====== ESTILO GENERAL ====== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #ccc;
  line-height: 1.6;
}

a {
  color: #0ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 20px;
}

/* ====== ENCABEZADO Y MENÚ PRINCIPAL ====== */
.header {
  background-color: #000;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #0ff;
}

.titulo {
  color: #0ff;
  font-size: 32px;
  margin: 0;
  text-shadow: 0 0 5px #0ff;
}

.descripcion {
  font-size: 16px;
  margin: 10px 0;
}

.menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.menu li a {
  color: #ccc;
  font-weight: bold;
}

.menu li a:hover {
  color: #0ff;
}

/* ====== SECCIONES (CLARAS Y OSCURAS) ====== */
.section-dark {
  background-color: #181818;
  padding: 40px 20px;
  text-align: center;
}

.section-light {
  background-color: #222;
  padding: 40px 20px;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ====== BOTONES DE ACCIÓN ====== */
.boton-accion {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0ff;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 10px #0ff;
  margin-top: 20px;
  transition: transform 0.2s;
}

.boton-accion:hover {
  transform: scale(1.05);
}

/* ====== BOTÓN FLOTANTE LATERAL ====== */
.boton-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

.boton-flotante a {
  background-color: #0ff;
  color: #000;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 0 10px #0ff;
}

/* ====== CATÁLOGO Y PRODUCTOS ====== */
.productos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.producto {
  background-color: #1b1b1b;
  border-radius: 12px;
  padding: 15px;
  width: 220px;
  box-shadow: 0 0 10px rgba(0,255,255,0.05);
  transition: all 0.3s ease;
}

.producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #0ff;
}

.producto img {
  width: 100%;
  border-radius: 8px;
}

.precio {
  font-size: 18px;
  color: #0ff;
  margin: 10px 0;
}

.boton-comprar {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0ff;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 0 10px #0ff;
  transition: transform 0.2s;
}

.boton-comprar:hover {
  transform: scale(1.05);
}

/* ====== FORMULARIOS (COMPRA Y CONTACTO) ====== */
form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: none;
  border-radius: 6px;
  background-color: #1a1a1a;
  color: #fff;
  box-shadow: 0 0 5px rgba(0,255,255,0.3);
}

form input::placeholder,
form textarea::placeholder {
  color: #888;
}

form button {
  background-color: #0ff;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 0 10px #0ff;
  transition: transform 0.2s;
}

form button:hover {
  transform: scale(1.05);
}

/* ====== BENEFICIOS ====== */
.beneficios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.beneficio {
  background-color: #1b1b1b;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 220px;
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
  transition: all 0.3s ease;
}

.beneficio:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #0ff;
}

.beneficio i {
  color: #0ff;
  margin-bottom: 10px;
}

/* ====== PIE DE PÁGINA (FOOTER) ====== */
.footer {
  background-color: #000;
  color: #ccc;
  text-align: center;
  padding: 30px 15px;
  font-size: 15px;
}

.footer-enlaces a {
  color: #0ff;
  margin: 0 8px;
  text-decoration: none;
}

.footer-enlaces a:hover {
  text-decoration: underline;
}

.footer-contacto i {
  color: #0ff;
  margin-right: 6px;
}

.footer-copy {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* 🔁 BANNER DESLIZANTE SUPERIOR */
.banner-movil {
  width: 100%;
  overflow: hidden;
  background-color: #000;
  border-bottom: 2px solid #0ff;
  color: #0ff;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  padding: 10px 0;
  box-shadow: 0 0 10px rgba(0,255,255,0.2);
  position: relative;
  z-index: 100;
}

.banner-contenido {
  display: inline-block;
  white-space: nowrap;
  animation: scrollBanner 25s linear infinite;
}

@keyframes scrollBanner {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
