*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

html{ -webkit-text-size-adjust:100%; }

body{
  background:#ffffff;
  overflow-x:hidden;
}

/* ================= LOADER ================= */

#loaderOverlay{
  position:fixed;
  inset:0;
  background:#ffffff;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  z-index:9999;
  transition:1s;
}

.logoRow{ display:flex; gap:40px; margin-bottom:20px; }
.loader{ position:relative; width:80px; height:80px; }
.loader svg{ width:100%; height:100%; }

.loader path,
.loader circle{
  fill:none;
  stroke:#000;
  stroke-width:6px;
  stroke-dasharray:220;
  stroke-dashoffset:220;
  animation:draw 1.4s linear infinite;
}

.dot{
  position:absolute;
  width:8px;
  height:8px;
  background:#002b5c;
  border-radius:50%;
  animation:follow 1.4s linear infinite;
}

.loadingText{
  color:#000;
  font-size:22px;
  letter-spacing:4px;
  animation:fadeText 1.5s infinite;
}

@keyframes draw{ to{stroke-dashoffset:0;} }
@keyframes follow{
  0%  {transform:translate(10px,70px);}
  33% {transform:translate(40px,20px);}
  66% {transform:translate(70px,70px);}
  100%{transform:translate(10px,70px);}
}
@keyframes fadeText{
  0%  {opacity:0;}
  50% {opacity:1;}
  100%{opacity:0;}
}

#loaderOverlay.zoomOut{
  opacity:0;
  pointer-events:none;
}

/* ================= APP ================= */

.app{
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:stretch;
  background:#ffffff;
}

/* ================= IZQUIERDA ================= */

.left{
  flex:1 1 auto;
  min-width:0;
  min-height:100vh;
  position:relative;
  overflow:hidden;
  background:#0a2347;
  display:flex;
  justify-content:center;
  align-items:center;
}

.left::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("../assets/MDO DENTAL TRAINING CENTER PORTADA 2026.png");
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center center;
  transform:scale(1.15);
  filter:blur(30px) brightness(.7) saturate(115%);
  z-index:0;
}

