html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

.custom-header {
    display: relative;
    flex-direction: column;
    margin-top: 0px;
    padding: 0px;
    width: 100vw; 
    box-sizing: border-box; 
    color: #4D4D4D;
}

.sombra-box {
    border: 2px solid #ccc;
    box-shadow: 7px 5px 6px 0px rgba(0, 0, 0, 0.1)
}

.topo-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding-left: 40px;
    padding-top: 40px;
}

.texto-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.logo-header {
    height: 73px;
    width: auto;
    width: auto;
    display: block;
}

.linha-vertical {
    width: 1px;
    height: 60px;
    background-color: #C3C6CA;
    /* align-self: stretch;  faz a linha ocupar toda a altura do maior item */
}

.titulo-header {
    margin: 0;
    font-size: 36px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    /* 300->leve   400->normal  700->negrito  */
}

.content-header {
    width: 100%;
    height: auto;
    margin-top: 20px;
    padding: 0;
}
.content-header img {
    width: 100%;
    height: auto;
    display: block; /* remove espaços extras causados por inline-block */
}

/*    INICIO FOOTER  */

footer.box-footer {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #3A210F;
}

.nav-footer {
    width: 100%;
    padding-top: 50px;
    align-items: center;
    text-align: center;
}

.nav-footer p {
    color: #ffffff;
    size: 11px;
    padding: 15PX 0px;
}

.nav-footer a {
    color: #ffffff;
    size: 11px;
    font-weight: bold;
    text-decoration: underline;
}

.nav-footer img {
    width: 100%;
}

.full-width-container {
    width: 100%;
    background-color: #FFFFFF;
}
