/* === Utilidades === */
.hidden {
    display: none;
}

/* === Logout === */
.logout-section {
    text-align: center;
    margin-top: 14px;
}
.logout-link {
    color: #808080;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}
.logout-link:hover {
    color: #606060;
}

/* === Combo-input === */
.combo-input-container {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}
.combo-input {
    width: 70px;
    height: 32px;
    font-size: 14px;
    padding: 4px;
    border-radius: 4px;
    font-weight: bold;
    background-color: #2c2c2c;
    color: #fff;
    border: 1px solid #555;
    appearance: none;
    padding-right: 8px;
    cursor: pointer;
    background-image: none !important;
}
.combo-input option {
    background-color: #1e1e1e;
    color: #fff;
    font-weight: bold;
}

/* === Página de login === */
body.login-page {
    background-color: #1e1e1e;
    color: #f1f1f1;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* 👈 esta línea es nueva */    
}

.form-container {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #dc3545;
    font-size: 22px;
}

.form-container input {
    background-color: #1e1e1e;
    color: #fff;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-container button {
    background-color: #dc3545;
    color: #fff;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 17px;
    transition: background-color 0.3s ease;
}
.form-container button:hover {
    background-color: #bb2d3b;
}

.error {
    color: #ffffff; /* blanco para máxima legibilidad */
    text-align: center;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: 400px;/*  21-05-2025 se agrego  */
}



/* === Link registro centrado === */
.registro-link {
    text-align: center;
    margin-top: 10px;
}
.registro-link .enlace-registro {
    color: #f1f1f1;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}
.registro-link .enlace-registro:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* === Batería === */
#bateria {
    text-align: center;
    margin-top: 25px;
}

.spinner {
    width: 34px;
    height: 34px;
    border: 4px solid #444;
    border-top-color: #28a745;
    border-radius: 50%;
    margin: 0 auto 12px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.bloques {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
}
.bloque {
    width: 30px;
    height: 20px;
    background: #28a745;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.porcentaje {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    margin-top: 10px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* === Frase Motivadora === */
#frase-motivadora {
    font-size: 20px;
    font-weight: 500;
    color: #f1f1f1;
    margin-top: 20px;
    line-height: 1.2;
    text-align: center;
    padding: 0 10px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    width: 350px;
}

@media (max-width: 768px) {
    #frase-motivadora {
        font-size: 22px;
    }
}


/* === SweetAlert === */
.swal2-popup {
    background-color: #1e1e1e !important;
    color: #ffffff !important;
    font-family: 'Arial', sans-serif;
}
.swal2-popup.modal-registro {
    background-color: #1e1e1e;
}
.swal2-backdrop-show {
    background-color: rgba(0, 0, 0, 0.85) !important;
}
.swal2-icon-success {
    border-color: #28a745 !important;
    color: #28a745 !important;
}
.swal2-icon-warning {
    border-color: #ffc107 !important;
    color: #ffc107 !important;
}
.swal2-icon-error {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}
.swal2-confirm {
    background-color: #28a745 !important;
    color: #fff !important;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 16px;
}
.swal2-cancel {
    background-color: #dc3545 !important;
    color: #fff !important;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 16px;
}
.swal2-icon {
    animation: iconZoom 0.4s ease-out;
}
@keyframes iconZoom {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}
.swal2-html-container {
    animation: fadeInText 0.6s ease;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
}
@keyframes fadeInText {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
.swal2-validation-message {
    background-color: #2c2c2c !important;
    color: #f1f1f1 !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Botones personalizados === */
.btn-confirmar {
    background-color: #28a745 !important;
    color: #fff !important;
    font-weight: bold;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 8px;
}
.btn-cancelar {
    background-color: #dc3545 !important;
    color: #fff !important;
    font-weight: bold;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 8px;
}

/* === Responsive === */
@media (max-width: 768px) {
    .salto-mobile {
        display: inline;
    }
}
.salto-mobile {
    display: none;
}
.registro-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 5px;
    align-items: center;
}

.telefono-input {
    width: 100px;
    height: 32px;
    font-size: 14px;
    padding: 4px;
    border-radius: 4px;
}
.mensaje-saludable {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1e1e1e;
    color: #fff;
    text-align: center;
    padding: 22px 20px; /* aumentamos solo el alto */
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    z-index: 9999;
    display: none;
    animation: fadeInOut 8s ease-in-out forwards;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }  
  @keyframes fadeInOut {
    0% { opacity: 0; top: -50px; }
    10% { opacity: 1; top: 0; }
    90% { opacity: 1; top: 0; }
    100% { opacity: 0; top: -50px; }
  }
  @media screen and (min-width: 768px) {
    .mensaje-saludable {
      padding: 50px 20px; /* aumenta la altura en desktop */
      font-size: 16px;    /* opcional: un poco más grande también */
    }
  }
  .emoji-grande {
    font-size: 20px;
    margin-right: 8px;
    vertical-align: middle;
  }
  .swal2-container.swal2-center {
    z-index: 99999 !important;
  }
  
  .swal2-popup.modal-registro {
    position: relative;
    z-index: 99999 !important;
  }
  .registro-scroll-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1e1e1e;
    text-align: center;
    padding: 15px 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: aparecerRegistro 0.5s ease-in-out forwards;
  }
  
/* 🖥️ SOLO para Desktop */
@media (min-width: 992px) {
    .registro-scroll-wrapper {
      position: fixed;
      top: 5px; /* 🔧 ajusta si quieres más arriba/abajo */
      left: 35%;
      transform: translateX(-50%);
      width: auto;
      max-width: 400px;
      background-color: #1e1e1e;
      border-radius: 12px;
      padding: 14px 25px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      z-index: 9999;
      display: none;
      animation: aparecerRegistro 0.5s ease-in-out forwards;
    }
  }
  
  @keyframes aparecerRegistro {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .intro-frase {
    display: block;
    font-style: italic;
    font-size: 1em;
    color: #f5f6fa;
    margin-bottom: 5px;
    opacity: 0.9;
}

.overlay span.dt-sc-button[disabled] {
    background: gray !important;
    cursor: not-allowed !important;
}

.welcome-container {
    background-color: #1a1a1a; /* Fondo negro elegante */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); /* Sombra sutil más oscura */
    border-radius: 12px;
    max-width: 1270px;
    margin: 0 auto;
    padding: 20px;
    color: #f1f1f1; /* Texto claro */
}

.welcome-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.8rem;
}

.welcome-sub {
    color: #ccc;
    font-size: 1.15rem;
    margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .welcome-container {
    max-width: 100%;
    padding: 30px 20px;
  }

  .welcome-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .welcome-sub {
    font-size: 1rem;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .welcome-container {
    max-width: 100%;
    padding: 25px 15px;
  }

  .welcome-title {
    font-size: 1.3rem;
  }

  .welcome-sub {
    font-size: 0.95rem;
  }
}


.enlace-volver-container {
    text-align: right;
    padding-right: 20px;
    margin-top: 10px;
}

.enlace-volver {
    font-size: 15px;
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.enlace-volver:hover {
    color: #fff;
    text-decoration: underline;
}

/* 📱 Mobile: centrar enlace */
@media (max-width: 768px) {
    .enlace-volver-container {
        text-align: center;
        padding-right: 0;
    }
}
/* Video Block*/
.video-card-entrenamiento {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.video-card-entrenamiento h5 {
    margin-bottom: 15px;
    color: white;
    font-size: 18px;
}

.video-frame {
    background-color: #333;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
}

.video-frame video {
    width: 100%;
    display: block;
    border-radius: 10px;
}
#assistantMessage {
    text-align: center;
    border: 1px solid #b60000;
    line-height: 1.3;
}
canvas.confetti-canvas {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 99999 !important;
    pointer-events: none;
}
  

.swal-popup-felicidad {
    border: 2px solid #4caf50;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(40, 167, 69, 0.5);
    padding: 30px 20px;
}
  
.swal-titulo {
    font-size: 2rem !important;
    color: #78ff78;
    text-shadow: 0 0 5px #28a745;
}
  
.swal-boton {
    font-size: 1.1rem !important;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #28a745, #5fd068);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}
@keyframes aparecerZoom {
    0% {
      transform: scale(0.4);
      opacity: 0;
    }
    60% {
      transform: scale(1.2);
      opacity: 1;
    }
    100% {
      transform: scale(1);
    }
  }
  
  .mensaje-impacto {
    display: inline-block;
    opacity: 0;
    font-size: 1.1rem;
    color: #ffc107;
    font-weight: bold;
    transform: scale(0.4);
    animation: aparecerZoom 0.6s ease-out 0.6s forwards;
  }


  @media screen and (max-width: 767px) {
    #seccion-semanas {
      display: none !important;
    }
  
    #seccion-central {
      width: 100% !important;
      max-width: 100% !important;
      flex: 1 1 100% !important;
    }
  
    .container {
      display: block !important;
    }
  }
  .disabled-link {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit; /* opcional si quieres que herede color */
}
.resumen-resultados.estilizado {
  background-color: #1a1a1a;
  padding: 30px 40px;
  margin: 50px auto;
  max-width: 700px;
  border-radius: 14px;
  border: 2px solid #dc3545; /* rojo elegante */
  box-shadow: 0 0 30px rgba(220, 53, 69, 0.1);
  text-align: center;
  color: #f0f0f0;
  transition: all 0.3s ease;
}

.resumen-resultados.estilizado h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #ff6666;
  font-weight: 600;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

.resumen-resultados.estilizado .resumen-dias p,
.resumen-resultados.estilizado .resumen-mes p {
  margin: 10px 0;
  font-size: 1.1rem;
  color: #ccc;
}

.resumen-resultados.estilizado .resumen-mes p span {
  font-weight: bold;
  color: #ffffff;
}

.resumen-resultados.estilizado .descanso {
  font-style: italic;
  margin-top: 20px;
  color: #aaaaaa;
  font-size: 0.95rem;
}
.resumen-resultados.estilizado .total-mes-label {
  display: block;
  margin-top: 25px;
  font-size: 1.2rem;
  color: #ff6666;
  font-weight: 600;
}

.resumen-resultados.estilizado .total-mes-cifra {
  font-size: 1.3rem;
  margin-top: 5px;
  font-weight: bold;
  color: #ffffff;
}
.resumen-dias .semana-titulo {
  font-weight: bold;
  color: #ffffff;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.resumen-dias .detalle-dia {
  font-size: 1rem;
  color: #ccc;
  margin: 2px 0 8px 0;
}
.resumen-dias .semana-titulo {
  font-weight: bold;
  color: #ffffff;
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.resumen-dias .detalle-dia {
  font-size: 1rem;
  color: #ccc;
  margin: 3px 0 10px 0;
}
.detalle-tiempo {
  margin-top: 30px;
  padding: 22px;
  background: linear-gradient(135deg, #1c1c1c, #101010);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  line-height: 1.65;
  color: #e4e4e4;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.detalle-tiempo p {
  margin: 8px 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.detalle-tiempo p span.emoji {
  margin-right: 6px;
  font-size: 1.1rem;
}


#toast-dia-completado {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #1a1a1a;
  color: #e0ffe0;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  opacity: 0;
  display: none;
  z-index: 9999;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(20px);
}
.motivacion-retoma {
  margin-top: 16px;
  font-size: 0.9rem;
  background-color: #2a2a2a;
  padding: 10px 16px;
  color: #ffcc66;
  border-left: 4px solid #ffaa00;
  border-radius: 6px;
  font-style: italic;
}
.tip-entrenamiento {
  background-color: #1a1a1a;
  padding: 12px 18px;
  border-radius: 8px;
  font-style: italic;
  color: #f0f0f0;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#tip-semanal-wrapper {
  display: block;
  margin-top: 25px;
}
.dia-label {
  background-color: #3a3a3a; /* gris suave */
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  display: inline-block;
  margin-right: 5px;
}
.emoji-estado {
  display: inline-block;
  width: 1.6em;
  text-align: center;
  margin-right: 5px;
  font-size: 1rem;
  line-height: 1;
  vertical-align: middle;
}
#porcentaje-mes-total {
  margin-top: 15px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #ffffff;
  background-color: #3e3e3e;
  padding: 8px 18px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.4px;
}
@media screen and (max-width: 480px) {
  .resumen-resultados.estilizado {
    padding: 20px 16px; /* Reduce el padding lateral */
    margin: 20px 12px;  /* Reduce margen lateral si hay */
    box-sizing: border-box;
  }
}
.bloque-semana {
  margin-bottom: 36px;
}
.menu-notificaciones {
  position: relative;
  display: inline-block;
}

.tooltip-contenedor {
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-notificaciones:hover .tooltip-contenedor {
  opacity: 1;
  visibility: visible;
}

.menu-notificaciones:hover .campana-emoji {
  animation: sonar-campana 1.2s ease-in-out infinite;
  display: inline-block;
  font-size: 18px;
}

/* Animación profesional tipo campanita */
@keyframes sonar-campana {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(10deg); }
  40%  { transform: rotate(-8deg); }
  60%  { transform: rotate(5deg); }
  80%  { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}
/* Estado "proximamente" con estilo visual sutil */
.dt-sc-programs.proximamente {
  position: relative;
  filter: grayscale(100%);
  opacity: 0.8;
}

/* Títulos y descripción más grises */
.dt-sc-programs.proximamente .dt-sc-pro-title h3,
.dt-sc-programs.proximamente .dt-sc-pro-title span,
.dt-sc-programs.proximamente .dt-sc-pro-price p {
  color: #aaa !important;
}

/* Botón bloqueado reemplazando al botón real */
.bloqueo-prox {
  background-color: #2a2a2a;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 20px;
  pointer-events: none;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Login adds */

.login-container {
    display: flex;
    flex-direction: row;
    height: 100vh;
    overflow: hidden;
}

.login-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e1e1e;
    width: 57%;
    height: 100vh;
    overflow: hidden;
}


.login-image-container .login-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.login-form-container {
    display: flex; /* antes decía initial */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 60px 20px 260px;
    max-width: 460px;
    background-color: #1e1e1e;
}

.login-form-container .form-container {
    width: 100%;
}

.login-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #dc3545;
    font-size: 24px;
    min-width: 350px;     
}

.login-form-container input {
    background-color: #1e1e1e;
    color: #fff;
    border: 2px solid #555;
    border-radius: 8px;
    padding: 16px;
    width: 400px; /*  21-05-2025 antes 100%*/
    margin-bottom: 15px;
    font-size: 18px;
    box-sizing: border-box;
}

.login-form-container button {
    background-color: #dc3545;
    color: #fff;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 20px;
    transition: background-color 0.3s ease;
}
.login-form-container button:hover {
    background-color: #bb2d3b;
}


/* Logo en modo login */
.logo-login {
    max-width: 250px;
    margin: 50px 20px;
    display: block;
}

/* Versión responsive tipo app */
@media (max-width: 768px) {
    .login-image-container {
        display: none !important;
        visibility: hidden !important;
        position: absolute !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .login-image-container .login-image {
        display: none !important;
    }

    .login-container {
        padding: 40px 20px !important; /* ya está bien */
        flex-direction: column !important;
    }

    .login-form-container {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }

  .login-form-container .form-container {
    width: 100%;
    max-width: 380px; /* 👈 margen interno visual */
    padding: 25px 20px;
    margin: 0 auto;
    background-color: #2c2c2c;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
  }

    .login-form-container h2 {
        font-size: 24px;
        color: #dc3545;
        text-align: center;
        margin-bottom: 25px;
    }

    .login-form-container input {
        padding: 20px;
        font-size: 18px;
        border-radius: 10px;
        width: 350px /*  06-06-2025 se agrego */
    }

    .login-form-container button {
        padding: 16px;
        font-size: 20px;
        margin-top: 5px;
    }

    .registro-link .enlace-registro {
        font-size: 16px;
        margin-top: 15px;
    }

      .logo-login {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}
/* Ocultar por defecto en mobile */
.bio-hidden {
  display: none;
}

.bio-toggle-btn {
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  text-decoration: underline;
  padding: 4px 12px;
  display: inline-block;
}

/* Estilo especial para ese botón rojo sobrio */
.styled-toggle {
  background-color: #2a0000; /* fondo rojo oscuro */
  color: #dc3545;             /* rojo vibrante */
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover para efecto sutil */
.styled-toggle:hover {
  background-color: #3b0000;
  color: #ff5c5c;
}


/* Mostrar todo en escritorio */
@media screen and (min-width: 769px) {
  .bio-hidden {
    display: block !important;
  }

  .bio-visible {
    display: none;
  }

  .bio-toggle-btn-wrapper {
    display: none;
  }
}
.centered-small-btn {
  text-align: center;
}
.planes-premium-oculto {
  display: none !important;
}

.centered-small-btn .dt-sc-button.small {
  display: inline-block;
  text-align: center;
  min-width: 301px;       /* 👈 Evita que se haga mini */
  padding: 12px 20px;      /* 👈 Asegura cuerpo visual */
  box-sizing: border-box; /* 👈 Por si acaso */
}
/* Botón base estilo premium */
.btn-final {
  display: inline-block;
  background-color: #dc3545;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  margin: 20px auto;
  text-align: center;
  border: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-final:hover {
  background-color: #b80214;
  color: #fff;
  transform: scale(1.03);
  text-decoration: none;
}

/* Brillo animado */
.btn-brilla {
  animation: pulsoGlow 2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(220, 53, 69, 0.5), 0 0 30px rgba(220, 53, 69, 0.3);
}

@keyframes pulsoGlow {
  0% {
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.5), 0 0 25px rgba(220, 53, 69, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(220, 53, 69, 0.6), 0 0 35px rgba(220, 53, 69, 0.4);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.5), 0 0 25px rgba(220, 53, 69, 0.3);
    transform: scale(1);
  }
}
.planes-premium-oculto {
    display: none;
}

.planes-premium-visible {
    display: block;
}
.grid-videos.oculto {
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, height 0.6s ease;
}

.grid-videos.visible {
  opacity: 1;
  height: auto;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .full-add {
    margin-top: 30px; /* Ajusta el valor según el espacio deseado */
  }

  .full-add {
    margin-top: 30px !important;
    display: block !important;
    width: 100% !important;
  }

  .add1,
  .add2,
  .add3 {
    width: 100% !important;
    height: auto !important;
    display: block;
    text-align: center;
  }

  .add3 {
    margin-left: 0 !important;
    display: block;
    text-align: center;
    position: relative;
  }

  .add3 img {
    width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
    object-fit: cover;
  }

  .add3 .dt-sc-button {
    position: absolute !important;
    bottom: 20px;
    left: 15px;
    margin: 0;
    display: inline-block;
  }
}
.dt-sc-button.disabled {
  background-color: #999 !important;
  color: #fff !important;
  cursor: not-allowed;
  opacity: 0.7;
  box-shadow: none;
}
.dt-sc-button.disabled:hover,
.dt-sc-button.disabled:hover::before,
.dt-sc-button.disabled:hover::after {
  content: none !important;
  background: #999 !important;
  color: #fff !important;
  transform: none !important;
  position: static !important;
  box-shadow: none !important;
}
.bio-ronney .bio-toggle-btn {
  display: inline-block;
  margin-top: 10px;
}


/*    VIDEOS PREMIUM PEDRO   */

.video-title-negro {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}
  .switch-modelo {
    position: relative;
    display: inline-block;
    width: 3.25rem;
    height: 1.6rem;
  }

  .switch-modelo input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider-modelo {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #e85b93; /* Mujer */
    transition: background-color 0.4s ease;
    border-radius: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #fff;
    padding: 0 0.6rem;
    box-sizing: border-box;
  }

  .slider-modelo::before {
    content: "";
    position: absolute;
    height: 1.2rem;
    width: 1.2rem;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    transition: transform 0.4s ease;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 2;
  }

  .switch-modelo input:checked + .slider-modelo {
    background-color: #3c8edb; /* Hombre */
    justify-content: flex-start;
  }

  .switch-modelo input:checked + .slider-modelo::before {
    transform: translate(1.65rem, -50%);
  }

  .texto-modelo {
    font-size: 1rem;
    color: #eee;
  }

  @media screen and (max-width: 500px) {
    .switch-modelo {
      width: 2.8rem;
      height: 1.4rem;
    }

    .slider-modelo {
      padding: 0 0.5rem;
      font-size: 0.85rem;
    }

    .slider-modelo::before {
      height: 1rem;
      width: 1rem;
    }

    .switch-modelo input:checked + .slider-modelo::before {
      transform: translate(1.4rem, -50%);
    }

    .texto-modelo {
      font-size: 0.9rem;
    }
  }
  @media screen and (max-width: 768px) {
  .toggle-modelo-container {
    width: 100%;
    justify-content: flex-start;
    margin-top: 10px;
    padding-left: 2px;
  }

  .toggle-modelo-container + h2 {
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  html.modal-chat-open,
  body.modal-chat-open {
    overflow: hidden !important;
    width: 100%;
    height: 100%;
  }
}
.destacado-kinafit {
  background-color: #ffeef0; /* rosa saludable suave */
  color: #d60027;            /* rojo KinaFit */
  padding: 6px 16px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(214, 0, 39, 0.2);
  letter-spacing: 0.2px;
}
