.content {
  padding: 40px;
  background: linear-gradient(180deg, #0b1220, #020617);
  min-height: 100vh;
  color: white;
	border-radius: 16px;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(37,99,235,0.12), rgba(2,6,23,0.85));
  border-radius: 16px;
  margin-bottom: 50px;
  margin: 50px auto 70px;
  box-shadow: 0 10px 25px rgba(37,99,235,0.2);
}

.hero h1 {
  color: #2563eb;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero p {
  color: #9bb0c6;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.servicios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 80px auto 80px;
  max-width: 1200px;
}

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(2,6,23,0.45);
  padding: 30px 20px;
  text-align: center;
  width: 280px;
  transition: all 0.3s ease;
}

.service-card i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 16px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(37,99,235,0.4);
}

.service-card h3 {
  color: white;
  margin-bottom: 10px;
}

.service-card p {
  color: #9bb0c6;
  font-size: 0.95rem;
}

.cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(100deg, #071227, #0b1220);
  color: white;
  border-radius: 16px;
  margin-top: 60px;
}

.btn-cta {
  background: white;
  color: #0f172a;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta:hover {
  background: #f1f5f9;
  transform: translateY(-3px);
}
/* ===== Buscador ===== */
.buscador {
  text-align: center;
  margin: 50px auto 70px;
}

.buscador input {
  width: 60%;
  padding: 12px 18px;
  border-radius: 10px;
  border: 2px solid #2563eb;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.buscador input::placeholder {
  color: #9bb0c6;
}

.buscador input:focus {
  border-color: #0ea5a4;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

.buscador .ayuda {
  color: #9bb0c6;
  font-size: 0.9rem;
  margin-top: 8px;
}


/* Responsive */
@media (max-width: 768px) {
  .servicios { flex-direction: column; align-items: center; }
  .service-card { width: 90%; }
}
/* CSS Document */

