
/* POP UP Career Quiz */
.container_popup_career_quiz{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
  }
  .container_popup_career_quiz.active{
    display: flex;
  }
  .content_popup_career_quiz{
    display: flex;
    flex-direction: column;
    padding: 48px 24px 64px 24px;
    align-items: center;
    gap: 16px;
    background-color: #fff;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  .content_popup_career_quiz .topics{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 504px;
  
  }
  .content_popup_career_quiz .typeform {
      display: flex;
      justify-content: center;
  }
  .content_popup_career_quiz .topics .topic{
    color: #000000;
      font-size: 32px;
      font-family: 'YSText', Arial, sans-serif;
      line-height: 1.05;
      font-weight: 600;
  }
  .content_popup_career_quiz .topics .topic p{
    display: flex;
    align-items: center;
  }
  .content_popup_career_quiz .topics .topic span img{
    width: 40px;
    height: 40px;
  }
  
  /* Pop Up Modal Inicial */
  .container_popup_inicial{
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      justify-content: center;
      align-items: center;
      z-index: 9999;
  }
  .container_popup_inicial.active{
      display: flex;
  }
  .content_popup_inicial{
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      padding: 44px 28px 100px;
      min-height: 564px;
      background: #1a1a1a;
      max-width: 883px;
      position: relative;
      border-radius: 16px;
      animation: popupFadeIn 0.3s ease-out;
  }
  .content_popup_inicial .close_popup{
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      cursor: pointer;
      background: transparent;
      border: none;
      color: #fff;
      font-size: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .content_popup_inicial .close_popup:hover{
      opacity: 0.7;
  }
  @keyframes popupFadeIn {
      from {
          opacity: 0;
          transform: scale(0.9);
      }
      to {
          opacity: 1;
          transform: scale(1);
      }
  }
  .content_popup_inicial .title h1{
      font-size: 80px;
      line-height: 90%;
      text-align: center;
      font-weight: 700;
      font-family: Gramatika, YSText, Arial, sans-serif;
      color: #fff;
  }
  .content_popup_inicial .title span{
      color: #f48e00;
  }
  .content_popup_inicial .subtitle p{
      font-size: 18px;
      line-height: 26px;
      text-align: center;
      max-width: 400px;
      margin: 16px auto;
      font-family: Suisse Intl, YSText, Arial, sans-serif;
      font-weight: 500;
      color: #fff;
  }
  .content_popup_inicial .cta_promo{
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      border: none;
      border-radius: 12px;
      padding: 2px 24px 0;
      max-width: 220px;
      margin-inline: auto;
      border-bottom: 2px solid #FFA800;
      background: #ffa800;
      color: #1a1a1a;
      box-shadow: 0 0 16px #fabb42b8;
      position: relative;
      overflow: hidden;
      height: 56px;
      cursor: pointer;
      z-index: 100;
  }
  .content_popup_inicial .cta_promo a{
      font-weight: 500;
      font-size: 16px;
      color: #1a1a1a;
      text-align: center;
      font-family: Suisse Intl, YSText, Arial, sans-serif;
      text-decoration: none;
  }
  .content_popup_inicial img{
      width: 884px;
      position: absolute;
      right: -0%;
      top: 57.1%;
      z-index: 10;
  }