/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: "Roboto", sans-serif;
background:#0e0b08;
color:#eee;
}




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

.topo{
background:linear-gradient(180deg,#1b1712 0%,#14110d 100%);
border-bottom:2px solid #8c6a3c;
box-shadow:0 4px 20px rgba(0,0,0,0.6);
padding:15px 0;
position:sticky;
top:0;
z-index:1000;
}

.topo .container{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:55px;
}

.menu ul{
display:flex;
list-style:none;
gap:25px;
}

.menu a{
text-decoration:none;
font-weight:600;
font-size:13px;
letter-spacing:1px;
text-transform:uppercase;
color:#e6d3a3;
transition:color .3s ease, text-shadow .3s ease;
}

.menu a:hover{
color:#c89b3c;
text-shadow:0 0 8px rgba(200,155,60,0.6);
}




/* CONTAINER */

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


/* HERO */

.rpg-hero{
position:relative;
height:90vh;
overflow:hidden;
}

.rpg-video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.rpg-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
}

.rpg-hero-content{
position:relative;
z-index:2;
height:100%;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.rpg-hero-content h1{
font-size:3rem;
letter-spacing:2px;
margin-bottom:20px;
}

.rpg-hero-content p{
max-width:700px;
font-size:1.2rem;
line-height:1.7;
color:#ccc;
}


/* SEÇÕES */

.rpg-section{
padding:80px 0;
}

.rpg-dark{
background:#15110d;
}

.rpg-title{
font-size:1.9rem;
margin-bottom:30px;
border-left:4px solid #8c6a3c;
padding-left:12px;
}


/* CAMPANHA DESTAQUE */

.rpg-campanha-destaque{
position:relative;
height:420px;
border-radius:10px;
overflow:hidden;
}

.rpg-campanha-bg{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
}

.rpg-campanha-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,.3));
}

.rpg-campanha-content{
position:absolute;
bottom:40px;
left:40px;
max-width:500px;
}

.rpg-campanha-content h3{
font-size:2rem;
margin-bottom:10px;
color:#d2b07c;
}

.rpg-btn{
display:inline-block;
margin-top:10px;
background:#8c6a3c;
padding:10px 16px;
border-radius:6px;
color:#fff;
text-decoration:none;
}


/* GRID CAMPANHAS */

.rpg-campanhas-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}

.rpg-campanha-card{
position:relative;
height:240px;
border-radius:10px;
overflow:hidden;
}

.rpg-campanha-card-bg{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
}

.rpg-campanha-card-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

.rpg-campanha-card-content{
position:absolute;
bottom:20px;
left:20px;
right:20px;
}

.rpg-campanha-card-content h3{
color:#d2b07c;
}





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

.footer{
background:#14110d;
border-top:2px solid #8c6a3c;
color:#d6c18b;
padding:0 20px;
font-family:"Roboto",sans-serif;
}

.footer-top{
display:flex;
justify-content:space-between;
gap:30px;
flex-wrap:wrap;
padding:40px 0;
max-width:1200px;
margin:auto;
border-top:1px solid #272727;
}

.footer-column{
flex:1;
min-width:220px;
}

.footer-logo{
max-width:150px;
margin-bottom:15px;
}

.footer-tx{
font-size:1.2rem;
color:#c89b3c;
margin-bottom:10px;
border-left:4px solid #8c6a3c;
padding-left:10px;
}

.footer-menu{
list-style:none;
}

.footer-menu li{
margin-bottom:8px;
}

.footer-menu a{
text-decoration:none;
color:#e6d3a3;
transition:color .3s ease;
}

.footer-menu a:hover{
color:#c89b3c;
}

.footer-social{
display:flex;
gap:15px;
margin:10px 0;
}

.footer-social a{
font-size:22px;
color:#e6d3a3;
transition:transform .3s ease, color .3s ease;
}

.footer-social a:hover{
color:#c89b3c;
transform:scale(1.2);
}

.footer-bottom{
text-align:center;
border-top:1px solid #2b241b;
padding:20px 0;
font-size:.9rem;
color:#a89263;
}