/* ==============================
   SERVICIOS – TEG LIONS
   ============================== */

.services-section {
  padding: 120px 6%;
  background: linear-gradient(
    180deg,
    #0e1a1f 0%,
    #0b1418 40%,
    #090d10 100%
  );
  color: #ffffff;
}


.services-container {
  max-width: 1400px;
  margin: auto;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-kicker {
  color: #00ffcc;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 15px 0;
}

.services-header p {
  color: #b5b5b5;
  max-width: 700px;
  margin: auto;
}

/* Grid mejorado – 2 arriba / 2 abajo */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* Card */
.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(0,255,204,0.15);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(6px);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,255,204,0.08);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #00ffcc;
}

/* Formularios */
.service-card label {
  display: block;
  font-size: 0.85rem;
  margin: 6px 0;
  cursor: pointer;
}

.service-card input {
  margin-right: 6px;
}

.section-title {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #ffffff;
}

hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 15px 0;
}

/* Precios */
.price-container {
  margin-top: 15px;
}

.price {
  font-size: 0.9rem;
}

/* Acciones */
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 600px) {
  .services-section {
    padding: 90px 5%;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

/* ==============================
   VIDEO DE FONDO SERVICIOS
   ============================== */

.video-bg {
  position: relative;
  overflow: hidden;
}
 /* video */
.services-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;

  /* CLAVE */
  filter: brightness(0.75) saturate(0.9) contrast(0.95);
}


/* Overlay oscuro */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 15, 18, 0.65),
    rgba(9, 15, 18, 0.85)
  );
  z-index: 1;
}


/* Contenido encima del video */
.services-container {
  position: relative;
  z-index: 2;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

/* ==============================
   RESPONSIVE SERVICIOS – TEG LIONS
   ============================== */

/* Tablets y laptops pequeñas */
@media (max-width: 1024px) {

  .services-section {
    padding: 100px 5%;
  }

  .services-header h2 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .service-card {
    padding: 24px;
  }
}

/* Tablets verticales */
@media (max-width: 820px) {

  .services-header h2 {
    font-size: 2rem;
  }

  .services-header p {
    font-size: 0.95rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Celulares grandes */
@media (max-width: 600px) {

  .services-section {
    padding: 80px 5%;
  }

  .services-header {
    margin-bottom: 50px;
  }

  .services-header h2 {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .services-header p {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-card {
    padding: 22px;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Celulares pequeños */
@media (max-width: 420px) {

  .services-header h2 {
    font-size: 1.6rem;
  }

  .services-kicker {
    font-size: 0.65rem;
  }

  .service-card label {
    font-size: 0.8rem;
  }

  .price {
    font-size: 0.85rem;
  }
}

/* Pantallas grandes (4K / ultrawide) */
@media (min-width: 1600px) {

  .services-container {
    max-width: 1600px;
  }

  .services-grid {
    gap: 45px;
  }

  .service-card {
    padding: 32px;
  }
}
