@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Estilos globais (aplicados na página toda) */
* {
  font-family: 'Poppins', sans-serif ;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos da tag body */
body {
  background-color: #f8f8ff;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Estilos da tag main */
main {
  flex-direction: column;
  min-height: calc(100vh - 200px); /* Ajuste o valor conforme necessário */
  flex: 1;

}

/*Navbar - Menu de navegação*/

nav {
  font-weight: 400;
  }
  
  /* Estilos/ações do menu que abre ao passar o mouse sob treinamentos */
  .dropdown:hover .dropdown-menu {
      display: block;
  }
  
  .dropdown-toggle::after {
     content: none;
  }
  
  .dropdown-item:hover {
    background-color: #313131;
    color: #fff;
  }

#informations {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Estilo das escritas e links da página */
h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 8px;
}

#informations p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    
}

#informations a {
  text-decoration: none;
}

#informations a:hover {
  text-decoration: underline;
}

/* Formata o link de e-mail e WhatsApp, removendo o sublinhado padrão */
a[href^="mailto"], a[href^="https://wa.link"] { /*remove o sublinhado do e-mail e do whatsapp*/
    text-decoration: none;
}

/* Footer */

/* Estilos do rodapé */
footer {
    width: 100%;
    background-color: #212529;
    padding: 0.5rem 0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  
  .footer-link {
    text-decoration: none;
  }
  
  #footer_content {
    display: grid;
    padding: 1.25rem 1rem;
  }
  
  #footer_endereco, #footer_telefone, #footer_email, #footer_copyright {
    text-align: center;
    justify-content: center;
    display: flex;
  }
  
  #footer_endereco a { 
    color: inherit;
    text-decoration: none;
  }
  
  #footer_contacts p {
    margin: 0;
    padding: 0;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    margin-bottom: 7px;
  }
  
  #footer_social_media {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
  }
  
  #footer_social_media .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: #f5f5f5;
    border-radius: 50%;
    transition: all 0.4s;
    font-size: 1.25rem;
    transition: opacity 0.5 ease-in-out;
  }
  
  #footer_social_media .footer-link:hover {
    opacity: 0.7;
  }
  
  #instagram {
    background: linear-gradient(#7f37c9, #ff2992, #ff9807);
    text-decoration: none;
  }
  
  #facebook {
    background-color: #0A62F7;
    text-decoration: none;
  }
  
  #linkedin {
    background-color: #0077B5;
    text-decoration: none;
  }
  
  #footer_copyright {
    margin: 0;
    padding: 0;
    margin-top: 10px;
    text-align: center;
  }
  
  #footer_contacts span {
    font-weight: 600;
  }
  
  /* Responsividade */

  @media(max-width: 768px) {
    li a {
      font-size: 0.7rem; /* Reduz o tamanho da fonte */
  }
  }

  @media (max-width: 495px) {
    footer p {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 535px) {
    #infoContato p {
      font-size: 0.9rem;
    }

    li a {
      font-size: 0.6rem; /* Reduz o tamanho da fonte */
  }
  }

  @media (max-width: 481px) {
    h1 {
      font-size: 1rem;
  }
    
    #infoContato p {
      font-size: 0.8rem;
    }

  }

  @media (max-width: 426px) {
    #infoContato p {
      font-size: 0.7rem;
    }
  }

  @media (max-width: 350px) {
    footer p {
      font-size: 0.8rem;
    }
  }