/* Sección de servicios / sesiones (aislada para evitar conflictos) */

.omna-services {
  background: #faf6ed;
  padding: 54px 0 62px;
  position: relative;
  overflow: hidden;
}

.omna-services__decor-left {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.omna-services__header {
  text-align: center;
  margin: 0 auto 26px;
  max-width: 920px;
}

.omna-services__kicker {
  margin: 0 0 6px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 22px;
  color: #E6A902;
}

.omna-services__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: #6b6b6b;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.12;
}

.omna-services__grid {
  /* Mantener el layout de Bootstrap (.row) sin romper columnas */
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 24px;

  /* Espacio vertical extra entre filas para el ícono flotante (-60px) */
  --bs-gutter-y: 4.5rem;
}

.omna-services__col {
  display: flex;
}

/* 5 cards exactas por fila en pantallas ≥ 1200px */
@media (min-width: 1200px) {
  .omna-services__col {
    flex: 0 0 18%;
    max-width: 18%;
  }
}

.omna-services__card {
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  border: 2px solid #cccccc;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  padding: 72px 28px 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  min-height: 290px;
  max-height: 350px;
  height: 100%;
  position: relative;
  overflow: visible;
}

.omna-services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(194, 161, 92, 0.38);
}

.omna-services__icon-float {
  position: absolute;
  left: 50%;
  top: -56px;
  transform: translateX(-50%);
  pointer-events: none;
}

.omna-services__icon-wrap {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
}

.omna-services__card-title {
  margin: 10px 0 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #333333;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.15;

  /* Mantiene alturas consistentes aunque el título sea largo */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.omna-services__card-text {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  color: #6b6b6b;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.45;
  max-width: 320px;

  /* Mantiene alturas consistentes aunque la descripción sea larga */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.omna-services__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #8f7a46;
  padding-top: 12px;
}

.omna-services__arrow {
  color: #e6a902;
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .omna-services {
    padding: 52px 0 60px;
  }

  .omna-services__card {
    min-height: 270px;
    padding-top: 68px;
  }
}

@media (max-width: 575.98px) {
  .omna-services__grid {
    padding: 0 16px;
  }

  .omna-services__card {
    min-height: 250px;
    padding-top: 65px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* `public/style.css` fuerza `.sesion-container` a 2 columnas en <768px.
   Para esta sección, lo anulamos y dejamos el comportamiento de Bootstrap (1 por fila). */
@media (max-width: 767.98px) {
  #sesions .sesion-container {
    display: flex !important;
    flex-wrap: wrap;
    grid-template-columns: none !important;
  }

  .omna-services__decor-left {
    width: 140px;
    left: -30px;
    opacity: 0.08;
  }
}