* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #0f172a, #020617 80%);
    color: #e2e8f0;
}

/* TOPO PREMIUM */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 45px;
    filter: drop-shadow(0 0 6px #38bdf8);
}

.logo-area h1 {
    font-size: 22px;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-main {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: white;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

.btn-main:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.8);
}

/* BANNER */
.banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: brightness(0.7);
}

/* MAIN */
main {
    padding: 50px;
}

section {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 15px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(56, 189, 248, 0.15);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
}

h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #38bdf8;
}

h3 {
    margin-top: 15px;
    color: #818cf8;
}

p {
    line-height: 1.6;
}

ul {
    margin-top: 15px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    background: rgba(2, 6, 23, 0.9);
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    color: #94a3b8;
}

/* SCROLLBAR PERSONALIZADA */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#38bdf8, #6366f1);
    border-radius: 10px;
}


/* CONTATO BONITO */
.contact ul {
    list-style: none;
    padding: 0;
}

.contact li {
    margin-bottom: 12px;
}

.contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s;
    background: rgba(2, 6, 23, 0.8);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.contact a:hover {
    transform: translateX(5px);
    box-shadow: 0 0 15px currentColor;
}

/* CORES INDIVIDUAIS */
.contact a[href*="maps"] {
    color: #38bdf8;
}

.contact a[href*="wa.me"] {
    color: #22c55e;
}

.contact a[href*="facebook"] {
    color: #3b82f6;
}

.contact a[href*="instagram"] {
    color: #f472b6;
}

.contact a[href*="discord"] {
    color: #5865F2;
}
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 999; /* AGORA NA FRENTE */
    pointer-events: none; /* NÃO ATRAPALHA CLIQUE */

    opacity: 0.4; /* deixa mais elegante */
}