/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 4rem 2rem;
  min-height: 100vh;
  background: linear-gradient(135deg, #000 60%, #0f62fe33 100%);
}

.hero-content {
  max-width: 600px;
  text-align: left;
  animation: fadeInLeft 1.5s ease;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #0ff, #0f62fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: #aaa;
}

.hero .btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: #0f62fe;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero .btn:hover {
  background: #0353e9;
  transform: scale(1.05);
}

/* Imagen del HERO */
.hero-image img {
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 0 25px #0f62fe88;
  animation: fadeInRight 1.5s ease;
}

/* Animaciones */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Servicios */
.servicios {
  padding: 4rem 2rem;
}
.cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.card {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  width: 280px;
  border: 1px solid #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #0f62fe55;
}

/* Footer */
footer {
  padding: 2rem;
  border-top: 1px solid #333;
  color: #888;
  text-align: center;
}
