:root {
    /* Paleta Solarizada para maior claridade */
    --deep-navy: #1A2A44;           /* Azul Marinho mais aberto */
    --cognivus-blue: #00D1FF;       /* Cyan Vibrante */
    --primary-blue: #4D94FF;        /* Azul mais claro para botões */
    --soft-blue: #B0E5FF;           /* Azul pastel para textos de apoio */
    --white-ice: #FFFFFF;           /* Branco puro para contraste */
    --glass-bg: rgba(255, 255, 255, 0.08); /* Vidro mais claro */
    --border-glow: rgba(0, 209, 255, 0.4);
}

body {
    /* Gradiente mais claro e vibrante */
    background: radial-gradient(circle at top, #243B55, #141E30);
    color: var(--white-ice);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

/* NAVBAR COM MAIOR DESTAQUE */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(26, 42, 68, 0.95);
    border-bottom: 2px solid var(--cognivus-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* RODAPÉ E LINKS (ONDE ESTÃO OS TERMOS) */
.footer-master {
    margin-top: 50px;
    padding: 40px 8%;
    text-align: center;
    background: rgba(10, 20, 40, 0.8);
    border-top: 1px solid var(--border-glow);
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    color: var(--soft-blue);
    text-decoration: none;
    font-family: 'Orbitron';
    font-size: 0.7rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--cognivus-blue);
    text-shadow: 0 0 8px var(--cognivus-blue);
}

.footer-tag {
    color: #64748B;
    font-size: 0.6rem;
    font-family: 'Orbitron';
    letter-spacing: 2px;
}

/* BOTÕES MAIS VIVOS */
.btn-master {
    background: linear-gradient(135deg, #00D1FF, #3A86FF);
    box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
}