/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */

body{
    background:#0b0b0b;
    color:#d4af37;
    font-family:'Montserrat', sans-serif;
    line-height:1.7;
}

/* HEADER */

.top-header{
    width:100%;
    background:#050505;
    border-bottom:1px solid #8b6b20;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 2px 20px rgba(0,0,0,0.8);
}

/* LOGO */

.logo-area{
    max-width:400px;
    width:100%;
    text-align:center;
    padding:30px 20px 15px;
    background:#000;
    margin:0 auto;
}

.logo-area img{
    max-width:700px;
    width:100%;
}

/* MENU */

.menu{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:25px;
    padding:20px;
    background:#111;
    position:relative;
}

.menu > a{
    color:#d4af37;
    text-decoration:none;
    font-size:14px;
    letter-spacing:2px;
    transition:0.3s;
    font-weight:600;
    position:relative;
}

.menu > a:hover{
    color:#fff;
    text-shadow:0 0 10px #d4af37;
}

/* DROPDOWN */

.dropdown{
    position:relative;
    padding-bottom:10px;
}

.dropdown > a{
    color:#d4af37;
    text-decoration:none;
    font-size:14px;
    letter-spacing:2px;
    transition:0.3s;
    font-weight:600;
    display:block;
}

.dropdown > a:hover{
    color:#fff;
    text-shadow:0 0 10px #d4af37;
}

/* SUBMENU */

.submenu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    min-width:320px;
    background:#111;
    border:1px solid #5f4a16;
    display:none;
    flex-direction:column;
    z-index:99999;
    box-shadow:0 10px 30px rgba(0,0,0,0.7);
    border-radius:6px;
    overflow:hidden;
    padding-top:0;
    margin-top:0;
}

.submenu a{
    padding:15px 20px;
    color:#d4af37;
    text-decoration:none;
    transition:0.3s;
    font-size:13px;
    letter-spacing:1px;
    border-bottom:1px solid rgba(212,175,55,0.08);
    background:#111;
    white-space:nowrap;
}

.submenu a:last-child{
    border-bottom:none;
}

.submenu a:hover{
    background:#1b1b1b;
    color:#fff;
    padding-left:28px;
}

/* EXIBE SUBMENU */

.dropdown:hover .submenu,
.submenu:hover{
    display:flex;
}

/* HERO */

.hero{
    padding:80px 20px 40px;
    text-align:center;
}

.hero-content{
    max-width:1000px;
    margin:auto;
}

.hero h1{
    font-family:'Cinzel', serif;
    font-size:48px;
    margin-bottom:30px;
    color:#d4af37;
}

.hero p{
    color:#d8d8d8;
    font-size:18px;
}

/* CONTENT */

.content{
    max-width:1200px;
    margin:auto;
    padding:40px 20px 80px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/* CARD */

.card{
    background:#121212;
    border:1px solid #5f4a16;
    padding:35px;
    border-radius:12px;
    transition:0.3s;
    box-shadow:0 0 25px rgba(0,0,0,0.5);
}

.card:hover{
    transform:translateY(-5px);
    border-color:#d4af37;
}

.card h2{
    font-family:'Cinzel', serif;
    margin-bottom:20px;
    color:#d4af37;
    font-size:28px;
}

.card h3{
    margin-bottom:15px;
    color:#fff;
}

.card p{
    color:#d0d0d0;
    margin-bottom:20px;
}

.card ul{
    padding-left:20px;
    margin-bottom:20px;
}

.card li{
    margin-bottom:10px;
    color:#d8d8d8;
}

/* FOOTER */

.footer{
    background:#050505;
    border-top:1px solid #8b6b20;
    padding:50px 20px;
    text-align:center;
}

.footer h3{
    font-family:'Cinzel', serif;
    margin-bottom:20px;
    font-size:28px;
    color:#d4af37;
}

.footer p{
    color:#d0d0d0;
    margin-bottom:10px;
}

/* RESPONSIVO */

@media(max-width:768px){

    .hero h1{
        font-size:34px;
    }

    .menu{
        gap:15px;
        flex-direction:column;
    }

    .menu > a,
    .dropdown > a{
        font-size:12px;
    }

    .submenu{
        position:relative;
        top:10px;
        left:0;
        transform:none;
        width:100%;
        min-width:auto;
    }

}