
/* =========================
RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, Arial, sans-serif;
}

body{
background:#0a0a0a;
color:white;
}


/* =========================
MENU PREMIUM RESPONSIVO
========================= */

header{
position:fixed;
top:0;
width:100%;
background:rgba(0,0,0,0.95);
border-bottom:1px solid #d4af37;
z-index:1000;
}

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 20px;
}

.logo{
font-size:22px;
font-weight:bold;
color:#d4af37;
letter-spacing:1px;
}

.menu{
display:flex;
gap:30px;
}

.menu a{
color:white;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.menu a:hover{
color:#d4af37;
}

.menu-btn{
display:none;
font-size:28px;
cursor:pointer;
}


/* MOBILE */

@media(max-width:768px){

.menu{
position:absolute;
top:60px;
right:0;
background:black;
flex-direction:column;
width:250px;
display:none;
border-left:1px solid #d4af37;
}

.menu.active{
display:flex;
}

.menu a{
padding:15px;
border-bottom:1px solid #333;
}

.menu-btn{
display:block;
}

}


/* =========================
BANNER PREMIUM
========================= */

.banner{
margin-top:60px;
height:550px;
position:relative;
overflow:hidden;
}

.banner img{
width:100%;
height:100%;
object-fit:cover;
position:absolute;
opacity:0;
transition:opacity 1.5s;
}

.banner img.active{
opacity:0.5;
}

.banner-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to right, rgba(0,0,0,0.9), transparent);
}

.banner-text{
position:absolute;
top:50%;
left:80px;
transform:translateY(-50%);
max-width:500px;
}

.banner-text h1{
font-size:42px;
color:#d4af37;
margin-bottom:15px;
}

.banner-text p{
font-size:18px;
margin-bottom:20px;
}

.banner-text button{
padding:12px 25px;
border:none;
background:#d4af37;
color:black;
font-weight:bold;
cursor:pointer;
}


/* =========================
SEÇÃO CAMPEONATOS
========================= */

.section{
padding:80px 20px;
text-align:center;
}

.section h2{
color:#d4af37;
margin-bottom:40px;
font-size:32px;
}

.grid{
max-width:900px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:#111;
border:1px solid #d4af37;
border-radius:10px;
overflow:hidden;
transition:0.3s;
}

.card:hover{
transform:scale(1.05);
}

.card img{
width:95%;
height:350px;
object-fit:cover;
}

.card-content{
padding:20px;
}

.card-content h3{
margin-bottom:15px;
}

.card-content button{
width:100%;
padding:12px;
border:none;
background:#d4af37;
color:black;
font-weight:bold;
cursor:pointer;
}


/* =========================
PATROCINADORES
========================= */

.patro{
background:#111;
}

.patro-grid{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:30px;
}

.patro-grid img{
height:90px;
transition:0.3s;
}

.patro-grid img:hover{
filter:none;
transform:scale(1.1);
}


/* =========================
MODAL
========================= */

.modal{
position:fixed;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
justify-content:center;
align-items:center;
}

.modal-box{
background:black;
border:1px solid #d4af37;
padding:20px;
border-radius:10px;
max-width:400px;
}

.modal-box img{
width:100%;
}

.modal-box button{
margin-top:15px;
padding:10px;
width:100%;
background:#d4af37;
border:none;
font-weight:bold;
cursor:pointer;
}


/* =========================
WHATSAPP
========================= */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
}

.whatsapp img{
width:85px;
}


/* =========================
FOOTER
========================= */

footer{
background:black;
border-top:1px solid #d4af37;
padding:40px;
text-align:center;
}

footer h3{
color:#d4af37;
margin-bottom:10px;
}

.redes img{
width:45px;
margin:10px;
}
