section {
    width: 100%;
    height: 100vh;
    position: relative;
  }
  section::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('fundo_tela/PILOTO-1024x738.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    filter: brightness(0.5);
  }
  section .logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%);
    max-width: 280px;
    filter: drop-shadow(2px 4px 8px #F4F6F7);
  }
  @media (min-width: 720px) {
    section .logo {
      max-width: 400px;
    }
  }
  /* section .imgBg {
    position: absolute;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('fundo_tela/PILOTO-1024x738.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
  } */
  section .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  section .content p {
    font-size: 18px;
    color: #F4F6F7;
    font-weight: 600;
    text-align: center;
  }
  section .content .contact {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }
  section .content .contact a {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    color: #E5AD10;
    transition: all 0.3s ease;
  }
  section .content .contact a:hover {
    color: #2A84CE;
  }
  section .content .contact a:hover i {
    color: #2A84CE;
  }
  section .content .contact a i {
    font-size: 35px;
    color: #E5AD10;
    margin: 30px 0 15px 0;
  }
  
  body {
    padding: 0;
    margin: 0;
    font-family: system-ui;
  }
