
/* Layout para sticky footer */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* NAvbar ---------- */

.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;

    color: black;
    text-decoration: none;
}

.title {
    font-family: "Lexend Zetta", serif;
    font-optical-sizing: auto;
    font-size: 2rem;
    font-weight: 300;
    font-style: normal;
}

.subtitle {
    font-family: "Lexend Zetta", serif;
    font-optical-sizing: auto;
    font-size: 0.5rem;
    font-weight: 300;
    font-style: normal;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul li:not(:last-child) {
    border-right: 1px solid white; 
}  

.toggle-container {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    gap: 1rem;
}

.toggle-content{
    filter: invert(50%);
}

.toggle-content:hover{
    filter: invert(80%);
}

.icon {
    font-family: 'Material Symbols Outlined';
    font-size: 1.8rem;
}

/* Offcanvas ---------- */

.filtros {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Footer ---------- */

.contact_list {
    margin-top: 1rem;
    list-style: none;
    display: flex;
    justify-content: center;
}

.contact_list li{
    padding: 0 0.5rem;
    font-size: 0.7rem;
}