/* Font Quicksand */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* Font Cormorant */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* Variables */
:root{
    --font-cormo: 'Cormorant', serif; 
    --font-quick: 'Quicksand', sans-serif; 
    --primary: #cda248;
}

*{
    font-family: var(--font-quick);
}

body{
    background: url(img/banner.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

body::before {
    z-index: -1;
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    background: #000;
    opacity: .4;
}

@media(max-width:1199px){
    body::before{
        width: 100%;
    }
}

a{
    text-decoration: none;
    color: #fff;
    transition: all .3s ease;
}

a:hover{
    color: var(--primary);
}

.min-h{
    min-height: 104vh;
}

.text-cormorant{
    font-family: var(--font-cormo) !important;
}

.btn-prime{
    width: 100%;
    height: 70px;
}

.btn-location{
    letter-spacing: normal !important;
    height: 40px;
    width: 150px;
}

.btn-prime, .btn-location{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    letter-spacing: 6px;
    color: #fff !important;
    transition: all .3s ease;
}

.btn-prime:hover, .btn-location:hover{
    background-color: var(--primary);
}

.btn-sociais{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    border-radius: 35px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-sociais:hover{
    background: #fff;
    color: var(--primary);
}
