
* {
    box-sizing: border-box;
  }
  /* Estilos responsivos para o SweetAlert2 */
  @media (max-width: 767px) {
    /* estilos para dispositivos com tela menor que 768px */
    .swal2-popup {
      font-size: 14px !important;
      width: 90% !important;
      align-items: center;
    }
  
    .swal2-input {
      font-size: 14px !important;
    }
  
    textarea {
      width: 100%;
      max-width: 320px;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
  /* estilos para dispositivos com tela entre 768px e 991px */
  .swal2-popup {
  font-size: 16px !important;
  width: 70% !important;
  align-items: center;
  }
  
  .swal2-input {
  font-size: 16px !important;
  }
  }
  
  @media (min-width: 992px) {
  /* estilos para dispositivos com tela maior que 992px */
  .swal2-popup {
  font-size: 18px !important;
  width: 60% !important;
  align-items: center;
  }
  
  .swal2-input {
  font-size: 18px !important;
  }
  }
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f7f7;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 0;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    height:100vh;
      display:flex;
      flex-direction:column;
      justify-content:center;
  
  }
  .container p {
    text-align: center;
  } 

  h1 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    color: #444;
  }
  
  h2 {
    text-align: center;
    font-size: 18px;
  }
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  
  label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #666;
  }
  
  textarea {
    width: 100%;
    max-width: 800px;
    height: 200px;
    padding: 12px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    border: none;
    border-bottom: 2px solid #ccc;
    resize: none;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
  }
  
  input[type=text]:focus {
    border-color: #3f51b5;
  }
  
  button[type=submit] {
    background-color: #3f51b5;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button[type=submit]:hover {
    background-color: #2c387e;
    
  }
  
  #score {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #444;
    font-size: 18px;
    text-align: center;
  }
  .score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #3f51b5;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  .score-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3f51b5;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .score-text {
    text-align: center;
    font-size: 14px;
  }
  .score-red {
    background-color: #ff6961;
  }
  
  .score-yellow {
    background-color: #F0E68C;
  }
  
  .score-green {
    background-color: #77dd77;
  }
  .schedule-button-red {
    background-color: #f44336;
  }
  
  .schedule-button-yellow {
    background-color: #ff9800;
  }
  
  .schedule-button-green {
    background-color: #4caf50;
  }
  
  .schedule-button {
    margin-top: 20px;
    background-color: #3f51b5;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .schedule-button:hover {
    background-color: #2c387e;
  }
  
  .whatsapp-button {
    background-color: #128c7e; 
    color: #ffffff; 
    border: none; 
    padding: 10px 20px; 
    text-align: center; 
    text-decoration: none; 
    display: inline-block; 
    font-size: 16px; 
    margin: 4px 2px; 
    cursor: pointer; 
    border-radius: 4px; 
    transition: 0.3s; 
    margin-top: 10px;
  }
  
  
  .whatsapp-button:hover {
    background-color: #075e54; 
    color: #ffffff; 
  }
  .resume-tips-button {
    background-color: #4169E1;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 4px;
  }
  footer {
        text-align: center;
  }
  #recommendation-list {
    list-style-type: disc;
    padding-left: 30px;
  }

  #recommendation-list li {
    margin-bottom: 10px;
  }