.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }


body {
  height: 100%;
  margin: 0;
  background-color: var(--light-gray) !important;

}

body {
  margin: 0;
  padding-top: 56px;
  width: 100%;
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
    sans-serif;
  background-color: #097074;
  color: #fff;
}

.navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background: #097074;
      backdrop-filter: blur(8px);
      z-index: 999;
      transform: translate(0%,-90%);

    }

    .navbar-container {
      max-width: 1200px;
      margin: auto;
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      color: #fff;
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 1px;
    }

    .nav-links {
      display: flex;
      gap: 25px;
    }

    .nav-links a {
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      position: relative;
      transition: color 0.3s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: -4px;
      left: 0;
      background-color: #00d4ff;
      transition: width 0.3s;
    }

    .nav-links a:hover {
      color: #00d4ff;
    }

    .nav-links a:hover::after {
      width: 100%;
    }
/* Menu mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}


.container {
  display: flex;
  height: 100vh;
}

.left-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  width: 50%;
}

.left-panel img {
  max-width:100%;
 object-fit: cover;
 height: auto;
    
}

.right-panel {
  flex: 1;
 background-color: #097074;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.login-form {
  width: 80%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  height: auto;

  
}

.login-form h2 {
  margin-bottom: 20px;
  color: white;
  text-align: center;
  font-size: 2rem;
  transform: translate(0%,-100%);
  font-weight: bolder;
  font-family: "Open Sans", sans-serif;
}

.login-form input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-form label {
  color: white;

}

.options {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.login-form button {
  background-color: #007bff;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition:  background-color 0.3s;
}

.login-form button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}


.login-form p {
  margin-top: 15px;
  font-size: 0.8rem;
  color: white;
}

.login-form a {
color: white;
  font-weight: bolder;
  text-decoration: none;
  margin-left: 5%;
  font-size: 0.8rem;

}


.site-footer {
  background-color: #097074;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  margin-top: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 12px;
  font-size: 18px;
  border-left: 3px solid #189fa3;
  padding-left: 8px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #fff3;
  margin-top: 25px;
  padding-top: 15px;
  font-size: 13px;
}

/* Responsividade da página de login */

/* RESPONSIVIDADE PARA CELULAR */

@media (max-width: 670px) {
  .container {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .left-panel,
  .right-panel {
    width: 100%;
    height: auto;
  }

  .left-panel {
    width: 100%;
    transform: translate(0%,-10%);
    
    
  
  }

  .left-panel img {
    border-radius: 18px;
    max-height: 300px;
    object-fit: cover;
    padding: 30px;

    
  }

  .right-panel {
    order: 1;
    border-radius: 15px;
    padding: 15px ;
  }

  .login-form h2 {
    font-size: 1.5rem;
    transform: translate(0%, 13%);
  }
}