/* header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 40px);
    margin: 0 0 0 20px;
} */

h1 {
    margin: 0;
}

p {
    margin: 0;
}

#container-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 40px);
    margin: 0 0 0 20px;
}
#logo {
    
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 80px 0 0 0;
}

#logo img {
    width: 300px;
}

#logo p {
    font-size: 0.8rem;
    color: rgb(82, 82, 82);
    align-self: end;
    margin: 7px 0 0 0;
    font-style: italic;
}



#navbar-homepage {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
    height: 50px;
    margin: 20px 0 0 0;
    padding: 0 20px;
    list-style-type: none;
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: background-color 0.2s;
}

#navbar-homepage span {
    margin: 0 0 0 10px;
}

.item-navbar {
    display: flex;
    border-bottom: 2px solid transparent; 
}

.item-navbar a {
    flex: none;
    padding: 4px 10px;  
    
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #373737;
}

.item-navbar > a > p {
    white-space: nowrap;
}

.link-instagram {
    display: flex;
    align-items: center;
}

.item-navbar:hover {
    border-bottom: 2px solid rgb(0,0,0);
}

.item-navbar a:hover {
    color: black;
}

.item-navbar-active {
    color: black !important;
    border-bottom: 2px solid rgb(0,0,0) !important;
}

.divisor {
    width: 100%;
    height: 1px;
    background-color: black;
}

.icon-instagram {
    width: 20px;
    height: 20px;
}

/* tablet */
@media only screen and (max-width: 1150px) and (min-width: 601px){
    #logo img {
        width: 250px;
    }
}


/* celular */
@media(max-width: 600px) {

    #logo img {
        width: 180px;
    }

    header {
        width: calc(100% - 20px);
        margin: 0 0 0 10px; 
    }

    #logo {
        margin: 60px 0 0 10px;
    }

    #navbar-homepage {
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: start;
        width: calc(100% - 20px);
        padding: 0 10px;
    }

    .item-navbar {
        font-size: 0.9rem;
    }

    .divisor {
        display: none;
    }
}