@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto Condensed", sans-serif;
}

body {
    min-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
}

header {
    background: #359CF6;
    background: linear-gradient(90deg, rgba(53, 156, 246, 1) 0%, rgba(155, 208, 255, 1) 100%);
    padding: 1em;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#titulo {
    text-align: center;
}

#informations {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.2em;
}

#usuarioicone {
    height: 1.5em;
}

#usuarioicone:hover {
    cursor: pointer;
}

#setaicone {
    height: 0.8em;
}

.row {
    background-color: #fff;
    height: 1px;
    width: 120px;
}

#icone-usuario-header {
    height: 8em;
}

#informations-add {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 5em;
    right: 0;
    transform: translateX(10em);
    background: #359CF6;
    background: linear-gradient(346deg, rgba(53, 156, 246, 1) 0%, rgba(155, 208, 255, 1) 100%);
    width: 9rem;
    height: auto;
    gap: 0.5em;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.item-informations-add {
    width: 100%;
    padding: 0.2em 0.5em 0.2em 0.9em;
    text-align: start;
    color: white;
}

.item-informations-add:hover {
    cursor: pointer;
    background-color: #88baff;
}

.fa-gears,
.fa-arrow-right-from-bracket,
.fa-champagne-glasses,
.fa-house,
.fa-tag,
.fa-envelope {
    margin-left: 0.5em;
}

.white {
    color: white;
}

#logo-header {
    height: 3em;
}

#sair {
    cursor: pointer;
    color: white;
    padding: 0.2em 0.5em;
    border: 1px solid white;
    margin-top: 1em;
    margin-bottom: 0.5em;
    border-radius: 0.3em;
}

#sair:hover {
    background-color: #88baff;
}