.nav-link:hover {
  color: #00ffff;
}

.nav-link:active {
  color: #00CED1;
}



body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
}

.projeto-card{
transition: all 0.3s ease;
border: none;
}

.projeto-card:hover{
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}



.texto-justificado {
    text-align: justify;
}

.navbar{
background: rgba(0,0,0,0.6);
backdrop-filter: blur(10px);
}

.hero{
min-height:100vh;
background: linear-gradient(120deg,#0f2027,#203a43,#2c5364);
background-size:300% 300%;
animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}


.perfil-img{
width:280px;
border-radius:50%;
border:4px solid white;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.projeto-card {
  border: none;
  overflow: hidden;
  transition: 0.4s;
}

.projeto-card img {
  height: 220px;
  object-fit: cover;
}

.projeto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

section {
  padding-top: 80px;
}

.login-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 99999;
    }

    .login-modal-overlay.hidden {
      display: none !important;
    }

    .login-container {
      background: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      width: 100%;
      max-width: 400px;
      animation: slideDown 0.3s ease-out;
      position: relative;
      z-index: 100000;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .login-container h1 {
      text-align: center;
      color: #333;
      margin-bottom: 30px;
      font-size: 24px;
      font-weight: 700;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: #555;
      font-weight: 600;
      font-size: 14px;
    }

    .form-group input {
      width: 100%;
      padding: 12px;
      border: 2px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
      transition: border-color 0.3s;
      font-family: 'Poppins', sans-serif;
    }

    .form-group input:focus {
      outline: none;
      border-color: #0d6efd;
      box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    }

    .login-btn {
      width: 100%;
      padding: 12px;
      background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      font-family: 'Poppins', sans-serif;
    }

    .login-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
    }

    .content-hidden {
      opacity: 0.3;
      pointer-events: none;
    }

    .swal2-container {
      z-index: 999999 !important;
    }

    .swal2-backdrop {
      z-index: 999998 !important;
    }