.left-image-wrap{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.left img{
  width:100%;
  height:auto;
  max-height:100%;
  display:block;
  object-fit:contain;
  pointer-events:none;
}

/* ================= REDES ================= */

.social-glass{
  position:absolute;
  z-index:3;
  left:50%;
  transform:translateX(-50%);
  bottom:14px;
  background:rgba(0, 0, 0, 0.42);
  border-radius:30px;
  padding:5px 14px;
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
  box-shadow:0 10px 22px rgba(0,0,0,.15);
}

.social-container{ display:flex; gap:18px; }

.social-card{
  position:relative;
  width:44px;
  height:44px;
  background:#f1f1f1;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  cursor:pointer;
  transition:all .25s ease;
  transform:scale(.9);
}

.social-card i{ font-size:16px; color:#000; }

.tooltip{
  position:absolute;
  top:-42px;
  background:#000000;
  color:#ffffff;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  opacity:0;
  pointer-events:none;
  transition:.25s;
  white-space:nowrap;
}

.tooltip::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:50%;
  transform:translateX(-50%);
  border-width:6px 6px 0;
  border-style:solid;
  border-color:#000000 transparent transparent;
}

.social-card:hover{ transform:scale(1.1); }
.social-card:hover .tooltip{ opacity:1; top:-52px; }

.facebook:hover{ background:#1877f2; }
.facebook:hover i{ color:#ffffff; }
.tiktok:hover{ background:#000000; }
.tiktok:hover i{ color:#ffffff; }
.instagram:hover{ background:#e1306c; }
.instagram:hover i{ color:#ffffff; }
.whatsapp:hover{ background:#25d366; }
.whatsapp:hover i{ color:#ffffff; }

/* ================= DERECHA (MÁS ANCHA) ================= */

.right{
  width:38%;
  max-width:520px;
  min-width:360px;
  background:#ffffff;
  padding:clamp(26px, 2.2vw, 40px) clamp(26px, 2.2vw, 40px);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  min-height:100vh;
}

.right h1{
  color:#0f1a2e;
  margin-bottom:10px;
  font-size:clamp(24px, 2.2vw, 32px);
  line-height:1.2;
  font-weight:700;
}

.subtitle{
  color:#5a6477;
  font-size:13.5px;
  line-height:1.55;
  margin-bottom:28px;
}

.screen{
  width:min(100%, 560px);
  max-width:560px;
}

/* ================= FORMULARIOS ================= */

.form-personal,
.modalidad-form{
  display:flex;
  flex-direction:column;
  gap:24px;
  margin-top:6px;
}

.campo{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.campo label{
  font-size:13.5px;
  color:#1d2a3d;
  line-height:1.45;
  font-weight:500;
}

.label-fuerte{
  font-weight:700;
  font-size:14.5px;
  color:#0f1a2e;
}

/* ===== INPUTS ===== */

.input-line{
  width:min(100%, 28ch);
  max-width:100%;
  background:transparent;
  border:none;
  border-bottom:2px solid #1d2a3d;
  padding:8px 2px;
  font-size:14px;
  outline:none;
  transition:.3s;
  display:block;
  color:#0f1a2e;
}

.input-line:hover{ border-bottom:2px solid #0052af; }
.input-line:focus{
  border-bottom:2px solid #0052af;
  box-shadow:0 2px 12px rgba(0,82,175,0.27);
}
.input-line:disabled{
  opacity:.4;
  cursor:not-allowed;
  border-bottom:2px dashed #b9c1cc;
}

.ancho-medio{ width:min(100%, 34ch); }
#nombreCompleto{ width:min(100%, 34ch); }

.texto-ayuda{
  width:100%;
  max-width:500px;
  font-size:12.5px;
  color:#6b7280;
  line-height:1.5;
  margin-top:-2px;
}

/* ================= SECCIÓN INTENCIÓN ================= */

.seccion-intencion{
  margin-top:30px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.intencion-grid{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:10px;
}

.intencion-card{
  position:relative;
  display:grid;
  grid-template-columns:42px 1fr 28px;
  align-items:center;
  gap:14px;
  cursor:pointer;
  border-radius:14px;
  border:2px solid #e2e7ee;
  background:#fff;
  padding:14px 18px;
  transition:all .25s ease;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.intencion-card input[type="radio"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
  width:0;
  height:0;
}

.intencion-ico{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eaf1fb;
  border-radius:10px;
  transition:.25s;
  color:#0052af;
  font-size:17px;
  line-height:1;
}

.intencion-ico i{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  font-size:17px;
}

.intencion-title{
  font-weight:600;
  color:#0f1a2e;
  font-size:14.5px;
  line-height:1.3;
}

.intencion-check{
  width:26px;
  height:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#dde3ec;
  color:#fff;
  font-size:11px;
  line-height:1;
  transition:.25s;
}

.intencion-check i{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  font-size:11px;
  opacity:.55;
}

.intencion-card:hover{
  border-color:#0052af;
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(0,82,175,.10);
}

.intencion-card.activo{
  border-color:#0052af;
  background:#f4f8fe;
  box-shadow:0 10px 22px rgba(0,82,175,.16);
}

.intencion-card.activo .intencion-ico{
  background:#0052af;
  color:#fff;
}

.intencion-card.activo .intencion-check{
  background:#0052af;
}

.intencion-card.activo .intencion-check i{
  opacity:1;
}

/* ================= BOTONES PRINCIPALES ================= */

.send-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:fit-content;
  width:auto;
  max-width:100%;
  height:46px;
  padding:0 22px;
  border:2px solid #000;
  background:#000;
  color:#fff;
  letter-spacing:1px;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  margin-top:0;
  border-radius:10px;
  transition:transform .2s ease, box-shadow .25s ease, border-color .25s ease;
  white-space:nowrap;
}

#continueBtn{ margin-top:30px; }

.send-btn span{
  position:relative;
  z-index:2;
  font-weight:600;
  font-size:13.5px;
  text-align:center;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.send-btn::after{
  content:"";
  position:absolute;
  inset:0;
  width:0;
  background:#0052af;
  transition:.35s ease;
  z-index:1;
}

.send-btn:hover::after{ width:100%; }
.send-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,0,0,0.12);
}
.send-btn:active{ transform:scale(.98); }
.send-btn:disabled{
  opacity:.55;
  cursor:not-allowed;
  pointer-events:none;
}

.secondary-btn{
  background:linear-gradient(135deg,#111,#2f2f2f);
  color:#fff;
  border-color:#111;
}

.secondary-btn:hover{ box-shadow:0 12px 25px rgba(0,0,0,.14); }
.secondary-btn:active{ transform:scale(.98); }

/* ================= BOTÓN FINALIZAR (mismo estilo que Regresar + entrada suave) ================= */

.finalizar-btn{
  background:linear-gradient(135deg,#111,#2f2f2f);
  color:#fff;
  border-color:#111;
  animation:finalizarPop .45s ease both;
}

.finalizar-btn::after{ background:#0052af; }

.finalizar-btn:hover{ box-shadow:0 12px 25px rgba(0,0,0,.14); }
.finalizar-btn:active{ transform:scale(.98); }

@keyframes finalizarPop{
  0%   { opacity:0; transform:translateY(8px) scale(.96); }
  60%  { opacity:1; transform:translateY(-1px) scale(1.02); }
  100% { opacity:1; transform:translateY(0) scale(1); }
}

/* ================= CATEGORÍAS ================= */

.bloque-dinamico,
.opciones-dinamicas{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:4px;
}

.botones-categoria{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:8px;
  align-items:center;
  justify-content:flex-start;
}

.categoria-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:fit-content;
  width:auto;
  max-width:100%;
  padding:10px 16px;
  border-radius:10px;
  border:1.8px solid #cfd6df;
  background:#fff;
  color:#1d2a3d;
  font-size:13px;
  font-weight:600;
  line-height:1.25;
  text-align:center;
  cursor:pointer;
  transition:all .25s ease;
  box-shadow:0 4px 14px rgba(0,0,0,.05);
  white-space:normal;
  flex:0 0 auto;
}

.categoria-btn:hover{
  transform:translateY(-1px);
  border-color:#0052af;
  color:#0052af;
}

.categoria-btn.activo{
  background:#0052af;
  border-color:#0052af;
  color:#fff;
  box-shadow:0 8px 18px rgba(0,82,175,.18);
}

.botones-pop .categoria-btn{
  opacity:0;
  transform:translateY(8px) scale(.92);
  animation:popIn .45s cubic-bezier(.18,.89,.32,1.28) forwards;
}

@keyframes popIn{
  0%   { opacity:0; transform:translateY(8px) scale(.92); }
  60%  { opacity:1; transform:translateY(-2px) scale(1.04); }
  100% { opacity:1; transform:translateY(0) scale(1); }
}

/* ================= CHECKBOX ================= */

.diplomado-confirmacion{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  max-width:500px;
  font-size:13.5px;
  margin-top:6px;
}

.diplomado-confirmacion label{
  cursor:pointer;
  line-height:1.5;
  flex:1;
  min-width:200px;
}

.check-azul{
  width:18px;
  height:18px;
  accent-color:#0052af;
  cursor:pointer;
  flex-shrink:0;
}

/* ================= ALERTAS / AVISOS ================= */

.alerta-full-day{
  width:100%;
  max-width:500px;
  background:#fff4f4;
  border:1px solid #e3b1b1;
  border-left:4px solid #c44545;
  color:#7a2929;
  padding:14px 16px;
  border-radius:12px;
  font-size:13px;
  line-height:1.6;
  margin-bottom:18px;
}

.alerta-full-day strong{
  color:#7a2929;
  display:block;
  margin-bottom:4px;
}

.aviso-general{
  position:relative;
  width:100%;
  max-width:500px;
  background:#fff8eb;
  border:1px solid #f0d68a;
  border-left:4px solid #e6a700;
  color:#5b4400;
  padding:14px 16px 14px 50px;
  border-radius:12px;
  font-size:13px;
  line-height:1.55;
}

.aviso-icon{
  position:absolute;
  left:16px;
  top:16px;
  font-size:18px;
  color:#c98400;
}

.aviso-general strong{ color:#3d2e00; }

/* ================= MOTIVACIONAL / INFO ================= */

.motivacional-box{
  position:relative;
  width:100%;
  max-width:500px;
  background:linear-gradient(135deg, #eaf1fb 0%, #f4f8fe 100%);
  border:1px solid #d3e0f3;
  border-left:4px solid #0052af;
  border-radius:14px;
  padding:18px 18px 18px 56px;
  font-size:13.5px;
  line-height:1.6;
  color:#1d2a3d;
}

.motivacional-icon{
  position:absolute;
  left:18px;
  top:20px;
  font-size:20px;
  color:#0052af;
}

.motivacional-box strong{ color:#0052af; }

/* ================= FELICITACIONES ================= */

.felicidades-box{
  width:100%;
  max-width:500px;
  background:#f0f8ff;
  border:1px solid #b8d7f7;
  border-left:4px solid #0052af;
  border-radius:12px;
  padding:16px 18px;
  font-size:13.5px;
  line-height:1.6;
  color:#0a3470;
  animation:fadeSlide .45s ease forwards;
}

.felicidades-box strong{ color:#0052af; }

.felicidades-titulo{
  font-size:14.5px;
  font-weight:700;
  color:#0a3470;
  margin-bottom:6px;
  display:block;
}

.felicidades-instruccion{
  margin-top:10px;
  padding-top:10px;
  border-top:1px dashed #b8d7f7;
}

.felicidades-instruccion strong{
  color:#0a3470;
}

@keyframes fadeSlide{
  from{ opacity:0; transform:translateY(8px); }
  to  { opacity:1; transform:translateY(0); }
}

/* ================= ASESORES ================= */

.asesores-zone{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:8px;
}

.asesores-zone .label-fuerte{ margin-bottom:4px; }

.asesor-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:12px;
  max-width:500px;
}

.asesor-card-cell{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.asesor-card{
  background:#fff;
  border:1.8px solid #cfd6df;
  border-radius:12px;
  padding:12px 14px;
  cursor:pointer;
  transition:all .25s ease;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
  text-align:left;
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
  overflow:hidden;
  animation:popIn .45s cubic-bezier(.18,.89,.32,1.28) both;
}

.asesor-avatar{
  width:40px;
  height:40px;
  background:#eaf1fb;
  color:#0052af;
  font-weight:700;
  font-size:15px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:.25s;
}

.asesor-info{
  display:flex;
  flex-direction:column;
  gap:2px;
  flex:1;
  min-width:0;
}

.asesor-nombre{
  font-weight:700;
  color:#0f1a2e;
  font-size:14px;
}

.asesor-rol{
  font-size:11.5px;
  color:#6b7280;
}

.asesor-card:hover{
  border-color:#0052af;
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(0,82,175,.12);
}

.asesor-card.activo{
  border-color:#0052af;
  background:#f4f8fe;
  box-shadow:0 8px 18px rgba(0,82,175,.18);
}

.asesor-card.activo .asesor-avatar{
  background:#0052af;
  color:#fff;
}

.asesor-wa-wrap{
  margin-top:2px;
  animation:fadeSlide .35s ease both;
}

.asesor-wa-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#0052af;
  color:#fff;
  border:none;
  padding:11px 16px;
  border-radius:10px;
  font-size:13.5px;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  transition:.25s;
  box-shadow:0 8px 18px rgba(0,82,175,.22);
  width:100%;
  justify-content:center;
}

.asesor-wa-btn:hover{
  background:#003a80;
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(0,82,175,.3);
}

.asesor-wa-btn i{ font-size:16px; }

/* ================= DIVIDER ================= */

.divider-blue{
  width:100%;
  max-width:500px;
  height:2px;
  background:#0052af;
  border-radius:999px;
  margin:20px 0 10px;
  opacity:.9;
}

/* ================= ACCIONES DOBLES ================= */

.acciones-dobles{
  display:flex;
  gap:10px;
  margin-top:24px;
  flex-wrap:wrap;
  align-items:center;
}

.acciones-dobles .send-btn{
  margin-top:0;
}

.final-zone{
  margin-top:14px;
  animation:fadeSlide .4s ease both;
}

.final-zone .texto-ayuda{
  margin-bottom:0;
  font-size:13px;
  color:#444;
  display:none;
}

/* ================= SUCCESS CARD ================= */

.success-card{
  background:#f7fbff;
  border:1px solid #d7ebff;
  border-radius:16px;
  padding:32px 26px;
  text-align:center;
  width:100%;
  max-width:500px;
  margin-top:40px;
  animation:fadeSlide .5s ease both;
}

.check-container{
  display:flex;
  justify-content:center;
  margin-bottom:14px;
}

.checkmark{
  width:78px;
  height:78px;
}

.success-card h2{
  font-size:clamp(20px, 1.8vw, 26px);
  line-height:1.35;
  color:#0052af;
  margin-top:8px;
}

.success-card p{
  margin-top:10px;
  color:#333;
  font-size:14px;
  line-height:1.55;
}

/* ================= SPINNER DE CARGA ================= */

.spinner{
  width:16px;
  height:16px;
  border:3px solid rgba(255,255,255,0.35);
  border-top:3px solid #fff;
  border-radius:50%;
  animation:spin .8s linear infinite;
  display:inline-block;
}

@keyframes spin{ to{transform:rotate(360deg);} }

/* ================= LAPTOP ================= */

@media (min-width: 1024px){
  .app{ align-items:flex-start; }

  .left{
    position:sticky;
    top:0;
    height:100vh;
    align-self:flex-start;
  }

  .right{ min-height:auto; }
}

/* ================================================================
   ============= AGREGADO v1.5: GRUPO + PANTALLA FINAL =============
   ================================================================ */

#grupoInput.ancho-grupo{
  width:160px;
  max-width:17%;
}

#finalScreen.final-screen{
  flex-direction:column;
  justify-content:center;
  align-items:center;
  min-height:90vh;
  width:100%;
  padding:20px 0;
}

#finalScreen.final-screen .success-card{
  margin-top:0;
  max-width:520px;
  padding:36px 28px;
  animation:fadeInUp .8s ease;
}

#finalTitulo{
  text-align:center;
  animation:fadeInUp .9s ease;
}

#finalTitulo strong{
  color:#002b5c;
}

#finalMensaje{
  padding:6px 12px;
  text-align:justify;
  animation:fadeInUp 1s ease;
}

#finalMensaje strong{
  color:#0052af;
}

#finalDetalles{
  animation:fadeInUp 1.1s ease;
}

@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.checkmark-animated{
  width:74px;
  height:74px;
  display:block;
  margin:0 auto;
}

.checkmark-circle{
  stroke-dasharray:166;
  stroke-dashoffset:166;
  animation:drawCircle .8s ease forwards;
}

.checkmark-check{
  stroke-dasharray:48;
  stroke-dashoffset:48;
  animation:drawCheck .4s .8s ease forwards;
}

@keyframes drawCircle{
  to{stroke-dashoffset:0;}
}

@keyframes drawCheck{
  to{stroke-dashoffset:0;}
}

.detalle-asesor{
  margin-top:20px;
  padding:10px 14px;
  background:#f7fbff;
  border:1px solid #d7ebff;
  border-radius:14px;
  font-size:13px;
  color:#1a1a1a;
  line-height:1.65;
  text-align:left;
  box-shadow:0 4px 12px rgba(0,82,175,0.06);
}

.detalle-asesor strong{
  color:#0052af;
  font-weight:700;
}

.mensajes-rotativos{
  margin-top:24px;
  min-height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 8px;
}

.mensaje-rotativo{
  display:block;
  font-size:13.5px;
  color:#0052af;
  line-height:1.55;
  text-align:center;
  font-weight:500;
  font-style:italic;
  transition:opacity .4s ease, transform .4s ease;
  padding:0 6px;
  opacity:0;
  transform:translateY(8px);
}

.mensaje-rotativo.visible{
  opacity:1;
  transform:translateY(0);
}

.mensaje-rotativo.oculto{
  opacity:0;
  transform:translateY(-8px);
}

/* ================================================================
   ============= AGREGADO v1.8: ADVERTENCIA SUAVE + CHECKBOX MDO +
                 DESPLEGABLE + INPUT FULL DAY + ASESORES 1 POR 1
   ================================================================ */

/* ================= ADVERTENCIA COMPACTA (fondo suave, palabra Full Day en MDO) ================= */

.advertencia-compacta{
  display:flex;
  align-items:flex-start;
  gap:10px;
  background:#fff9f0;
  border:1px solid #f5d5a8;
  border-left:4px solid #e89938;
  border-radius:10px;
  padding:11px 14px;
  margin-top:10px;
  font-size:13px;
  line-height:1.5;
  color:#6b4a1c;
  animation:fadeInAdvertencia .35s ease;
}

.advertencia-icono{
  font-size:18px;
  flex-shrink:0;
  line-height:1;
}

.advertencia-texto{
  flex:1;
}

.advertencia-texto strong{
  color:#6b4a1c;
  font-weight:700;
}

@keyframes fadeInAdvertencia{
  from{opacity:0; transform:translateY(-4px);}
  to{opacity:1; transform:translateY(0);}
}

/* ================= DESPLEGABLE OTROS ASESORES ================= */

.otros-asesores-wrap{
  margin-top:14px;
}

.otros-asesores-btn{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  background:#f7fbff;
  border:1px solid #d7ebff;
  border-radius:10px;
  padding:11px 14px;
  font-size:13.5px;
  color:#0052af;
  font-weight:600;
  cursor:pointer;
  transition:all .2s ease;
  font-family:inherit;
}

.otros-asesores-btn:hover{
  background:#e8f1fb;
  border-color:#0052af;
}

.otros-asesores-btn.activo{
  background:#0052af;
  color:#fff;
  border-color:#0052af;
}

.otros-asesores-btn .toggle-icon{
  font-size:11px;
  transition:transform .2s ease;
}

.otros-asesores-contenido{
  margin-top:10px;
  animation:fadeInAdvertencia .35s ease;
}

/* ================= INPUT FULL DAY (después del checkbox) ================= */

.full-day-input-wrap{
  animation:fadeInAdvertencia .4s ease;
}

.full-day-input-label{
  display:block;
  font-size:13.5px;
  color:#1a1a1a;
  font-weight:600;
  margin-bottom:8px;
}

/* ================= CONFIRMACIÓN CHECKBOX (fondo MDO muy suave, check negro/aspa blanca) ================= */

.confirmacion-box{
  background:#f0f6fd;
  border:1px solid #c8dcf2;
  border-radius:10px;
  padding:12px 14px;
  animation:fadeInAdvertencia .35s ease;
}

.confirmacion-label{
  display:flex;
  align-items:center  ;
  gap:10px;
  cursor:pointer;
  font-size:14px;
  line-height:1.5;
  color:#1d2a3d;
}

/* Checkbox custom: cuadro negro con aspa blanca al marcar */
.confirmacion-label input[type="checkbox"]{
  appearance:none;
  -webkit-appearance:none;
  width:20px;
  height:20px;
  border:2px solid #000;
  border-radius:4px;
  cursor:pointer;
  flex-shrink:0;
  background:#fff;
  position:relative;
  transition:.2s;
}

.confirmacion-label input[type="checkbox"]:hover{
  border-color:#0052af;
}

.confirmacion-label input[type="checkbox"]:checked{
  background:#000;
  border-color:#000;
}

/* Aspa blanca PERFECTAMENTE centrada */
.confirmacion-label input[type="checkbox"]:checked::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:5px;
  height:10px;
  border:solid #fff;
  border-width:0 2px 2px 0;
  transform:translate(-50%, -60%) rotate(45deg);
}

.confirmacion-label input[type="checkbox"]:hover{
  border-color:#0052af;
}

.confirmacion-label input[type="checkbox"]:checked{
  background:#000;
  border-color:#000;
}

.confirmacion-label input[type="checkbox"]:checked::after{
  content:"";
  position:absolute;
  left:4px;
  top:1px;
  width:6px;
  height:10px;
  border:solid #fff;
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}

/* ================= ASESORES UNO POR UNO (Full Day) ================= */

.asesores-uno-por-uno .asesor-grid{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:500px;
}

.asesores-uno-por-uno .asesor-card-cell{
  width:100%;
}

/* ================= PALABRA PREMIUM "Full Day" en color MDO ================= */

.premium-word{
  color:#0052af;
  font-weight:800;
  letter-spacing:.3px;
}



/* ================================================================
   ============= AGREGADO v1.9: PANTALLA "NO DESEO" =============
   ================================================================ */

/* Textarea de comentario libre */
.text-comentario{
  width:100%;
  max-width:500px;
  background:#fff;
  border:1.8px solid #cfd6df;
  color:#0f1a2e;
  font-size:14px;
  padding:12px 14px;
  resize:vertical;
  outline:none;
  border-radius:10px;
  font-family:Arial, sans-serif;
  min-height:90px;
  line-height:1.5;
  transition:.25s;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.text-comentario:hover,
.text-comentario:focus{
  border-color:#0052af;
  box-shadow:0 4px 16px rgba(0,82,175,.12);
}

/* Botones de motivo alineados a la izquierda */
.motivo-btn{
  text-align:left;
}

/* ==========================
   COMENTARIO DEL USUARIO
   ========================== */

.comentario-final{
    margin-top:18px;
    padding:16px 18px;
    background:#f8fbff;
    border:1px solid #d8e7fb;
    border-radius:14px;
    text-align:left;
    line-height:1.7;
    font-size:14px;
    color:#2c3e50;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
}

.comentario-final strong{
    display:block;
    color:#0a56b5;
    margin-bottom:8px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.5px;
}
