/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header Styles */
  header {
    background-color: #004aad;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  header h1 {
    text-align: center;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2rem;
  }
  
  /* Menu de navegação */
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  nav ul li a:hover {
    background-color: #1a73e8;
  }
  
  /* Estilos do menu hambúrguer */
  .menu-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  .menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px;
    background-color: white;
    transition: all 0.3s ease;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Main Styles */
  main {
    padding: 2rem 0;
  }
  
  .section {
    background-color: white;
    margin: 1rem 0;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
  }
  
  .section h2 {
    font-size: 1.8rem;
    color: #004aad;
    margin-bottom: 1rem;
  }
  
  .section p {
    font-size: 1rem;
    color: #555;
  }
  
  .section:hover {
    transform: translateY(-5px);
  }
  
  /* Container */
  .container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  /* Footer Styles */
  footer {
    background-color: #004aad;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
  }
  
  footer p {
    margin: 0;
  }


  .btn-logind{
    display: flex;
    justify-content: center;
    align-items: center;
  }


  /* Estilos para o botão de login */
.btn-login {
    display: inline-block;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #1a73e8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
  }
  
  .btn-login:hover {
    background-color: #004aad;
  }
  
  
  /* Responsividade */
  @media (max-width: 768px) {
    nav {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      background-color: #004aad;
      width: 100%;
      flex-direction: column;
    }
  
    nav.open {
      display: flex;
    }
  
    nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    nav ul li {
      margin: 10px 0;
    }
  
    header h1 {
      font-size: 1.3rem;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .section h2 {
      font-size: 1.6rem;
    }
  
    .container {
      width: 90%;
    }
  }
  