/* estilo.css */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0b0f1a;
  color: #fff;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('img/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(6px);
  padding: 2rem;
  border-radius: 12px;
  background-color: rgba(15, 23, 42, 0.6);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #00c6ff;
  padding: 12px 28px;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #00aee0;
}

.seccion {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.seccion h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.seccion ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  line-height: 2rem;
}

.iconos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.iconos img {
  width: 60px;
  filter: drop-shadow(0 0 8px #00c6ff);
}

.comparativa {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media(min-width: 768px) {
  .comparativa {
    flex-direction: row;
    justify-content: center;
  }
}

.caja {
  background: #111827;
  padding: 2rem;
  border-radius: 12px;
  flex: 1;
}

.caja h3 {
  font-size: 1.5rem;
  color: #00c6ff;
}

.caja ul li {
  margin: 1rem 0;
}

.profesional {
  background: #1f2937;
  border: 2px solid #00c6ff;
}
/*pasos de movil*/
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #00111f;
  color: #f1f5f9;
}

header {
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
  padding: 40px;
  text-align: center;
  color: white;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.proceso-web {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.proceso-web h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #38bdf8;
}

.paso {
  background: #1e293b;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 6px solid #38bdf8;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.paso:hover {
  transform: scale(1.02);
  background: #334155;
}

.paso h3 {
  margin-top: 0;
  color: #7dd3fc;
}

footer {
  text-align: center;
  padding: 30px;
}

.boton-volver {
  background: #2563eb;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.boton-volver:hover {
  background: #1e40af;
}
/*pasos videojuego*/
.hero-section.videojuegos {
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  padding: 5rem 2rem;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.2rem;
  color: #ccc;
}

.proceso, .tecnologias, .beneficios, .galeria {
  padding: 2rem;
  background: #111;
  margin-top: 1rem;
}

.proceso h2, .tecnologias h2, .beneficios h2, .galeria h2 {
  border-left: 5px solid #0066ff;
  padding-left: 10px;
  margin-bottom: 1rem;
}

.paso, .tecnologias ul li, .beneficios ul li {
  margin: 1rem 0;
}

ul {
  list-style-type: disc;
  margin-left: 2rem;
}

.galeria .imagenes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.galeria .imagenes img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.boton-volver {
  background: #0066ff;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
}