:root{
    --body-bg: #fafafa;
    --color: rgb(27, 27, 27);
    --box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    --border-top: 1px solid rgb(230, 230, 230);
    --border-bottom: 1px solid rgb(230, 230, 230);
  
    /* button dark mode begin */
  
    --toggle-size: 12px; /* Tamanho do botão */
    --toggle-width: 2.5em; /* Largura do botão */
    --toggle-height: 1.50em; /* Altura do botão */
    --toggle-background-off: #efefef; /* Cor de fundo quando desligado */
    --toggle-background-on: #2a2a2a; /* Cor de fundo quando ligado */
  
    /* button dark mode end */
  }
  
  .dark-mode:root {
    --body-bg: #313131;
    --color: rgb(255, 254, 254);
    --box-shadow: 0px 5px 30px rgba(255, 255, 255, 0.05);
    --border-top: 1px solid #041545;
    --border-bottom: 1px solid #041545;
  }
  
  body {
      margin: 0;
      font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif ;
      background-color: var(--body-bg);
  
      &.dark-mode {
        background-color: var(--body-bg);
      }
  }
  
  /* START DARK MODE BUTTON */

.container-togle-switch {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
  
  .theme-checkbox {
    --toggle-size: var(--toggle-size);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: var(--toggle-width);
    height: var(--toggle-height);
    background: linear-gradient(to right, var(--toggle-background-off) 50%, var(--toggle-background-on) 50%) no-repeat;
    background-size: 200%;
    background-position: 0;
    border-radius: 50px; /* Reduzido para 50px para um botão menor */
    position: relative;
    display: flex;
    align-items: end;
    justify-content: end;
    cursor: pointer;
    font-size: var(--toggle-size);
    transition: background-position 0.4s;
  }
  
  .theme-checkbox::before {
    content: "";
    width: calc(var(--toggle-height) - 0.875em); /* Diminuído para o tamanho do círculo */
    height: calc(var(--toggle-height) - 0.875em); /* Diminuído para o tamanho do círculo */
    position: absolute;
    top: 0.438em;
    left: 0.438em;
    background: linear-gradient(to right, var(--toggle-background-off) 50%, var(--toggle-background-on) 50%) no-repeat;
    background-size: 200%;
    background-position: 100%;
    border-radius: 50%;
    transition: left 0.4s;
  }
  
  .theme-checkbox:checked::before {
    left: calc(100% - var(--toggle-height) + 0.438em);
    background-position: 0;
  }
  
  .theme-checkbox:checked {
    background-position: 100%;
  }
  
  /* END DARK MODE BUTTON */

  .container{
    display: flex;
    align-items: center;
    background-size: cover;
    height: 100vh;
    flex-direction: column;
    background-color: #041545;
  }
  .column{
    display: flex;
    justify-content: center;
    height: 25vh;
    align-items: center;
    color: #ffffff;
   background-color: #002792;
   width: 100%;
   flex-direction: column;
  }
  .title{
    font-size: 34pt;
    font-weight: 600;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif ;
    margin-bottom: 10px;
  }
  .row{
    display: flex;
    height: 3vh;
    width: 80%;
    justify-content: center;
  }
  
  .space{
    display: flex;
    width: 5%;
    justify-content: center;
    font-size: 14pt;
  }
  .link-service{
    display: flex;
    font-size: 14pt;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif ;
    color: white;
    text-decoration: none;
    font-weight: 100;
  }
  .container-mid-text{
    align-items:end;
    display: flex;
    width: 30%;
    height: 20vh;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
  }
  .title-mid-text{
    display: flex;
    color: white;
    border-bottom: 3px solid red;
    font-weight: 100;
    font-size: 14pt;
  
  }
  .mid-text{
    display: flex;
    color: white;
    width: 75%;
    font-size: 14pt;
    flex-direction: column;
    
  }
  .anti-column{
    display: flex;
    font-size: 14pt;
  }
  .link-text{
    display: flex;
    color: red;
  }
  .mid-text > li{
    margin-bottom: 15px;
    font-size: 14pt;
  }
  strong{
    color: red;
    margin-bottom: 20px;
  }
  @media screen and (max-width: 1140px){
    .container-mid-text{
      height: 0vh;
    }
    .container{
      height: 160vh;
    }
    .column{
      height: 20vh;
    }
    .title{
      font-size: 24pt;
    }
    .anti-column{
      flex-direction: column;
      margin-bottom: 20px;
    }
  }