/* Hoja de estilos final para los popups IMTLazarus */

/* ================================
   Estilos comunes a todos los popups
   ================================ */
   #imt_release_school {
    position: fixed;
    background: white;
    box-shadow:
      rgba(0, 0, 0, 0.1) 0px 4px 12px,
      rgba(0, 0, 0, 0.05) 0px 2px 6px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    color: #000;
    text-align: center;
    box-sizing: border-box;
    z-index: 9999999999;
  }
  
  #imt_release_school > img#icon-main {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: auto;
  }
  
  #imt_release_school > img#icon-size {
    height: auto;
  }
  
  
/* ==============================================
   Popup Pequeño — .small (440×360px)
   ============================================== */
   #imt_release_school.small {
    width: 440px;
    height: 360px;
    padding: 32px;                 /* Padding: 32px */
    bottom: 30px;
    right: 30px;
    border-radius: 12px;
    box-sizing: border-box;
    animation: small-appear 0.4s ease forwards;
    text-align: center;
  }
  
  @keyframes small-appear {
    from { opacity: 0; transform: translateY(50px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  #imt_release_school.small .small-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;                     /* Espacio entre “Hola” y el icono */
    margin-bottom: 19px;         
  }
  
  /* Título “Hola” */
  #imt_release_school.small .small-header > h1 {
    margin: 0;
    font-weight: 900;             
    font-size: 40px;              
    color: #000;
  }
  
  /* Icono de mano a la derecha */
  #imt_release_school.small .small-header > img#icon-size {
    width: 110px;                 
    height: auto;
  }
  
  /* Cuerpo del mensaje */
  #imt_release_school.small > div {
    margin: 0 0 26px;           
    font-weight: 400;             
    font-size: 16px;             
    color: #000;
  }
  
  #imt_release_school.small > button {
    display: block;
    width: 248px;               
    height: 50px;
    margin: 0 auto 16px;         
    background: #28A745;
    border: none;
    border-radius: 25px;          
    font-weight: 700;           
    font-size: 16px;             
    color: #FFF;
    cursor: pointer;
  }
  
  /* Logo IMT (fijo abajo-derecha) */
  #imt_release_school.small > img#icon-main {
    position: absolute;
    bottom: 40px;                
    right: 12px;
    width: 36px;
    height: auto;
  }
      
  /* ==============================================
     Popup Mediano — .medium (720×440px)
     ============================================== */
  #imt_release_school.medium {
    width: 720px;
    height: 440px;
    padding: 40px 48px;
    bottom: 40px;
    right: 40px;
    border-radius: 16px;
    animation: small-appear 0.4s ease forwards;
  }
  
  #imt_release_school.medium > img#icon-size {
    display: block;
    margin: 0 auto 20px;
    width: 96px;
  }
  
  #imt_release_school.medium > h1 {
    margin: 0 0 20px;
    font-weight: 900;
    font-size: 28px;
  }
  
  #imt_release_school.medium > div {
    margin: 0 0 32px;
    font-weight: 400;
    font-size: 20px;
  }
  
  #imt_release_school.medium > button {
    width: 360px;
    height: 66px;
    background: #28A745;
    border: none;
    border-radius: 33px;
    font-weight: 700;
    font-size: 22px;
    color: #FFF;
    cursor: pointer;
  }

/* ==============================================
   Popup Grande — .large (adaptativo para PC y tablet)
   ============================================== */
   #imt_release_school.large {
    width: 90vw;
/* max-width: 800px;
    height: auto;*/ 
    height: 60vh;
    padding: 5vh 4vw;
    position: fixed;
    bottom: 5vh;
    right: 4vw;
    box-sizing: border-box;
    background: white;
    border-radius: 16px;
    box-shadow:
      rgba(0, 0, 0, 0.1) 0px 8px 20px,
      rgba(0, 0, 0, 0.05) 0px 4px 10px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #000;
    z-index: 9999999999;
    animation: small-appear 0.4s ease forwards;
  }
  
  /* Icono alerta */
  #imt_release_school.large > img#icon-size {
    display: block;
    margin: 0 auto 4vh;
    width: 12vw;
    max-width: 120px;
    height: auto;
  }
  
  /* Título */
  #imt_release_school.large > h1 {
    margin: 0 0 2vh;
    font-weight: 700;
    /* de 20px mínimo, escala con el ancho y no pase de 32px */
    font-size: clamp(26px, 3.5vw, 32px);
  }
  
  /* Texto del cuerpo */
  #imt_release_school.large > div {
    margin: 0 0 4vh;
    font-weight: 400;
    /* de 16px mínimo, escala con el ancho y no pase de 24px */
    font-size: clamp(20px, 3vw, 24px);
  }
  
  /* Botón */
  #imt_release_school.large > button {
    display: block;
    width: 50vw;
    max-width: 480px;
    height: 8vh;
    max-height: 84px;
    margin: 0 auto 5vh;
    background: #28A745;
    border: none;
    border-radius: 32px;
    font-weight: 700;
    /* de 16px mínimo, escala con el ancho y no pase de 24px */
    font-size: clamp(20px, 3.5vw, 24px);
    color: #FFF;
    cursor: pointer;
  }
  
  /* Logo IMT (abajo-derecha) */
  #imt_release_school.large > img#icon-main {
    position: absolute;
    bottom: 5vh;
    right: 4vw;
    width: 6vw;
    max-width: 48px;
    height: auto;
  }
          
  