/* Contenedor del slider */
#slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

/* Cada slide */
.slide {
  display: none;
  position: relative;
  max-height: 94vh;
}

#slider img {
  margin-top: 100px;
  transform: scaleY(0.9);
  /* reduce solo la altura al 90% */
  transform-origin: center;
  /* mantiene el centro como punto de referencia */
}

/* Mostrar el primer slide por defecto */
.slide.active {
  display: block;
}

/* Contenedor de texto sobre la imagen */
.slide-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-family: 'Roboto Condensed', sans-serif;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  max-width: 70%;
  border-radius: 5px;
}

/* Botones para navegar */
.slider-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 15px;
  box-sizing: border-box;
}

.slider-nav button {
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.slider-nav button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .slide-text {
    font-size: 14px;
    max-width: 90%;
    bottom: 10px;
    left: 10px;
    padding: 7px;
  }
}

#primary {
  background-image: none;
  background-color: #fff;
}

.full-contact {
  background: url(/images/contact-bg.jpg) fixed;
  padding: 50px 0px;
}

.ntt-toggle-content {
  overflow: hidden;
  transition: all 0.3s ease;
}

input:disabled,
input[readonly],
select:disabled,
select[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #f5f5f5 !important;
  color: #888 !important;
  border-color: #ccc !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
  pointer-events: none;
}

ul.dt-sc-tabs-frame li.admin-option::before {
  content: none !important;
  display: none !important;
}

ul.dt-sc-tabs-frame li.admin-option {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

ul.dt-sc-tabs-frame li.admin-option a {
  display: block;
  width: 100%;
  padding: 10px 15px;
  /* ajustable */
  box-sizing: border-box;
  text-align: left;
  /* o center si lo deseas centrado */
}

.ntt-toggle-btn {
  background-color: #F79FC7;
  border: none;
  padding: 0.75rem;
  width: 100%;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
}

.ntt-toggle-btn:hover {
  /* background-color: rgba(255, 121, 146, 0.9); */
}

.ntt-toggle-content table td,
.ntt-toggle-content table th {
  padding: 0.5rem;
  border-top: 1px solid #ddd;
}

.ntt-toggle-icon {
  display: inline-block;
  font-weight: bold;
  width: 1.5rem;
  text-align: center;
  margin-right: 0.25rem;
}

.ntt-toggle-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  /* background: #f7f7f7; */
  border: none;
  cursor: pointer;
  text-align: left;
}


.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#logo {
  flex-shrink: 0;
}

#primary-menu {
  flex-grow: 1;
  margin-left: 2rem;
}

.admin-session-info {
  position: absolute;
  right: 53px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

#ntt-logout-btn {
  padding: 6px 12px;
  background-color: #F79FC7;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#ntt-logout-btn:hover {
  background-color: rgba(255, 121, 146, 0.9);
}

@media (max-width: 768px) {
  .main-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-session-info {
    position: static;
    transform: none;
    margin-top: 1rem;
    justify-content: flex-end;
    width: 100%;
  }
}







.plyr__video-wrapper {
  max-width: 800px;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.plan-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.plan-link:hover {
  opacity: 0.95;
  cursor: pointer;
}


/* Remueve imagen de fondo del elemento */
#main-content::before {
  background-image: none !important;
}

#main-content::after {
  background-image: none !important;
}

.dt-sc-event .event-thumb img {
  height: 245px;
}




/* contenedor */
#slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  /* todas las slides apiladas */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}


.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* overlay GRADIENT (oscurece la izquierda, transparente a la derecha) */
#slider::before {
  content: "";
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0 */
  z-index: 5;
  /* por debajo del texto (z-index:10) */
  pointer-events: none;
  /* no bloquea clicks */
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.60) 0%,
      rgba(0, 0, 0, 0.45) 25%,
      rgba(0, 0, 0, 0.20) 45%,
      rgba(0, 0, 0, 0.00) 75%);
}

/* texto sobre el slider (alineado a la izquierda) */
.slider-text {
  position: absolute;
  top: 60%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: #333;
  /* blanco para contraste */
  z-index: 10;
  /* encima del overlay */
  pointer-events: none;
  /* no bloquea el slider */
  max-width: 500px;
}

