:root{
    --color-dark: #242424;
    --color-dark2: #424242;
    --color-light: #f3c332;
    --color-light2: #efb810;
    --color-light3: #d4a413;
    --color-white: #fff;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

h1, h2, h3, p{
    color: var(--color-white);
}


/* NAVBAR */

nav a{
    color: var(--color-white);
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover{
    color: var(--color-light3);
}

.logo img{
    height: 100px;
    width: auto;
    margin: 4px 0;
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--color-dark2);
    height: 14vh;
}

.nav-list{
    list-style: none;
    display: flex;
}

.nav-list li{
    letter-spacing: 3px;
    margin-left: 32px;
}

.mobile-menu div{
    width: 32px;
    height: 2px;
    background: #FFF;
    margin: 8px;
    transition: 0.3s;
}

.mobile-menu{
    cursor: pointer;
    display: none;
}


/* TITULO DAS PÁGINAS */

#title-contact{
    height: 25vh;
    width: 100%;
    display: flex;
    background-image: linear-gradient(rgba(30, 26, 4, 0.7), rgba(30, 25, 4, 0.7)), url(../img/fundo.png);
    background-position: center;
    background-size: cover;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #fff;
}


/* FOOTER */

footer{
    width: 100%;
}

footer a{
    text-decoration: none;
    background: none;
}

#footer_content{
    background-color: var(--color-dark2);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 3rem 3.5rem;
}

#footer_contacts img{
    width: 200px;
    height: auto;
}

#footer_social_media{
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

#footer_social_media .footer-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: var(--color-dark2);
    border-radius: 50%;
    transition: all 0.4s;
}

#footer_social_media .footer-link i{
    font-size: 1.25rem;
}

#footer_social_media .footer-link:hover{
    opacity: 0.8;
}

#instagram{
    background-color: var(--color-light3);
}

#facebook{
    background-color: var(--color-light3);
}

#whatsapp{
    background-color: var(--color-light3);
}

.footer-list{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-list .footer-link{
    color: #fff;
    transition: all 0.4s;
}

.footer-list .footer-link:hover{
    color: var(--color-light);
}

#footer_copyright{
    display: flex;
    justify-content: center;
    background-color: #3f3f3f;
    font-size: 0.9rem;
    padding: 1.5rem;
    font-weight: 100;
    color: #fff;
}


/* WHATSAPP FLUTUANTE */

.float-button{
    position: fixed;
    width: 75px;
    height: 75px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-sizing: 1px 1px 2px #888;
    z-index: 999999;
    font-size: 40px;
    transition: transform 0.3s ease;
}

.whatsapp-button{
    margin-top: 10px;
    margin-right: 0px;
}

.float-button:hover{
    transform: scale(1.1);
}