* {
    margin: 0;
    padding: 0;
    font-family: "Cabin", sans-serif;
    font-optical-sizing: auto;
}

body {
    width: 100% !important;
    height: 100%;
    overflow-x: hidden;
}

.container-nav {
    width: 100%;
    height: 100px;
    background-color: #3d3d3d;
}

#card {
    border: none;
    display: flex;
    justify-content: center;
    width: 40%;
}

#sistema {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

#logo {
    width: 50px;
}

#logo-text {
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

#nav-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.title-section {
    font-weight: bold;
    font-size: 25px;
    color: #8c695d
}

.text-field {
    color: #404040;
    font-size: 15px;
}

#container {
    display: flex;
    flex-direction: row;
}

.container>div {
    width: 50%;
    /* ajuste o tamanho dos containers */
    margin: 10px;
    /* ajuste o espaçamento */
}

#container {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 2fr;
    grid-gap: 20px;
}

.title-noti {
    font-weight: bold;
    font-size: 30px;
    color: #b38474
}

.img-noti {
    width: 100%;
}

#image-card {
    width: 130px;
    padding: 15px;
}

footer {
    width: 100%;
    height: 30px;
    background-color: #3d3d3d;
    display: flex;
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    font-size: 18px;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    text-align: center;
    color: white;
    font-weight: 300;
    padding: 10px;
    font-size: small;
}

.banner {
    width: 100%;
    height: 550px;
    overflow: hidden;
}

button {
    overflow: hidden;
}

.lista {
    list-style: circle;
}

@media screen and (max-width: 800px) {
    #container {
        grid-template-columns: 1fr;
    }

    .container-nav {
        width: 100%;
        height: 500px;
        background-color: #3d3d3d;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }


}