/* tipografías y espaciado */
.slider-text h2 {
  font-size: 2.5em;
  line-height: 1.2em;
  margin-bottom: 0.5em;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.slider-text p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
  color: #ffe6f2;
  /* rosa de marca */
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* botón píldora */
.slider-text .cta-button {
  display: inline-block;
  background-color: #F79FC7;
  /* rosa marca */
  color: #fff;
  /* texto blanco para contraste */
  padding: 1em 2em;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
  transition: all 0.3s ease;
}

.slider-text .cta-button:hover {
  background-color: #e38cbe;
  /* rosa un poco más oscuro en hover */
  box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.15);
}

/* responsive: reducir tamaño en móviles */
@media (max-width: 900px) {
  .slider-text {
    left: 6%;
    max-width: 420px;
  }

  .slider-text h2 {
    font-size: 2.0rem;
  }

  .slider-text p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .slider-text {
    top: 50%;
    /* un poco más centrado que en escritorio */
  }
}

@media (max-width: 520px) {
  .slider-text {
    top: 45%;
    /* más arriba en móviles muy pequeños */
    left: 6%;
    transform: translateY(-45%);
    max-width: 88%;
    padding: 0;
  }

  .slider-text h2 {
    font-size: 1.5rem;
  }

  .slider-text p {
    font-size: 0.95rem;
  }
}

/* contenedor para botones laterales individuales */
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  /* ocupar todo el ancho del slider */
  transform: translateY(-50%);
  z-index: 30;
  pointer-events: none;
  /* los hijos sí captan clicks */
}

/* botones individuales */
.slider-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  color: #333;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  pointer-events: auto;
  /* permiten hacer click */
}

#prev {
  left: 28px;
  /* un poco separado del borde izquierdo */
}

#next {
  right: 28px;
  /* un poco separado del borde derecho */
}

.slider-nav button:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

/* móviles: botones más chicos */
@media (max-width: 768px) {
  .slider-nav button {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  #prev {
    left: 14px;
  }

  #next {
    right: 14px;
  }
}

.full-mac {
  color: #fff;
  background: none;
  background-color: #0a1114;
}


.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: #f79fc7;
  /* color principal de la página */
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #f56aa3;
  /* color hover */
  transform: scale(1.05);
  color: #fff;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
}


/* Mobile: botón flotante circular sin texto */
@media (max-width: 768px) {
  .whatsapp-float {
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    font-size: 0;
    /* ocultar texto */
    background-color: transparent !important;
    /* quitar fondo */
    box-shadow: none;
    /* opcional, quitar sombra si quieres */
  }

  .whatsapp-float img {
    width: 60%;
    height: 60%;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    /* efecto hover solo en icono */
  }
}


/* --- Modal --- */
.modal {
  display: none;
  /* Oculto por defecto */
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}

.modal-content {
  position: relative;
  top: 100px;
  background: #fff;
  color: #333;
  max-width: 700px;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 16px;
  overflow-y: auto;
  max-height: 80vh;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInScale .4s ease;
}

.modal-content h2,
.modal-content h3 {
  color: #d94c93;
  /* Rosa marca */
  margin-top: 1rem;
}

.modal-content ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.modal-content li {
  margin-bottom: .7rem;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


.modal-cta-button {
  display: inline-block;
  margin-top: 2rem;
  background-color: #F79FC7;
  /* color de la marca */
  color: #fff;
  /* texto blanco */
  padding: 1em 2em;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.modal-cta-button:hover {
  background-color: #e38cbe;
  /* un tono más oscuro al pasar el mouse */
  box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.15);
  color: #fff;
}



.dt-sc-workout-detail .dt-sc-one-half {
  width: 100% !important;
  /* ocupa todo el ancho */
  float: none !important;
  /* elimina el flotado */
  display: block;
  margin-bottom: 30px;
  /* espacio entre video y texto */
}





/* Aplica solo en pantallas de al menos 768px (tablets y desktop) */
@media (min-width: 768px) {
  #primary-menu {
    margin-left: 2rem;
  }

  @media (min-width: 769px) {
    .carousel-arrows {
      display: none;
    }
  }
}

