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

.hero{

    min-height:550px;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    padding:80px;

    background:
        linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.15)),
        url("../imagens/banner-desktop.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.hero-overlay{

    max-width:650px;

    margin-left:50px;

}

.hero-tag{

    display:inline-block;

    padding:8px 18px;

    border:1px solid var(--gold);

    border-radius:30px;

    color:var(--gold);

    font-size:14px;

    letter-spacing:2px;

    margin-bottom:25px;

}

.hero h1{

    font-size:60px;

    font-weight:700;

    letter-spacing:2px;

}

.hero p{

    color:#d6d6d6;

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-button{

    display:inline-block;

    background:var(--gold);

    color:black;

    padding:16px 36px;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.hero-button:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 30px rgba(200,169,106,.35);

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:35px;

    flex-wrap:wrap;

}