@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f5f0;
    min-height: 100vh;
}

.l-pasta {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr auto 1fr;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.l-pasta__header {
    grid-area: 1/1/2/4;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.l-pasta__logo {
    width: 8rem;
    height: 3rem;
    text-align: center;
}

.l-pasta__logo img {
    width: 3rem;

}

.l-pasta__maior {
    grid-area: 2/1/3/4;
    padding: 1rem;
    box-sizing: border-box;
    overflow: auto;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-flow: row wrap;
    gap: .2rem;

}

.l-pasta__menor {
    grid-area: 2/1/3/3;
    padding: 1rem;
    box-sizing: border-box;
    overflow: auto;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-flow: row wrap;
    gap: .3rem;
}


.l-pasta__footer {
    grid-area: 3/1/4/4;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.l-pasta__info {
    background-color: #3a2c24;
    color: #c2a27f;
    padding: .3rem;
    box-sizing: border-box;
    border-radius: 0 1.3rem 0 0;
    width: 90%;
    height: auto;
    min-width: 20rem;
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.2), 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.l-pasta__menu {
    /* background: linear-gradient(145deg, #f0e0d0, #d0c0b0); */
    background-color: #925f36;
    border-radius: 0 0 0 .5rem;
    width: 80%;
    height: 3rem;
    min-width: 20rem;
    padding-left: .5rem;
    box-sizing: border-box;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.l-pasta__menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}

.l-pasta__menu a {
    display: block;
    color: #f8f5f0;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    padding: 5px 10px;
    box-sizing: border-box;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    white-space: nowrap;
    height: 3rem;

}

.l-pasta__menu a:hover {
    background: rgba(0, 0, 0, .1);

}

/* Tabelas */

.c-tab-mov {
    width: 100%;
    margin-bottom: 3rem;
    border-collapse: collapse;


}

.c-tab-mov caption {
    font-size: 1.5rem;
    color: #fafafa;
    text-transform: uppercase;
    background-color: #925f36;
    border-radius: .5rem .5rem 0 0;

}

.c-tab-mov__thead {
    width: 100%;
    background-color: #925f36;
    border: .2rem solid #e0cfbf;
    height: 3rem;

}

.c-tab-mov th {
    padding: .3em;
    text-align: center;
    box-sizing: border-box;
    font-size: 1.2em;
    font-weight: 500;
    border: .1rem solid #e0cfbf
}

.c-tab-mov td {
    width: auto;
    background-color: #faf7f2;
    padding: .3em;
    border: .1rem solid #e0cfbf;
    box-sizing: border-box;
    color: #3a2c24
}

.c-tab-mov__tbody {
    width: 100%;
    background-color: rgb(255, 255, 230);
    border: .1rem solid #999
}

.c-tab-mov__tr {
    width: 100%;
    border: 1px solid #999
}



.c-tab-mov__tfoot {
    width: 99%;
    border: 2px solid #999;
    height: 3rem
}