/* En móviles (menos de 768px) no tendrá margen */
@media (max-width: 767px) {
  #primary-menu {
    margin-left: 0;
  }

  .slider-text {
    bottom: 12rem;
    left: 1.5rem;
    top: auto;
    transform: none;
    text-align: left;
    max-width: 90%;
  }

  .slider-text h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .slider-text p {
    display: none;
    /* lo ocultamos en móvil */
  }

  .cta-button {
    display: inline-block;
    background-color: #F79FC7;
    color: #fff;
    text-decoration: none;
    padding: 2rem 1.6rem;
    border-radius: 2rem;
    font-weight: bold;
    font-size: 1rem;
  }

  .whatsapp-float {
    bottom: 120px;
    /* ⬆️ subido para no tapar el slider-text */
    right: 10px;
  }

  .whatsapp-float img {
    width: 55px;
    height: 55px;
  }

  .dt-sc-partner-carousel-wrapper {
    position: relative;
  }

  .carousel-arrows {
    display: flex;
    justify-content: space-between;
    position: absolute !important;
    /* 🔑 forzar absoluto */
    top: 50% !important;
    /* 🔑 centrar vertical */
    left: 0;
    width: 100%;
    transform: translateY(-50%) !important;
    /* 🔑 centrar exacto */
    pointer-events: auto;
    z-index: 10;
  }

  .carousel-arrows button {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
  }


}

/* package-detail.html */
.dt-excersise-detail-pkg h4 {
  color: #F79FC7;
  border-bottom: 2px solid #F79FC7;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.dt-excersise-detail-pkg strong {
  color: #F79FC7;
}

.dt-excersise-detail-pkg ul {
  list-style: none;
  padding-left: 0;
}

.dt-excersise-detail-pkg ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.dt-excersise-detail-pkg ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #F79FC7;
  font-size: 20px;
  line-height: 1;
}

.dt-excersise-detail-pkg {
  line-height: 1.6;
}

.dt-excersise-detail-pkg h4 {
  margin-top: 24px;
}


.btn-formulario {
  display: inline-block;
  background-color: #F79FC7;
  /* tu color principal */
  color: #fff !important;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s ease;
}

.btn-formulario:hover {
  background-color: #e26e9e;
  /* un poco más oscuro */
}




#pdfModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

#pdfModalOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

#pdfModalContent {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#pdfModalClose {
  background: #ff5b5b;
  border: none;
  color: white;
  font-size: 24px;
  padding: 5px 12px;
  align-self: flex-end;
  cursor: pointer;
}

#pdfModalIframe {
  flex: 1;
  width: 100%;
  border: none;
}




.admin-modal {
  display: none;
  /* inicialmente oculto */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);

  /* Flex para centrar contenido cuando se muestre */
  justify-content: center;
  align-items: center;
}

.admin-modal-content {
  background-color: #fff;
  border-radius: 6px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  /* para no exceder la pantalla */
  overflow-y: auto;
  /* scroll interno si contenido largo */
  padding: 20px;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.admin-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
}

.admin-form input,
.admin-form select {
  width: 100%;
  padding: 8px;
  margin: 8px 0 16px 0;
  box-sizing: border-box;
}

.admin-submit-btn,
.admin-btn {
  padding: 10px 20px;
  background-color: #f79fc7;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.admin-submit-btn:hover,
.admin-btn:hover {
  background-color: #f56aa3;
}



/* Contenedor principal */
.admin-primary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Botón Crear Usuario */
.admin-primary .admin-btn {
  align-self: flex-end;
  padding: 0.6rem 1.2rem;
  background: #f79fc7;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.admin-primary .admin-btn:hover {
  background: #f56aa3;
}

/* Tabla responsive */
.admin-primary .wrap-admin-dash-table {
  width: 100%;
  overflow-x: auto;
}

.admin-primary .wrap-admin-dash-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  /* asegura scroll horizontal si no cabe */
}

.admin-primary .wrap-admin-dash-table th,
.admin-primary .wrap-admin-dash-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.admin-primary .wrap-admin-dash-table th {
  background-color: #f79fc7;
}

/* Paginación */
.admin-primary .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.admin-primary .pagination ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.admin-primary .pagination li {
  padding: 0.4rem 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.admin-primary .pagination .active-page {
  background: #f79fc7;
  color: #fff;
  font-weight: bold;
}

.admin-primary .pagination a {
  text-decoration: none;
}

.admin-primary .pagination a.inactive {
  color: #f79fc7;
}





.wrap-admin-packages-table {
  width: 100%;
  overflow-x: auto;
  /* permite scroll horizontal */
  -webkit-overflow-scrolling: touch;
  /* scroll suave en iOS */
}

.wrap-admin-packages-table table {
  display: block;
  min-width: 600px;
  border-collapse: collapse;
}

.wrap-admin-packages-table th,
.wrap-admin-packages-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  white-space: nowrap;
  /* evita que el texto se rompa */
}

.wrap-admin-packages-table th {
  background-color: #f79fc7;
  color: #fff;
  font-weight: bold;
}

.wrap-admin-packages-table tr:hover td {
  background-color: #fce4ef;
}