:root{
    --bg:#0b0b0d;
    --bg-secondary:#111114;
    --card:#18181d;

    --primary:#f4c542;
    --primary-hover:#ddb12c;

    --text:#ffffff;
    --muted:#b4b4b4;

    --border:#2c2c34;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
}

/* ===== CONTAINER ===== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===== HEADER ===== */

.header{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(11,11,13,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(244,197,66,.15);
    z-index:999;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:70px;
}

/* ===== MENU ===== */

nav{
    display:flex;
    gap:25px;
    align-items:center;
}

nav a{
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:var(--primary);
}

.btn-login{
    background:var(--primary);
    color:#111;
    padding:12px 22px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.btn-login:hover{
    background:var(--primary-hover);
    transform:translateY(-2px);
}

/* ===== HERO ===== */

.hero{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:20px;

    background:
        radial-gradient(
            circle at top,
            rgba(244,197,66,.15),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #0b0b0d 0%,
            #111114 100%
        );
}

.hero-content{
    max-width:850px;
}

.hero h1{
    font-size:4rem;
    color:var(--primary);

    text-transform:uppercase;
    letter-spacing:2px;

    margin-bottom:25px;
}

.hero p{
    color:var(--muted);
    font-size:1.2rem;
    line-height:1.8;
}

.btn-primary{
    display:inline-block;

    margin-top:35px;

    background:var(--primary);
    color:#111;

    text-decoration:none;

    padding:18px 36px;
    border-radius:10px;

    font-weight:700;

    transition:.3s;
}

.btn-primary:hover{
    background:var(--primary-hover);
    transform:translateY(-3px);
}

/* ===== SECTIONS ===== */

.section{
    padding:100px 20px;
}

.section h2{
    text-align:center;

    font-size:2.5rem;

    color:var(--primary);

    margin-bottom:40px;
}

.section p{
    max-width:900px;

    margin:auto;

    text-align:center;

    color:var(--muted);

    line-height:1.9;
}

/* ===== BENEFÍCIOS ===== */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:var(--card);

    padding:30px;

    border-radius:14px;

    border:1px solid rgba(244,197,66,.15);

    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
    border-color:var(--primary);
}

.card h3{
    color:var(--primary);
    margin-bottom:15px;
}

.card p{
    text-align:left;
}

/* ===== HORÁRIOS ===== */

.schedule{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.schedule-card{
    background:var(--card);

    min-width:260px;

    padding:30px;

    border-radius:14px;

    text-align:center;

    border:1px solid rgba(244,197,66,.15);

    transition:.3s;
}

.schedule-card:hover{
    border-color:var(--primary);
    transform:translateY(-4px);
}

.schedule-card h3{
    color:var(--primary);
    margin-bottom:10px;
}

/* ===== LOCALIZAÇÃO ===== */

.referencia{
    color:var(--primary) !important;
    font-weight:700;
    margin-top:20px !important;
}

/* ===== FOOTER ===== */

footer{
    border-top:1px solid rgba(244,197,66,.15);

    text-align:center;

    padding:50px 20px;
}

footer img{
    height:80px;
    margin-bottom:15px;
}

footer p{
    color:var(--muted);
}

/* ===== MENU MOBILE ===== */

#menu-toggle{
    display:none;
}

/* ===== RESPONSIVO ===== */

@media(max-width:768px){

    .hero h1{
        font-size:2.6rem;
    }

    .hero p{
        font-size:1rem;
    }

    #menu-toggle{
        display:block;

        background:none;
        border:none;

        color:white;

        font-size:2rem;

        cursor:pointer;
    }

    nav{
        display:none;

        position:absolute;

        top:90px;
        right:20px;

        background:var(--card);

        flex-direction:column;

        padding:20px;

        border-radius:12px;

        box-shadow:0 10px 30px rgba(0,0,0,.5);
    }

    nav.active{
        display:flex;
    }

    .schedule{
        flex-direction:column;
        align-items:center;
    }

    .section{
        padding:80px 20px;
    }

    .section h2{
        font-size:2rem;
    }
}