.calendar {
  width: 120%; 
  margin: 20px auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 85vh;
  margin-right: 50px; 
}
.containerl {
  margin-right: 500px; /* Move o container 50px para a direita */
}

.menu-button {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-button span {
  width: 100%;
  height: 2px;
  background: black;
}

.floating-button {
  position: fixed;
  bottom: 20px; /* Distância da parte inferior */
  left: 20px; /* Distância da esquerda */
  background-color: #4CAF50; /* Verde */
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000; /* Garante que esteja por cima de outros elementos */
}


.form-select {
  width: 50%;  
}
.h1{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;  
}

body, html {
  height: 100%; /* Garante que body e html ocupem toda a altura da tela */
  margin: 0; /* Remove margens padrão */
}

.background-image {
  background-image: url('../../img/versa-engenharia-ambiental2.jpg'); /* Caminho para sua imagem de fundo */
  background-size: cover;
  background-position: center;
  /*filter: brightness(0.5);  escurece a imagem */
  position: fixed; /* Fixa a imagem no fundo */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Coloca a imagem atrás do conteúdo */
}


/* Centraliza o botão de login */
.container.d-flex {
  position: relative; /* Posicionamento relativo para centralizar o conteúdo */
  z-index: 1; /* Garante que o botão esteja acima da imagem */
}

.vh-100 {
  height: 100vh;
}

/* Estilos do formulário dentro do modal (opcional) */
#modalCadastro label {
  display: block; /* Rótulos em linhas separadas */
  margin-bottom: 5px;
}

#modalCadastro input[type="text"],
#modalCadastro input[type="email"],
#modalCadastro input[type="password"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}


* {
    margin: 0;
    padding: 0;
  }


  a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    opacity: 0.7;
  }
  
  .logo2 {
    width: 175px;
    height: 90px;
    float: left;
    display: flex;
    align-items: center;
    padding-left: 30px;
  }
  
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    background: #d3d3de;
    height: 10vh;

  }
  
  main {
    background: url("../../img/versa-engenharia-ambiental2.jpg") no-repeat center center;
    background-size: cover;
    height: 92vh;
  }
  
  .nav-list {
    list-style: none;
    display: flex;
  }
  
  .nav-list li {
    letter-spacing: 3px;
    margin-left: 32px;
  }
  
  .mobile-menu {
    display: none;
    cursor: pointer;
  }

  .popup-pequeno {
    width: 300px;
    height: 200px;
  }
  
  .popup-grande {
    width: 1000px;
    height: 1000px;
  }
  
  .mobile-menu div {
    width: 32px;
    height: 2px;
    background: #fff;
    margin: 8px;
    transition: 0.3s;
  }
  
  @media (max-width: 999px) {
    body {
      overflow-x: hidden;
    }
    .nav-list {
      position: absolute;
      top: 8vh;
      right: 0;
      width: 50vw;
      height: 92vh;
      background: #3A4F2A;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      transform: translateX(100%);
      transition: transform 0.3s ease-in;
    }
    .nav-list li {
      margin-left: 0;
      opacity: 0;
    }
    .mobile-menu {
      display: block;
    }
  }
  
  .nav-list.active {
    transform: translateX(0);
  }
  
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
  }
  
  .mobile-menu.active .line2 {
    opacity: 0;
  }
  
  .mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
  }
  
  input[type="text"],
  input[type="datetime-local"],
  select {
      width: 50%;
      padding: 8px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 3px;
      box-sizing: border-box; /* Inclui padding e border na largura total */
  }

  input[type="submit"] {
      background-color: #4CAF50;
      color: white;
      padding: 10px 15px;
      border: none;
      border-radius: 3px;
      cursor: pointer;
  }

  

