* {
  font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Estilo do fundo e partículas */
.particle-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0a0a20, #1a0030); /* Fundo escuro */
    z-index: -1; /* Fica atrás do conteúdo */
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6); /* Cor branca semi-transparente */
    border-radius: 50%;
    pointer-events: none; /* Não interfere com cliques */
}
/* Animação das partículas subindo */
@keyframes float-up {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) translateX(20px); /* Sobe e desvia levemente */
        opacity: 0;
    }
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 0;
    margin-top: auto; /* Isso empurra o footer para baixo */
    width: 100%;
}

.footer-container {
  max-width: 1400px !important;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-section h3 {
  color: #f1c40f;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links li, .contact-info li {
  margin-bottom: 10px;
  list-style: none;
}

.footer-links a, .contact-info a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover, .contact-info a:hover {
  color: #f1c40f;
}

.contact-info i {
  margin-right: 10px;
  color: #f1c40f;
  width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links a {
  color: #ecf0f1;
  background: #34495e;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #f1c40f;
  color: #2c3e50;
  transform: translateY(-3px);
}
.copyright {
  background: #1a252f;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}

.legal-links {
  margin-top: 10px;
}

.legal-links a {
  color: #bdc3c7;
  margin: 0 10px;
  text-decoration: none;
}

.legal-links a:hover {
  color: #f1c40f;
}
/* ===== FIM FOOTER ===== */
/* Responsivo */
@media (max-width: 768px) {
  .menu-completo {
    flex-direction: column;
  }
  
  .menu-completo ul {
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* ===== BARRA MENU SUPERIOR ===== */
nav.menu-completo {display: flex; /* Mantém o menu visível inicialmente */
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background: rgba(0, 0, 0, 0.778);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;}
.menu-completo ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.menu-completo ul li a {  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s;
    line-height: 1.6;
}


.menu-completo .destaque {  
  background:linear-gradient(90deg, #3c256e, #031154);
  font-weight: bold;
}

.logo {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
    background: radial-gradient(
    circle,
    #0f2592 0%,
    #7441e1 40%,
    transparent 80%
  );
  box-shadow:
    0 0 10px 1px rgba(255, 255, 255, 0.2),
    0 0 10px 1px rgba(255, 255, 255, 0.3),
    0 0 20px 1px rgba(255, 255, 255, 0.2);
}

.menu-completo ul a:hover {
  background: linear-gradient(90deg, #031154, #3c256e);
  color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-completo {
    flex-direction: column;
  }
  

}
/* ===== FIM BARRA MENU superior  ===== */
   /* ===== MENU FLUTUANTE ===== */
        .menu-flutuante {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .menu-botao {
            background: linear-gradient(90deg, #3c256e, #031154);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            border: none;
        }

        .menu-botao i {
            color: white;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .menu-links {
            position: absolute;
            top: 60px;
            right: 0;
            background: linear-gradient(10deg, #3c256e, #031154);
            border-radius: 10px;
            padding: 15px;
            display: none;
            min-width: 200px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        .menu-links.mostrar {
            display: block;
            animation: slideDown 0.3s ease;
        }

        .menu-links a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 10px 15px;
            margin: 5px 0;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .menu-links a:hover {
            background: rgba(255,255,255,0.1);
        }

  
        .topo-pagina .menu-completo {
            display: flex;
        }

        .topo-pagina .menu-flutuante {
            opacity: 0;
            pointer-events: none;
        }
/* ===== FIM BARRA MENU superior  ===== */
/* === ESTILOS QUANDO A PÁGINA É ROLADA === */
        .scrollado .menu-completo {
            transform: translateY(-100%); 
            opacity: 0;
        }

        .scrollado .menu-flutuante {
            opacity: 1;
            pointer-events: auto;
        }
/* === FIM DOESTILOS QUANDO A PÁGINA É ROLADA === */
@keyframes pulsar-brilho {
  0% { text-shadow: 0 0 5px #f5f3ce80, 0 0 15px #f5f3ce50, 0 0 25px #f5f3ce30; }
  100% { text-shadow: 0 0 10px #f5f3ce, 0 0 30px #f5f3ce80, 0 0 50px #f5f3ce50, 0 0 80px #9a7bff40; }
}
    strong {
      color: #a2d2ff;
    }

/* Container Principal */
.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1300px;
  margin: 0 auto;
 margin-top: 15vh;
}

/* Card */
.card {
  background: linear-gradient(135deg, #0f0c29dd, #302b63dd);
  border: 1px solid #3c256e;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(59, 35, 110, 0.5);
  padding: 30px 25px;
  width: 320px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f5f3ce;
  backdrop-filter: blur(4px);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(59, 35, 110, 0.7);
}

/* Título do Card */
.card-title {
  color: #f1c40f;
  font-size: 1.9rem;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 10px rgba(245, 243, 206, 0.4);
  letter-spacing: 1px;
}

/* Botão do Card */
.card-button {
  padding: 14px 35px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #3c256e, #031154);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.card-button:hover {
  background: linear-gradient(90deg, #4a3b8a, #1a2b6b);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.card-button:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Responsivo - Tablet */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }

  .card {
    width: 100%;
    max-width: 400px;
  }
}

/* Responsivo - Telemóvel */
@media (max-width: 480px) {
  .card-title {
    font-size: 1.6rem;
  }

  .card-button {
    padding: 12px 28px;
    font-size: 1rem;
    gap: 8px;
  }
}

/* Espaço extra opcional */
.spacer {
  height: 30vh;
}
