/* ===== GEEKFIX STYLE ===== */

/* Reset general */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fondo y tipografía global */
body {
  background: linear-gradient(180deg, #1C1A2E 0%, #2B255F 50%, #48316B 100%);
  color: #E2D9FF;
  font-family: "Poppins", system-ui, sans-serif;
  min-height: 100vh;
}

/* ===== Navbar ===== */
header {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 30px;
  z-index: 1000;
}

.logo img {
  width: 80px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #C663FF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFFFFF;
  text-shadow: 0 0 10px #7B4EFF;
}

/* ===== Página Principal ===== */
.inicio {
  margin-top: 150px;
  text-align: center;
  padding: 50px 20px;
}

.inicio h1 {
  font-size: 2.5rem;
}

.geek {
  color: #C663FF;
}

.inicio p {
  font-size: 1.2rem;
  margin-top: 15px;
}

/* ===== Página de Precios ===== */
.servicios {
  margin-top: 150px;
  padding: 40px;
}

.categoria {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 50px;
  box-shadow: 0 0 15px rgba(123, 78, 255, 0.3);
}

.categoria h1 {
  text-align: center;
  color: #E2D9FF;
  border-bottom: 2px solid #7B4EFF;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.gallery img {
  width: 120px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.lista-precios {
  list-style: none;
  margin-top: 10px;
  padding: 0 20px;
}

.lista-precios li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(194, 136, 255, 0.3);
}

/* ===== Ubicaciones ===== */
.ubicacion {
  margin-top: 150px;
  text-align: center;
  padding: 40px;
}

.btn-envios {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #C663FF;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-envios:hover {
  background: #7B4EFF;
}

/* ===== Envíos ===== */
.envios {
  margin-top: 150px;
  padding: 40px;
}

.envios ol {
  margin: 20px 0 40px 30px;
  line-height: 1.8;
}

/* ===== Footer ===== */
footer {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  text-align: center;
  color: #E2D9FF;
  font-size: 0.9rem;
}

.envios-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
}

.texto-envios {
  flex: 1;
  max-width: 600px;
  text-align: left;
  margin-left: 40px; 
}

.texto-envios h1 {
  color: #E2D9FF;
  font-size: 2rem;
  margin-bottom: 10px;
}

.texto-envios a {
  color: #C663FF;
  text-decoration: none;
  font-weight: 500;
}

.texto-envios a:hover {
  text-decoration: underline;
}

.qr-envios {
  text-align: center;
  transform: translateX(-40px); 
}

.qr-envios img {
  width: 230px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(123, 78, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-envios img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(198, 99, 255, 0.5);
}

/* Adaptación a pantallas */
@media (max-width: 768px) {
  .envios-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .qr-envios {
    margin-top: 30px;
  }
}
