* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #eee;
    background: #0b0b0b url('../assets/img/fundo.gif') center / cover fixed;
}

/* HERO */
.hero {
    position: relative;
    min-height: 320px;
    background: url('../assets/img/banner.jpg') center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero h1, .hero p, .hero a {
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero p {
    opacity: 0.85;
}
/* ===== MENU ===== */
.menu {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: center;
    gap: 40px;

    padding: 18px 20px;
    background: rgba(12, 12, 12, 0.95);

    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

/* Linha dourada animada */
.menu::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,215,0,0.8),
        transparent
    );

    animation: menuGlow 6s linear infinite;
    opacity: 0.6;
}

@keyframes menuGlow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Links */
.menu a {
    position: relative;
    cursor: pointer;

    color: #cfcfcf;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;

    padding: 6px 0;

    transition: color 0.3s ease;
}

/* underline animado */
.menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: #FFD700;
    transition: all 0.3s ease;
}

/* hover */
.menu a:hover {
    color: #FFD700;
}

.menu a:hover::after {
    left: 0;
    width: 100%;
}

/* item ativo (opcional) */
.menu a.active {
    color: #FFD700;
}

.menu a.active::after {
    left: 0;
    width: 100%;
}


/* SECTIONS */
.section {
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
    display: none;
}

.section.active {
    display: block;
}

.highlight {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.note {
    margin-top: 30px;
    opacity: 0.8;
}

/* CARDS */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
}

.card {
    background: #151515;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* BUTTONS */
.btn-primary {
    background: #5865F2;
    color: #fff;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
}

.btn-secondary {
    color: #FFD700;
    text-decoration: none;
}

/* VIDEO */
.local-video {
    max-width: 640px;
    width: 100%;
    border-radius: 12px;
    margin-top: 20px;
}

/* DISCORD WIDGET */
.discord-widget {
    position: fixed;
    top: 120px;
    left: 20px;

    width: 280px;
    height: 500px;

    background: #111;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);

    z-index: 99999;

    overflow: hidden; /* mantém bordas limpas */
}
.discord-widget iframe {
    width: 100%;
    height: 100%;
    border: none;
}


@media (max-width: 900px) {
    .discord-widget {
        display: none;
    }
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* VENDAS DE BAÚ */
.venda-form {
    max-width: 420px;
    margin: 20px auto;
}

.venda-form input {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #1e1e1e;
    color: #fff;
}

.bau-card {
    background: #151515;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.bau-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.bau-card p {
    margin: 8px 0;
}

/* GRID DE VIDEOS */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 vídeos por linha */
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Mobile */
@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr; /* 1 vídeo por linha no celular */
    }
}

@media (max-width: 768px) {
    .menu {
        flex-wrap: wrap;
        gap: 20px;
        padding: 14px 10px;
    }
}
