:root {
    --bg-dark: #05070a;
    --accent-purple: #8a2be2;
    --neon-blue: #00d4ff;
    --text-main: #e0e0e0;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 40%);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative; /* necessário para o ::before */
}
body.modal-open{
    overflow: hidden;
}

/* imagem de fundo com blur */
body::before{
    content:"";
    position: fixed;
    inset: 0;
    background: url("/assets/img/lion.jpg") center/cover no-repeat;
    filter: blur(2px);
    opacity: 0.10;         /* ajuste a intensidade */
    z-index: -1;           /* fica atrás do conteúdo */
    pointer-events: none;  /* evita cliques nele */
}
a {
  color: inherit;      /* herda a cor do elemento pai (ou escolha outra cor) */
  text-decoration: none; /* remove o sublinhado */
}
li {
    list-style-type: none;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 10%;
    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
}

.logo span { color: var(--accent-purple); }
.logo-username {
    margin-right: 10px;
}
.btn-login {
    text-decoration: none;
    color: white;
    border: 1px solid var(--accent-purple);
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 600;
}
.btn-login.activated{
    background: var(--accent-purple);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}
.btn-login:hover {
    background: var(--accent-purple);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}


/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    background: linear-gradient(90deg, var(--accent-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    color: var(--neon-blue);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.hero-content p {
    max-width: 600px;
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--accent-purple);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.4s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.platforms {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 10%;
}

.feature-card {
    background: var(--glass);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .navbar { padding: 1.5rem 5%; }
}
/* Footer Styles */
.main-footer {
    background: rgba(0, 0, 0, 0.322);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    padding: 4rem 10% 2rem 10%;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: #888;
    max-width: 300px;
}

.footer-links h4, .footer-status h4 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-purple);
    padding-left: 5px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4CAF50; /* Cor de sucesso */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 10px #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
    cursor: pointer;
}
.login-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;

    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.login-overlay.active{
    opacity: 1;
    pointer-events: all;
}

/* animação do card */
.login-box{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 15px;
    padding: 2.5rem;
    width: 350px;
    box-shadow: 0 0 30px rgba(138,43,226,0.3);
    backdrop-filter: blur(10px);
    position: relative;

    transform: scale(.85) translateY(20px);
    opacity: 0;

    transition: 
        transform .35s ease,
        opacity .35s ease,
        box-shadow .35s ease;
}

.login-overlay.active .login-box{
    transform: scale(1) translateY(0);
    opacity: 1;
    box-shadow: 0 0 40px rgba(138,43,226,0.5);
}


.login-box h2{
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1.5rem;
}

.login-box input{
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: none;
    outline: none;
}

.close-login{
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
}
.user-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2rem 10%;
    margin-top: 20px;
}

/* Sidebar */
.settings-nav {
    background: var(--glass);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1.5rem;
    height: fit-content;
}

.settings-nav ul { list-style: none; }
.settings-nav li { margin-bottom: 0.5rem; }

.settings-nav a {
    color: #aaa;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border-radius: 8px;
    transition: 0.3s;
}

.settings-nav a:hover, .settings-nav a.active {
    background: rgba(138, 43, 226, 0.2);
    color: white;
}

/* Main Content */
.settings-content {
    background: var(--glass);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2.5rem;
}

.settings-section { margin-bottom: 3rem; }
.settings-section h2 { 
    font-family: 'Rajdhani', sans-serif; 
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}

.input-group { margin-bottom: 1.5rem; }
.input-group label { display: block; margin-bottom: 0.5rem; color: #888; font-size: 0.9rem; }

.input-group input, .input-group select {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: white;
    outline: none;
}

.input-group input:focus { border-color: var(--neon-blue); }

/* GSI Status Card */
.gsi-status-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px border dashed var(--neon-blue);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.token-display {
    font-family: monospace;
    background: #000;
    padding: 0.5rem;
    border-radius: 4px;
    color: var(--neon-blue);
}
.register{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 992px) {
    .user-container { grid-template-columns: 1fr; }
}
/* Ajuste Responsivo */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .register{
        display: block;
    }
}