

* {
  font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    flex-direction: column;
    display: flex;
     min-height: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
    font-family: 'Poppins', sans-serif;
  line-height: 1.6;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    overflow-x: hidden; /* Evita barras de rolagem laterais */
}
/* ===== 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);
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

 
        /* Mostra o menu original no topo da página */
        .topo-pagina .menu-completo {
            display: flex;
        }

        .topo-pagina .menu-flutuante {
            opacity: 0;
            pointer-events: none;
        }
/* ===== FIM BARRA MENU FLUTUANTE ===== */
        /* === ESTILOS QUANDO A PÁGINA É ROLADA === */
        .scrollado .menu-completo {
            transform: translateY(-100%); 
            opacity: 0;
        }

        .scrollado .menu-flutuante {
            opacity: 1;
            pointer-events: auto;
        }
        /* ===== FOOTER ===== */
.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;
  }
}
/* Estilo alinhado ao tema lunar */
        .cookies-container {
            max-width: 800px;
            margin: 50px auto;
            padding: 30px;
            background: rgba(12, 8, 42, 0.9);
            border-radius: 15px;
            border: 1px solid #3c256e;
            box-shadow: 0 0 20px rgba(59, 35, 110, 0.6);
            color: #bdc3c7;
            line-height: 1.6;
        }
        .cookies-container h1 {
            color: #f5f3ce;
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.2rem;
        }
        .cookies-container h2 {
            color: #f1c40f;
            margin: 25px 0 15px;
            border-bottom: 1px solid #3c256e;
            padding-bottom: 8px;
        }
        .cookie-type {
            background: rgba(60, 37, 110, 0.3);
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
        }
        .cookie-type h3 {
            color: #a2d2ff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .cookie-type i {
            width: 25px;
        }
        .voltar-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 10px 20px;
            background: linear-gradient(90deg, #3c256e, #031154);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            transition: transform 0.3s;
        }
        .voltar-btn:hover {
            transform: translateY(-3px);
        }
            strong {
      color: #a2d2ff;
    }