body {
  font-family: 'Poppins', sans-serif;
  background: #0b1120;
  color: #e5e7eb;
  margin: 0;
  padding: 0;
}

/* Encabezado */
.alineacion-header {
  text-align: center;
  padding: 80px 20px 60px;
  background: radial-gradient(circle at 30% 20%, #0a1a2f 0%, #07111f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Efecto de brillo diagonal sutil */
.alineacion-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.15), rgba(255, 255, 255, 0.05), rgba(37, 99, 235, 0.15));
  transform: skewX(-20deg);
  animation: shimmer 8s infinite linear;
  opacity: 0.4;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(100%) skewX(-20deg); }
}

.alineacion-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #f5f7fa;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.alineacion-header p {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contenido principal */
/* --- SECCIÓN INFORMATIVA --- */
.alineacion-info {
  background: linear-gradient(180deg, #0b1120 0%, #111827 100%);
  padding: 40px 10px;
  display: flex;
  justify-content: center;
	margin-top: -40px;
}

.alineacion-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  gap: 50px;
}

.alineacion-left {
  flex: 1 1 500px;  
}

.alineacion-left h2 {
  color: #60a5fa;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.alineacion-left p {
  color: #e5e7eb;
  line-height: 1.6;
  margin-bottom: 15px;
}

.alineacion-lista {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.alineacion-lista li {
  margin-bottom: 12px;
  color: #93c5fd;
  font-weight: 500;
}

.alineacion-lista i {
  color: #3b82f6;
  margin-right: 10px;
}

/* --- Imagen con efecto --- */
.alineacion-right {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.alineacion-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.alineacion-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.alineacion-card img {
  width: 100%;
  height: 100%;
  max-width: 480px;
  border-radius: 14px;
  display: block;
  transition: opacity 0.3s ease;
}

.alineacion-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 64, 175, 0.85);
  color: white;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: opacity 0.4s ease;
  text-align: center;
}

.alineacion-card:hover .alineacion-overlay {
  opacity: 1;
}

.alineacion-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.alineacion-overlay p {
  font-size: 0.95rem;
  color: #e0e7ff;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .alineacion-content {
    flex-direction: column;
    text-align: center;
  }

  .alineacion-card img {
    width: 100%;
    max-width: 420px;
  }
}

.servicios-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.servicio-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  padding: 25px 20px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.servicio-card:hover {
  transform: translateY(-6px);
}

.servicio-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.servicio-card p {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 15px;
}

.servicio-card .precio {
  display: block;
  font-weight: bold;
  color: #3b82f6;
  margin-bottom: 15px;
}

.servicio-card .btn {
  background: linear-gradient(90deg, #1e40af, #3b82f6);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.servicio-card .btn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
  .alineacion-info {
    flex-direction: column;
  }

  .alineacion-img img {
    width: 100%;
    max-width: 400px;
  }
}

