* {
    margin: 0px;
    padding: 0px;
}


div, article, section, nav {
    transition: all .5s ease;
    transition-delay: 0.2s;
}

.header-icon {
    margin: 6px;
    font-weight: 600;
    font-family: inherit;
    font-size: 0.813em;
    color: #A0A0A0;
}

/**
CSS BOOT - RONALDO SILVA
 */
/***********************************
######## HTML CHARS CONFIG #########
***********************************/


/*ARRENDODAR*/
.radius {
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.radius10 {
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.radius50 {
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
}

/* MARGENS*/
.m_top-5 {
    margin-top: 5px;
}

.m_botton {
    margin-bottom: 15px;
}

.m_left {
    margin-left: 15px;
}

.m_right {
    margin-right: 15px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex .flex-1 {
    flex-basis: 100%;
}

.flex .flex-2 {
    flex-basis: calc(50% - 40px);
    margin: 20px;
}

.flex .flex-3 {
    flex-basis: calc(33.33% - 30px);
    margin: 15px;
}

.flex .flex-4 {
    flex-basis: calc(25% - 20px);
    margin: 10px;
}

.htmlchars {
    display: block;
    width: 100%;
}

.htmlchars h3 {
    display: block;
    font-size: 2em;
    font-weight: 300;
    margin-bottom: 30px
}

.htmlchars h4 {
    display: block;
    font-size: 1.8em;
    font-weight: 300;
    margin-bottom: 30px
}

.htmlchars h5 {
    display: block;
    font-size: 1.6em;
    font-weight: 300;
    margin-bottom: 30px
}

.htmlchars p {
    /*margin-bottom: 10px;*/
    font-size: 0.9em;
    font-weight: 400;
}

.htmlchars iframe {
    width: 100%;
    border: none;
}

.htmlchars ul {
    list-style: circle;
    margin: 20px 30px;
}

.htmlchars ol {
    margin: 20px 30px;
}

.htmlchars form {
    padding: 20px;
    background: #fbfbfb;
    margin: 20px 0;
}

.htmlchars form label {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9em;
    text-transform: uppercase;
}

.htmlchars form input,
.htmlchars form textarea {
    display: block;
    margin-top: 10px;
}

.htmlchars a {
    color: #0E96E5;
    text-decoration: none;
}

.htmlchars a:hover {
    text-decoration: underline;
}

.htmlchars strong {
    font-weight: bold;
}


.label {
    display: block;
    margin-bottom: 15px;
}

.label a {
    display: inline-block;
    margin-left: 10px;
    font-weight: 500;
    text-decoration: none;
    color: #008068;
}

.label a:hover {
    color: #00B494;
}


.label_50 {
    float: left;
    width: 100%;
}

.label_50 .label {
    float: left;
    width: 49%;
}

.label_50 .label:nth-of-type(2n+0) {
    margin-left: 2%;
}

.label_50 .label:last-of-type {
    margin-right: 0;
}

.label_33 {
    float: left;
    width: 100%;
}

.label_33 .label {
    float: left;
    width: 32.6666%;
    margin-left: 1%;
}

.label_33 .label:first-of-type {
    margin-left: 0;
}

.label_33 .label:last-of-type {
    margin-right: 0;
}


/************
MODAL COTACAO - RONALDO SILVA
 */
.modal-cotacao {
    position: fixed;
    height: 100%;
    width: 30em;
    box-shadow: 0px 4px 20px 10px rgba(0, 0, 0, 0.2);
    border-radius: 16px 0px 0px 16px;
    text-align: center;
    padding: 1rem;
    transition: all 0.3 ease;
    right: -200%;
    top: 0;
    z-index: 10;
}

.campos_formulario {
    max-height: 100%;
}

.fechar-modal {
    width: 100%;
    text-align: right;
}

.fechar-modal img {
    cursor: pointer;
}

#check-modal {
    display: none;
}

.modal-cotacao h1 {
    font-weight: 700;
    color: #fff;
    font-size: 1.8rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    line-height: 2.5rem;
    margin-bottom: 2rem;
}

.modal-cotacao input {
    background-color: #4B4B4B;
    color: #A0A0A0;
    padding: 15px;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.modal-cotacao select {
    background-color: #4B4B4B;
    color: #A0A0A0;
    padding: 15px;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.logo-modal {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.modal-cotacao button {
    font-weight: 600;
    color: #363636;
    background-color: #FFD600;
    width: 100%;
    height: 3.5rem;
}


#check-modal:checked ~ #modal-cotacao {
    right: 0;
}

#abre-modal:checked ~ #modal-cotacao {
    right: 0;
}

#abre-modal {
    display: none;
}

/***********
HEADER BAR - RONALDO SILVA
 */
.head-bar {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    align-items: center;
    padding-top: 0.2%;
    padding-bottom: 0.2%;
}

.head-bar p {
    display: inline;
    color: rgba(160, 160, 160, 1);
    font-size: 0.813rem;
    font-weight: 700;
}

.head-bar img {
    margin-left: 1.5rem;
}

.head-main {
    display: flex;
    height: 4.375rem;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    border-bottom: 1px rgba(229, 229, 229, 1) solid;
    /* width: 60%; */
    /* text-align: right; */
}

#check {
    display: none;
}

.logo-head-area {
    width: 20%;
}

.logo-head {
    max-width: 100%;
}

/*
MENU - RONALDO SILVA
 */
.menu-mobile-botao {
    display: none;
    background: transparent;
}

.menu-head {
    width: 65%;
    /* text-align: right; */
}

.menu-head ul {
    /* margin: auto; */
    /* width: 60%; */
    /*text-align: right;*/
}

/*.menu-head ul li{*/
/*   !*display: inline;*!*/
/*   !*margin-left: 1rem;*!*/
/*   !*width: 33%;*!*/
/*   !*max-width: 100%;*!*/
/*}*/
/* .menu-head ul li a{*/
/*  transition: color 0.5s;*/
/*}*/
/*.menu-head ul li a:hover{*/
/*  color: #000000;*/
/*}*/
.header__toggle,
.header__close {
    display: none;
}


.menu-head {
    /*display: none;*/
}

.nav__menu-lista {
    /* display: flex; */
    /* align-items: center; */
    text-align: right;
}

.nav__menu-lista-item {
    /* margin: 0 8px; */
    display: inline;
    margin-left: 1rem;
    width: 33%;
    max-width: 100%;
}


.nav__menu-lista-item-link {

    text-align: right;

    padding: 10px;
    color: #a0a0a0;
    font-size: 1rem;
    font-width: 700;
    border-radius: 5px;
}

.nav__menu-lista-item-link:hover {
    /*background-color: #0E96E5;*/
    color: #000000;
}

.nav__menu-lista-item-cotacao {
    display: none;
}

.nav__submenu {
    display: none;
    /* border-top: 1px solid #cecece; */
    margin-top: 100px;
    padding-top: 10px;
}

.nav__submenu .db-flex-row a {
    margin: 1.2em 0;
}

.dobra1-cotacao form {
    margin-top: -200px;
}


/*BOTAO MENU*/
.btn-head-area {
    width: 20%;
    text-align: right;
}

.btn-head {
    text-align: center;
    padding: 10px 30px;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    cursor: pointer;
}

.dobra1-home {
    display: flex;
    background-image: url(../images/rectangle-157.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding-top: 7%;
    padding-bottom: 7%;

}

.form-area-db {
    width: 100%;
    height: 100%;
}

.lado1-db1 {
    width: 100%;
    height: 100%;
}

.lado2-db1 {

    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
}

/*
PAGE COTACAO - RONALDO SILVA
*/
.dobra1-cotacao {
    margin-top: -200px;
}

/*
FORMULARIO - HEADER COTACAO - RONALDO SILVA
 */
.form-main {
    display: flex;
    border-radius: 24px;
    max-width: 100%;
    width: 33.875rem;
    height: 35.625rem;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    transition: 0.5s;
}


.form-main h2 {
    max-width: 100%;
    font-weight: 700;
    text-align: center;
    font-size: 2rem;
    padding: 0 15px 40px 15px;
}

.form-main form {
    width: 100%;
}

.form-main input {
    max-width: 100%;
    color: rgba(160, 163, 189, 1);
    background-color: #EFF0F7;
    border-radius: 16px;
    margin-bottom: 1rem;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 2rem;
    height: 4rem;
}

.form-main select {
    max-width: 100%;
    color: rgba(160, 163, 189, 1);
    background-color: #EFF0F7;
    border-radius: 16px;
    margin-bottom: 1rem;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 2rem;
    height: 4rem;
}

.form-main button {
    max-width: 100%;
    width: 100%;
    height: 4rem;
}

.rds_step {
    display: none;
}

.rds_step.active {
    display: block;
}


.container-form-consulta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    background-color: white;
    box-shadow: 0px 0px 20px #000000;
    padding: 20px;
    border-radius: 8px;
}

.form-consulta-home {
    width: 100%;
    margin-top: 20px;
}

.form-consulta-home input {
    width: 100%;
    border: 1.5px solid #cecece;
    padding: 6px;
    font-size: 18px;
    margin-top: 5px;
    border-radius: 4px;
}

button.btn-step-voltar,
button.btn-step-voltar-b,
button.bnt-enviar,
button.btn-step-enviar,
button.btn-step-continuar {
    float: right;
    margin-top: 10px;
    padding: 10px 0px 10px 0px;
    border: none;
    outline: none;
    background-color: #363636;
    font-size: 15px;
    cursor: pointer;
    width: 200px;

}


button.btn-step-voltar, button.btn-step-voltar-b {
    background-color: #878787;
    float: left;
    width: 35%;
}

button.btn-step-continuar, button.btn-step-enviar,
button.btn-step-voltar, button.btn-step-voltar-b {
    width: 49%;

}

button.btn-step-voltar-b,
button.bnt-voltar {
    float: left;
}

button.bnt-enviar {
    background-color: #5cc4ef;
}

.dobra2-home {
    display: flex;
}

.db2-inside {
    width: 100%;
    height: 100%;
}

.db2-inside header {
    display: none;
}

.db2-inside h2 {
    margin-bottom: 10%;

}

.db2-inside div:first-child {
    align-items: flex-start;
}

.cards-home-area {
    width: 100%;
    text-align: center;
    margin: auto;
    flex-wrap: wrap;
}

.card-home {
    width: 33%;
    padding-right: 3%;
    padding-left: 3%;
}

.card-home img {
    width: 35%;
}

.card-home h3 {
    font-weight: 600;
    margin-top: 10%;
    margin-bottom: 10%;
}

.card-home p {
    font-weight: 500;
    color: rgba(148, 146, 146, 1);
    font-size: 1.25rem;
}

.relation {
    position: relative;
}

.relation-img {
    position: absolute;
    top: -15%;
    left: 75%;
    width: 40% !important;
}

.relation-img-2 {
    position: absolute;
    bottom: 45%;
    left: 75%;
}

.dobra3-home {

    padding-right: -10px;
}

.dobra3-home h2 {
    margin: 0px;
    line-height: 60px;
}

.dobra3-home p {
    font-weight: 500;
    color: rgba(148, 146, 146, 1);
    font-size: 1.875rem;
    display: inline;
    line-height: 40px;
}

.dobra3-home a img {
    margin-left: 1%;
}

.db3-side1 {
    width: 40%;
}

.db3-side2 {
    background-image: url(../images/db-3img.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 50%;
    height: 40em;
    margin-left: 5%;
}

.tit-sd1 {
    margin-bottom: 9% !important;
    padding-right: 16%;
}


.db3-facacotacao {
    display: block;
    margin-top: 8%;

}

.db3-facacotacao p {
    padding-right: 0;
    font-weight: 700;
    color: black !important;
    display: inline;
}


.db4-side1 {
    height: 40em;
    background-image: url(../images/db-4fundo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 50%;
}

.db4-side2 {
    display: flex;
    height: 40em;
    width: 40%;
    flex-direction: column;
    justify-content: center;
}


.dobra4-home {
    height: 50rem;
}

.db5-side2 {
    height: 40em;
    width: 50%;
    background-image: url(../images/db-5fundo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.db5-side2-1 {
    height: 40em;
    width: 50%;
    background-image: url(../images/obrigado-contato.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tit-comment {
    margin-bottom: 3rem;
}

.comt-google {
    padding: 40px;
    box-shadow: 0px 10px 20px 10px rgb(0 0 0 / 5%);
    border-radius: 16px;
    height: 450px;
    display: flex;
    margin-left: 14px;
    margin-bottom: 5%;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.comt-google h2 {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.comt-google p {
    color: rgba(156, 160, 172, 1);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 1px;
    line-height: 25px;
}

.coment-footer {
    display: inline-flex;
    align-items: center;
    margin-top: 3rem;
}

.coment-footer p {
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 10px;

}

.coment-footer img {
    height: 1rem;
    width: 1rem;
}

.img-perfil-cmt img {
    width: 80%;
    margin-bottom: 1rem;
}

.img-avaliacao-cmt img {
    width: 35%;
    margin-bottom: 0.3rem;

}

.comentarios_area {
    width: 100%;
    height: 100%;
}

.cards-comentarios {
    width: 100%;
    height: 100%;
    flex-wrap: wrap;

}

.cards-comentarios article {
    min-width: 30%;
    max-width: 30%;
    width: 30%;

}

.dobra7-area {
    width: 100%;
    height: 100%;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.img-db7-area {
    position: relative;
}

.img-db7-area img {
    max-width: 100%;
}

.btn-db7 {
    position: absolute;
    font-weight: 600;
    background-color: #FFD600;
    color: #000000;
    width: 15%;
    height: 5%;
    right: 27%;
    margin-top: 12rem;
    cursor: pointer;
}

.parceiros_area {
    padding-top: 5rem;
    padding-bottom: 5rem;
    height: 100%;
}

.parceiros_area h2 {
    margin-bottom: 5%;
}

.parceiros_logos {

    width: 100%;
    height: 100%;
}

.logo-parc {
    width: 14.2%;
    height: 100%;
}

.parceiros_logos img {
    max-width: 90%;
}

.footer {
    padding-top: 4%;
}

.footer p, ul li a {
    font-weight: 500;
    color: rgba(148, 146, 146, 1);
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 25px;
}

.footer h3 {
    font-weight: 700;
    color: #000000;
    font-size: 1.25rem;
}

.footer-linha-1 {
    align-content: flex-start;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-linha-1 h3 {
    margin-bottom: 10%;
}

/* ---------------------- Coluna 1 ---------------------- */

.footer-collun-1 {
    align-items: flex-start;
    width: 25%;
    height: 100%;
    padding-right: 3%;
}

.footer-collun-1 img {
    /* width: 65%; */
    margin-bottom: 10%;
}

.footer-collun-1 p {
    margin-bottom: 15%;
}

.footer-collun-1 div {
    margin-bottom: 15%;
}

.footer-collun-1 span {
    background-color: #ECECEE;
    border-radius: 8px;
    width: 55px;
    height: 40px;
    padding: 5px;
    margin-right: 10%;

}

.social-media-footer img {
    width: 100%;
    margin-bottom: 0;
}

.end-footer p {
    line-height: 22px;
    font-size: 0.85rem;
}

/* ---------------------- Coluna 2 ---------------------- */

.footer-collun-2 {
    width: 25%;
    height: 100%;
    align-items: flex-start;
    padding-left: 3%;
    padding-right: 3%;
}

.footer-collun-2 nav ul li {
    margin-bottom: 6%;
}

.footer_sesscao-b {
    margin-top: 20px;
}


/* ---------------------- Coluna 3 ---------------------- */

.footer-collun-3 {
    padding-left: 3%;
    padding-right: 3%;
    width: 25%;
    height: 100%;
    align-items: flex-start;
}

.footer-collun-3 nav ul li {
    margin-bottom: 6%;
}

/* ---------------------- Coluna 4 ---------------------- */

.footer-collun-4 {
    align-items: flex-start;
    width: 25%;
    height: 100%;
    padding-left: 3%;

}

.footer-collun-4 p {
    font-weight: 700;
    margin-bottom: 5%;
}

.footer-collun-4 img {
    margin-top: 5%;
    margin-bottom: 5%;
    max-width: 100%;
}

.footer-collun-5 {
    justify-content: space-between;
}

.footer-collun-5 p {
    font-size: 0.738rem;
    display: inline-flex;
}

.footer-right img {
    width: 70%;
    margin-left: 5px;
}

.footer-right {
    padding-left: 3%;

}

.footer-left {
    padding-right: 3%;
}

/*
* FORM CONTATO - COTACAO - RONALDO SILVA
 */

.formCotacaoA {
    width: 100%;
}

.ct-cotacao-dobra1 {
    height: 50rem;
    width: 100%;
}

.ct-cotacao-img {
    background-image: url(../images/parceiro-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 50%;
    width: 100%;
}

.form-contato-cotacao {
    background-color: #fff;
    display: flex;
    border-radius: 24px;
    max-width: 100%;
    /*width: 40em;*/
    /*height: 35.625rem;*/
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    margin-top: -400px;
}

.form-contato-cotacao input {
    max-width: 100%;
    color: rgba(160, 163, 189, 1);
    background-color: #EFF0F7;
    border-radius: 16px;
    margin-bottom: 1rem;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 2rem;
    height: 4rem;
}

.form-contato-cotacao select {
    max-width: 100%;
    color: rgba(160, 163, 189, 1);
    background-color: #EFF0F7;
    border-radius: 16px;
    margin-bottom: 1rem;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 2rem;
    height: 4rem;
}


.form-contato-cotacao textarea {
    color: #000000;
    background-color: #EFF0F7;
    border-radius: 16px;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;

}

.form-contato-cotacao div {
    width: 100%;
}

.form-contato-cotacao button {
    width: 100%;
    height: 4rem;
}

/*------------------------- contato ------------------------------*/

.form-contato2 {

    display: none;

}

.ctn-dobra1 {
    height: 50rem;
    width: 100%;

}

.ctn-area-geral {
    height: 100%;
    width: 100%;
    position: relative;
}

.ctn-linha1 {
    background-image: url(../images/vitrine_contato2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 50%;
    width: 100%;

}

.ctn-linha2 {

    height: 50%;
    width: 100%;
}

.ctn-area1 {
    position: absolute;
    width: 100%;
    height: 100%;

}

.ctn-lado1 {
    width: 50%;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
}

.ctn-lado2 {
    display: flex;
    width: 50%;
    height: 100%;


}

.ctn-linha1-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 90%;
    height: 50%;
    color: #fff;
    padding-left: 4.5em;
    padding-bottom: 3em;

}

.ctn-linha1-area h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 3%;

}

.ctn-linha1-area p {
    font-weight: 600;
    font-size: 1.3rem;

}

.ctn-linha2-area {
    width: 90%;
    height: 50%;
    justify-content: flex-start
}

.card-ctn {
    font-size: 1rem;
    width: 40%;

}

.card-ctn h3 {
    font-size: 1rem;
    margin-top: 1rem;

}

.card-ctn p {

    margin-top: 1rem;

}

.ctn-form {
    max-width: 100%;
}

.form-contato {
    background-color: #fff;
    display: flex;
    border-radius: 24px;
    max-width: 100%;
    width: 40em;
    height: 35.625rem;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.form-contato input {
    max-width: 100%;
    color: rgba(160, 163, 189, 1);
    background-color: #EFF0F7;
    border-radius: 16px;
    margin-bottom: 1rem;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 2rem;
    height: 4rem;
}

.form-contato textarea {
    color: #000000;
    background-color: #EFF0F7;
    border-radius: 16px;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;

}

.form-contato div {
    width: 100%;
}

.form-contato button {
    width: 100%;
    height: 4rem;
}

.ctn-dobra2 {
    width: 100%;
    height: 30em;
    background-image: url(../images/ctn-fundo-dobra2.png);
    background-size: cover;
    background-repeat: no-repeat;
}


/*------------------------- Sobre ------------------------------*/

.header-sobre {
    width: 100%;
    height: 24em;
    background-image: url(../images/fundo-sobre.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: -9em;
}

.sd-1-tm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    width: 25em;
}


.sobre-timeline-area1 h1 {
    margin-top: 3%;
    margin-bottom: 3%;
    /* flex-basis: 30%; */
}

.sobre-timeline-area {
    width: 100%;
    height: 100%;
    /*margin-top: -10%;*/
}

.sobre-timeline-area h2 {
    color: #FFD600;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sobre-timeline-area h3 {
    color: #000000;
    font-weight: 600;
    font-size: 1.5rem;
    text-align: right;
}

.sobre-timeline-area p {
    color: rgba(148, 146, 146, 1);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 25px;
}

.timeline-side1 {
    width: 50%;
    height: 100%;

}

.timeline-side2 {
    width: 50%;
    height: 100%;
    border-left: solid 2px #c4c4c4;
    padding: 5rem;
}

.timeline-box {
    width: 100%;
    height: 100%;

}

.tm-box1 {
    position: relative;

}

.quadrado-icon {
    position: absolute;
    width: 1rem;
    height: 1rem;
    background-color: #c4c4c4;
}

.db3-side1-sobre {
    width: 50%;
    height: 40em;
    background-image: url(../images/db-sobre-3.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.db3-side2-sobre {
    width: 50%;
    height: 100%;

}

.db3-side2-sobre p {
    font-weight: 500;
    font-size: 1.3rem;
    color: rgba(148, 146, 146, 1);
    padding-right: 45%;
    line-height: 30px;
    margin-bottom: 5%;
}

.db3-side2-sobre h2 {
    margin-bottom: 5%;
}

.btn-db6 {
    margin-top: 21rem;
}

.db3-cotacao {
    display: flex;
    margin-top: 8%;
}

.db3-cotacao p {
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    color: #000000 !important;
    padding-right: 2% !important;
    margin-bottom: 0 !important;

}


/*------------------------- TRABALHE ------------------------------*/
.trabalhe-db1 {
    width: 100%;
    height: 100%;
    background-image: url(../images/header-img-apoio.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.trabalhe-db1-lado1 {
    height: 35em;

}

.trabalhe-db1-lado2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 3%;

}

.trabalhe-db1-lado2 h1 {
    font-weight: 700;
    margin-bottom: 5%;
}

.trabalhe-db1-lado2 p {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 5%;
    line-height: 25px;
    margin-right: 13%;
}


.trabalhe_db2 {
    background: #F8F8FA;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.trabalhe_db2 article {
    padding: 130px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1390px;
}

.trabalhe_db2 article header {
    max-width: 972px;
    padding: 0 20px;
}

.trabalhe_db2 article header h1 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 70px;
    text-align: center;
    letter-spacing: 1px;
    color: #000000;
}

.trabalhe_db2_content {
    width: 100%;
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.trabalhe_db2_content_error {
    background: white;
    border: 8px;
    padding: 20px 50px;
    flex-basis: 100%;

}

.trabalhe_db2_content_error p {
    margin-top: 15px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #949292;
}

.trabalhe_db2_item {
    width: 100%;
    max-width: 428px;
    background: #FFFFFF;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    padding: 27px 14px;
}

.trabalhe_db2_item_content_title h2 {
    margin-top: 20px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #313237;
}

.trabalhe_db2_item_content_title p {
    margin-top: 15px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #949292;
}

.trabalhe_db2_item_content_footer {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.trabalhe_db2_item_content_footer p {
    margin-left: 5px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #949292;
}

.trabalhe_db3 {
    background: #FFD600;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.trabalhe_db3 article {
    padding: 130px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1390px;
}

.trabalhe_db3 article header {
    width: 100%;
    max-width: 634px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trabalhe_db3 article header h1 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 70px;
    text-align: center;
    letter-spacing: 1px;
    color: #000000;
}

.trabalhe_db3 article header p {
    margin-top: 30px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 1px;
    color: #363636;
}

.trabalhe_db3 article header a p {
    background: #000000;
    border-radius: 16px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 1px;
    color: #FFD600;
    padding: 30px 90px;
}


/*------------------------- Apoio ------------------------------*/

.apoio-db1 {
    width: 100%;
    height: 100%;
    background-image: url(../images/header-img-apoio.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.apoio-db1-lado1 {
    height: 35em;

}

.apoio-db1-lado2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 3%;

}

.apoio-db1-lado2 h1 {
    font-weight: 700;
    margin-bottom: 5%;
}

.apoio-db1-lado2 p {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 5%;
    line-height: 25px;
    margin-right: 13%;
}

.btn-apoio {
    font-weight: 700;
    padding: 15px 20px 0 20px;
}

.db2-col1 {
    background-image: url(../images/apoio-db2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    height: 40em;
}

.db2-col2 h2 {
    margin-bottom: 3%;
}

.db2-col2 p {
    font-weight: 500;
    font-size: 1.3rem;
    color: rgba(148, 146, 146, 1);
    padding-right: 2%;
    line-height: 30px;

}

.db3-col2 {
    background-image: url(../images/apoio-db3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    height: 40em;
}

.btn-apoio2 {
    color: rgba(160, 163, 189, 1);
    background-color: #EFF0F7;
    margin-right: 1rem;
    text-align: left;
    padding: 10px;
    width: 15rem;
    position: relative;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.btn-estado {
    width: 5rem;
}

.btn-apoio-pesquisa {
    width: 3rem;
}

.apoio-linha-1 {
    margin-bottom: 3rem;
}

.apoio-linha-1 p {
    margin-top: 2rem;
}

.apoio-linha-1 h2 {
    font-size: 3rem;
}

.btn-apoio-pesquisa img {
    width: 40%;
}

.btn-apoio-pesquisa {
    display: flex;
    align-items: center;
    justify-content: center;
}

.apoio-linha-2 {
    width: 100%;
}

.apoio-linha-2-col1 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 3rem;
    padding-right: 4rem;
    width: 50%;
    height: 100%;
}

.apoio-linha-2-col1 img {
    width: 65%;
    border: 2px solid #fff;
    border-radius: 10px;

    -webkit-box-shadow: 1px 2px 5px rgba(50, 50, 50, 0.77);
    -moz-box-shadow: 1px 2px 5px rgba(50, 50, 50, 0.77);
    box-shadow: 1px 2px 5px rgba(50, 50, 50, 0.77);
}

.apoio-linha-2-col2 {
    padding-top: 3rem;
    width: 50%;
    height: 100%;
}

.apoio-linha-2-col2 b {
    font-weight: 600;

}

.apoio-linha-2-col2 h3 {
    line-height: 30px;
}

.btn-apoio-rota {
    margin-top: 25px;
    width: 22em;
}

.faq-area h2 {
    font-size: 2.5rem;
    margin-bottom: 5rem;
}

.faq-area h3 {
    font-weight: bold;
    margin-bottom: 2rem;
}

.faq-area p {
    line-height: 25px;
}

.faq-col-1 {
    width: 30%;
    margin-right: 4rem;
}

.faq-col-2 {
    width: 70%;
}

.faq-col-1 span {
    height: 6rem;
    width: 100%;

}

.faq-card {
    box-shadow: 0px 10px 20px 10px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    margin-bottom: 1rem;
    padding: 20px;
}

.faq-card p {
    font-weight: 600;
}

.faq-card-selected {
    background-color: #FFD600;
}

/* SINISTRO */

.rds_container {

    max-width: 100%;
    padding: 30px;
    margin: 0 auto;
}

.rds_sinistro_bg {
    margin: 0 auto;
    width: 100%;
    height: 40em;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-sinistro {
    margin-top: 4%;
    border-radius: 8px;
    padding: 0.7rem 3rem 0.7rem 3rem;
    font-weight: 700;
}

.btn-sinistro-tel {
    font-family: inherit;
    display: inline-block;
    /*padding: 10px 20px;*/
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    color: #FFD600;
    background: #000000;
    text-shadow: 1px 1px rgb(0 0 0 / 30%);
}

.bg-sinistro-db2 {
    background-size: contain;
    background-position-x: center;
    background-repeat: no-repeat;
    background-position: center;
    width: 50%;
    height: 40em;
    margin-left: 5%;
}

.rds_sinistro_container {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    padding-left: 5%;
    padding-right: 5%;
    padding-top: 3%;
    padding-bottom: 3%;
    height: 100%;
    max-width: 100%;
}

.db1-sinistro-col {
    display: flex;
    order: 1;
    width: 50%;
    align-items: flex-start;
    justify-content: start;
    flex-direction: column;
}

.db1-sinistro-col h2 {
    line-height: 60px;
    font-size: 2.2rem;
    text-align: left;
    font-weight: 700;
    margin-bottom: 2%;
    padding-right: 10%;
}

.db1-sinistro-col p {
    font-size: 1.5rem;
    line-height: 30px;
    font-weight: 400;
    display: inline;

}

.db1-sinistro-col2 {

}

/*SINISTRO DOBRA 02*/
.rds_sinistro_db2 {
    padding-top: 5%;
}

.rds_sinistro_db2_item1 {
    display: flex;
    /*order: 1;*/
    width: 40%;
    align-items: flex-start;
    justify-content: start;
    flex-direction: column;
    margin-top: -10%;
}

.rds_sinistro_db2_item1_p {
    font-size: 1.5rem;
    line-height: 30px;
    font-weight: 400;
    display: inline;
    margin-bottom: 5%;
}

.rds_sinistro_db2_item1 a {
    width: 100%;
}

.rds_sinistro_db2_item1 a p {
    font-size: 1.5rem;
}

.rds_sinistro_db2_item1 img {
    margin-left: 5%;
    margin-bottom: -0.3%;
}

.rds_sinistro_db2_item2 {
    width: 49%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    height: 40em;
    margin-left: 10%;
}

/*SINISTRO DOBRA 03*/
.rds_sinistro_db3 {
    padding-top: 5%;
}

.rds_sinistro_db3_container {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 3%;
    padding-bottom: 3%;
    height: 100%;
    max-width: 100%;
}

.rds_sinistro_db3_item1 {
    width: 500px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    height: 600px
}

.rds_sinistro_db3_item2 {
    display: flex;
    /*order: 1;*/
    width: 40%;
    align-items: flex-end;
    justify-content: end;
    flex-direction: column;
    margin-top: -70px;
}

.rds_sinistro_db3_item2_btn {
    border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    width: 100%;
}

.rds_sinistro_db3_item2_btn .btn {
    padding: 10px 65px;
    font-size: 1em;
}


/*------------------------- Assitencia 24h ------------------------------*/
.db1-assist-col2 {
    background-image: url(../images/assist-db1.png);
    background-size: cover;
    height: 35em;
}

.db1-assist-col1 h2 {
    margin-bottom: 5%;
}

.btn-assist {
    margin-top: 4%;
    background-color: #FFD600;
    border-radius: 8px;
    padding: 0.7rem 3rem 0.7rem 3rem;
    font-weight: 700;
}

.btn-assist img {
    width: 20%;
    margin-right: 10px;
}

.btn-assist-tel {
    font-family: inherit;
    display: inline-block;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    color: #000000;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
}

.assist-db2 h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 6rem;

}

.assist-card {
    width: 30%;
    height: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;

}

.assist-card img {
    width: 30%;
    margin-bottom: 2.5rem;
}

.assist-card h2 {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.assist-card p {
    color: rgba(148, 146, 146, 1);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 20px;
    text-align: center;
}

/*--------------------------- Notícias ----------------------------*/

.img-news-vitrine {
    width: 45%;
    margin-right: 3rem;
}

.noticia-vitrine {
    padding-right: 4rem;

}

.noticia-vitrine a {
    color: rgb(54 54 54);
    text-decoration: none;
}


.title-news-vitrine {
    font-weight: 600;
    line-height: 2rem;
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.text-news-vitrine {
    font-weight: 600;
    color: rgba(148, 146, 146, 1);
    letter-spacing: 1px;
    line-height: 1.3rem;

}

.db-flex-news {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-content: center;
    align-items: flex-end;
}

.news-nm-dt {
    margin-left: 1rem;

}

.news-nm-dt h2 {
    font-weight: 600;
    font-size: 15px;
}

.news-nm-dt p {
    font-weight: 400;
    font-size: 15px;
    color: rgba(113, 135, 151, 1);

}

.news-nm-dt a {
    color: rgb(54 54 54);
    text-decoration: none;

}

.botao-vitrine-news {

    width: 1.5rem;
    height: 1.5rem;
    margin-right: 3rem;
}

.rodape-vitrine {
    margin-top: 3rem;
}

/*--------------------------- Artigo ----------------------------*/

.img-cover-artigo {

}


/*
SESSAO DE ARTIGOS - RONALDO SILVA
 */
.rds_artigo {
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    width: 800px;
    margin: 0 auto;
}

.rds_artigo {
    flex-basis: 100%;
}

.rds_artigo_capa {
    margin: 0 auto;
    width: 100%;
    height: 30em;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rds_artigo_capa img {
    border-radius: 10px;
    width: 800px;
    height: 300px;
}

.rds_artigo_conteudo {
    flex-basis: 100%;
}

.rds_artigos_all {
    width: 800px;
    margin: 0 auto;
    align-items: center;
    align-content: center;
}

.rds_artigos_all_sec {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.3);
}

.rds_artigos_all_sec_cover img {
    width: 100%;
    border-radius: 10px;
}

.rds_artigos_all_sec_article {
    padding: 10px;
}

.rds_artigos_all_sec_article header a {
    text-decoration: none;
    color: #000;
}

.rds_artigos_all_sec_article header a h2 {
    font-weight: 600;
    line-height: 2rem;
    text-align: left;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.rds_artigos_all_sec_article header p {
    font-size: 1em;
    font-weight: 400;
}

.rds_artigos_all_sec_article_content {
    margin-top: 20px;
    display: flex;
}

.rds_artigos_all_sec_article_content_autor {
    flex-basis: 85%
}

.rds_artigos_all_sec_article_content_autor h2 {
    margin-top: 5px;
}

.rds_artigos_all_sec_article_content_seta {
    width: 45px;
}

.rds_artigos_all_sec_article_content_seta img {
    width: 30px;
    margin-top: 10px;
}


.rds_artigos_all_sec_article_content_autor img {
    width: 50px;
}

/**
FIM
 */
.db-flex-artigo {
    display: flex;
}


.artigo-conteudo p {
    font-weight: 400;
    color: rgba(148, 146, 146, 1);
    letter-spacing: 0.8px;
    font-size: 0.9rem;
    line-height: 1.5rem;
}

.texto-artigo {
    margin-top: 1rem;
}

.db-flex-artigo {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
}

/*--------------------------- Parceiro ----------------------------*/
.db3-cotacao {
    align-items: center;
}

.parceiro-db1 {
    background-image: url(../images/parceiro-header.png);
}

.parceiro-db1-lado2 h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    /* margin-left: 50px; */
    /* padding: 0 50px; */
}

.parceiro-db1-lado2 p {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 25px;
    margin-bottom: 2rem;
    /* margin-left: 50px; */
    /* padding: 0 50px; */
}

.parceiro-db1-lado2 button {

    height: 2.5rem;
}

.parceiro-db1-lado2 {
    height: 30em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.db2-col1-parceiro {
    background-image: url(../images/parceiro-db2.png);
    background-size: contain;
    height: 40em;
    background-repeat: no-repeat;
}

.db-parc h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 2.8rem;
    padding-left: 10%;

}

.db-parc p {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 25px;
    margin-bottom: 2rem;
    color: #949292;
    padding-left: 10%;

}

.db-parc h3 {
    font-size: 1.2rem;
    line-height: 25px;
    font-weight: 700;
    color: #000000;
    margin-right: 1rem;
    padding-left: 10%;
}

.db-parc img {
    width: 20px;
    height: 20px;
}

.db-parc-2 h2 {
    font-size: 2.5rem;

}

.db2-col2 {
    padding-right: 10%;
}

.db2-col2-left {
    padding-left: 10%;
}

.db2-col2-right {
    padding-right: 10%;
}

.db-parc-3 h2 {
    font-size: 2.5rem;

}

.db-parc-4 h2 {
    font-size: 2.5rem;

}

.db3-col1-parceiro {
    padding-right: 10%;
    padding-left: 10%;
}

.db3-col2-parceiro {
    background-image: url(../images/parceiro-db3.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 40em;
}

.db2-col2-parc {
    padding-right: 18%;
}

.db3-col2-parc {
    height: 40em;
}

.form-parceiro input {
    margin-left: 0.5rem;
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 15px;
    border-radius: 16px;
    background-color: #EFF0F6;
    color: #A0A3BD;
}

.form-parceiro select {
    width: 100%;
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 15px;
    border-radius: 16px;
    background-color: #EFF0F6;
    color: #A0A3BD;
}

.form-parceiro option {
    color: #A0A3BD;
}

.form-parc-db {
    width: 100%;
}

.form-parceiro button {
    width: 100%;
    margin-left: 0.5rem;
}

.db4-col2-parc {
    height: 50em;
    background-image: url(../images/parceiro-db4.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.termos-header {
    width: 100%;
    height: 30em;
    background-image: url(../images/vitrine_termos.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*.termos-header {*/
/*    width: 100%;*/
/*    height: 30em;*/
/*    background-image: url(../images/termos-header.png);*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/

/*}*/

.texto-termos {
    padding: 2em;
}


/*--------------------------- Responsividade ----------------------------*/

@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .tit-head-left {
        font-size: 2.8rem !important;
    }

    .tit-head-center {
        font-size: 2.5rem !important;
    }

    .dobra3-home p {

        font-size: 1.5rem;
        line-height: 30px;
    }

    .modal-cotacao input {
        padding: 11px;
        margin-bottom: 0.7rem;
    }

    .logo-modal {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .modal-cotacao h1 {
        margin-bottom: 1rem;
    }

    .img-db7-area img {
        max-width: 100%;
        padding: 0px 8% 0px 8%;
    }

    .btn-db7 {
        height: 8%;

    }

    .comt-google p {
        color: rgba(156, 160, 172, 1);
        font-weight: 600;
        font-size: 1rem;
        letter-spacing: 1px;
        line-height: 20px;
    }
}

@media screen and (min-width: 0px) and (max-width: 1024px) {
    .content {
        padding-left: 2%;
        padding-right: 2%;
    }

    .head-main {
        position: relative;
    }

    .menu-mobile-botao {
        display: block;
        width: 25px;
        height: 25px;
        z-index: 10;
    }

    .menu-mobile-botao img {

        width: 100%;
        height: 100%;

    }

    .menu-item-area {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 4em;

    }

    .menu-item {
        margin-top: 1.5rem;
        width: 100%;
        color: rgba(148, 146, 146, 1);
    }

    .menu-item2 li {

        font-size: 6rem;
    }

    .menu-item img {

        width: 25px;
        height: 25px;
        margin-right: 0.5rem;
    }

    .menu-item2 {
        font-size: 2rem;
        font-weight: 400;
        letter-spacing: 2px;
        padding: 1.2rem;
        width: 100%;
        color: rgb(194 194 194);

    }


    .menu-item p {
        font-weight: 400;
        color: rgb(194 194 194);
        font-size: 1rem;
    }


    #menu-mobile {

        height: 100%;
        width: 100%;
        display: block;
        flex-direction: column;
        border-radius: 0px 0px 20px 20px;
        margin-right: 20px;
        position: fixed;
        z-index: 2;
        transition: all .15s ease-in;
        opacity: 0;
        left: 0;
        margin-top: 5em;

    }

    #menu-mobile ul {

        margin-top: 3em;

    }

    #check:checked ~ #menu-mobile {
        transform: translateY(-4em);
        opacity: 1;
    }


    .content-db {
        padding-left: 2%;
        padding-right: 2%;
        padding-top: 15%;
        padding-bottom: 15%;

    }

    .head-bar {
        display: none;
    }


    .btn-head-area {
        display: none;
    }

    .logo-head-area {
        text-align: center;
        width: 100%;
    }

    .logo-head {
        max-width: 100%;
    }

    .dobra2-home {
        height: 100%;
    }

    .card-home {
        width: 100%;
        padding-right: 3%;
        padding-left: 3%;
        margin-bottom: 15%;

    }

    .card-home img {
        max-width: 25%;
    }

    .card-home:last-child {

        margin-bottom: 5%;
    }

    .card-home h3 {
        margin-bottom: 20px;
    }

    .form-main {
        width: 85%;
        padding: 1.2rem;
        height: 24em;
    }

    .form-main h2 {
        padding: 10px;
        margin-bottom: 10px;
        font-size: 1.8rem;
    }

    .form-main input {
        height: 3.2rem;
    }

    .form-main button {
        height: 3.2rem;
    }


    .lado1-db1 {
        display: none;
    }

    .lado2-db1 {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tit-head-center {
        font-size: 1.7rem;
        text-align: center;
        margin-bottom: 10%;
    }

    .tit-head-left {
        font-size: 1.7rem;
    }

    .tit-sd1 {
        padding-right: 3px;
        padding-left: 3px;
    }

    .card-home p {
        font-size: 1rem;
    }

    .cards-home-area {
        display: block;
        height: 100% !important;
    }

    .relation-img-2 {
        display: none;
    }

    .relation-img {
        display: none
    }

    .dobra3-home {
        display: flex;
        flex-direction: column;
    }

    .db3-side1 {
        text-align: center;
        width: 100%;
    }

    .db3-side2 {
        width: 100%;
        height: 20em;
    }

    .tit-sd1 {
        line-height: 40px !important;
        text-align: center;
        padding-right: 0;
    }

    .dobra3-home p {
        font-size: 1.2rem;
        line-height: 30px;
    }

    .db4-side2 {

        height: 20em;

    }

    .db4-side1 {
        width: 100%;
        height: 20em;
        order: 2;
    }

    .db4-side2 {
        text-align: center;
        width: 100%;
    }

    .db5-side2 {
        width: 100%;
        height: 20em;
    }

    .cards-comentarios {
        flex-direction: column;
        align-items: center;
        margin-top: 10%

    }

    .comt-google {
        width: 90% !Important;
        min-width: 90% !important;
        max-width: 100% !important;
        padding: 25px !important;
        margin-left: 0;
    }

    .comt-google p {
        font-size: 1rem;
    }

    .comt-google p:last-child {
        font-size: 0.8rem;
    }

    .btn-db7 {
        width: 40%;
        height: 4%;
        right: 9%;
        margin-top: 3rem;
        font-size: 11px;
    }

    .footer h3 {
        margin-bottom: 20px;
    }

    .footer-linha-1 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer-collun-1 {
        width: 100%;
        align-items: center;

    }

    .end-footer {
        margin: 0 !important;
    }

    .footer-collun-2 {
        width: 100%;
        align-items: center;
        margin-bottom: 3rem;
    }

    .footer-collun-3 {
        width: 100%;
        align-items: center;
        margin-bottom: 3rem;
    }

    .footer-collun-4 {
        width: 100%;
        align-items: center;
        margin-bottom: 3rem;
    }

    .footer-collun-5 {
        flex-direction: column;

    }

    /* --------------------------- SOBRE --------------------------- */
    .header-sobre {
        height: 20em;
        background-position-y: 0;
        background-position-x: -22em;
    }

    .sobre-timeline-area1 h1 {
        margin-top: 2rem;
    }

    .timeline-side1 {
        width: 100%;
    }

    .timeline-side2 {
        width: 100%;
        border: none;
        padding: 2rem;
    }

    .timeline-box {
        display: block;
    }

    .sd-1-tm {
        display: block;
        text-align: center;
        margin-top: 2rem;
        max-width: 100%;
    }

    .sd-1-tm h3 {
        display: block;
        text-align: center;
        padding-left: 2rem;
        padding-right: 2rem;
        line-height: 30px;
        font-size: 1rem;
    }

    .quadrado-icon {
        display: none;
    }

    .db-sobre-left {
        display: block;
    }

    .db3-side1-sobre {
        background-position: center;
    }

    .db3-side1-sobre {
        width: 100%;
        height: 25em;
    }

    .db3-side2-sobre {
        width: 100%;
        text-align: center;
    }

    .db3-side2-sobre p {
        padding: 0;
        font-size: 1rem;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .db3-cotacao {
        justify-content: center;
    }

    .db3-cotacao img {
        width: 16px;
        height: 16px;
        margin-left: 1rem;

    }

    .tit-head-left {
        font-weight: 700;
        font-size: 2.125rem;
        text-align: center;
    }

    .imagem-sobre-final img {
        max-width: 100%;
    }

    .btn-db7 {
        right: 10%;
        margin-top: 8.5em;
    }

    /* --------------------------- SOBRE --------------------------- */
    .apoio-db1 {
        height: 25em;

    }

    .apoio-db1-lado2 p {

        font-size: 1rem;
        margin-bottom: 10%;

    }

    .apoio-db1-lado1 {
        display: none;
    }

    .db-col {
        width: 100%;
        padding: 0;
    }

    .db-col p {

        padding-left: 2rem;
        padding-right: 2rem;
    }

    .apoio-db1-lado2 {
        align-items: center;
        justify-content: center;
    }

    .apoio-db1-lado2 h1 {

        font-size: 2rem;
        text-align: center;

    }

    .apoio-db2 {
        flex-direction: column;
    }

    .db2-col2 p {
        margin-top: 2rem;
    }

    .db2-col2 img {
        margin-top: 2rem;
    }

    .db2-col2 h2 {
        font-size: 2rem;
    }

    .db3-cotacao p {
        text-align: center;
    }

    .db2-col1 {

        height: 25em;
    }

    .db3-col2 {
        order: -1;
        height: 25em;
    }

    .pesquisa-ponto {
        width: 100%;
    }

    .pesquisa-ponto button {
        margin: 0px 0px 0px 5px;

    }

    .apoio-linha-2 {
        flex-direction: column;
        width: 100%;
    }

    .apoio-linha-2-col1 {
        height: 20em;
        width: 100%;
        padding: 10px;
    }

    .apoio-linha-2-col1 img {
        width: 100%;
    }

    .apoio-linha-2-col2 {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .apoio-linha-1 h2 {
        font-size: 2rem;
        line-height: 35px;

    }

    .apoio-linha-1 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .apoio-linha-2-col2 button {
        max-width: 100%;
    }

    .faq-area-faq {
        flex-direction: column;
    }

    .faq-col-1 {
        width: 100%;
        margin: 0;
    }

    .faq-col-2 {
        width: 95%;
        margin-top: 2rem;
    }

    /* --------------------------- Assistencia --------------------------- */
    .db1-assist-col1 {
        display: flex;
        order: 2;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .db1-assist-col1 h2 {
        line-height: 42px;
    }

    .db1-assist-col1 p {
        line-height: 25px;
        margin-bottom: 2rem;
    }

    .db1-assist-col2 {
        height: 20em;
        width: 100%;
        background-position: center;
    }

    .cards-db2-assist {
        flex-direction: column;
    }

    .assist-db2 h2 {
        margin-bottom: 2rem;
    }

    .assist-card {
        width: 90%;
    }

    /* --------------------------- Assistencia --------------------------- */
    .ctn-area1 {
        flex-direction: column;
    }

    .ctn-lado1 {
        width: 100%;
        align-items: center;
        justify-content: center;

    }

    .ctn-linha1-area {
        padding: 0;
        margin-bottom: 5em;
    }

    .ctn-linha2-area {

        flex-direction: column;
        padding-bottom: 15em;
        padding-top: 3em
    }

    .card-ctn {
        margin-bottom: 2em;
    }

    .ctn-lado2 {
        width: 100%;
    }

    .form-contato {
        display: none;
    }

    .ctn-form2 {
        padding-top: 2em;
        padding-bottom: 2rem;
        width: 100%;
    }

    .ctn-linha1-area h2 {
        font-size: 2rem;
        text-align: center;
        width: 100%;
    }

    .ctn-linha1-area p {
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
        margin-bottom: 5em;
    }

    .form-contato2 {
        padding-top: 2rem;
        display: block;

    }

    .form-contato2 {
        background-color: #fff;
        display: flex;
        border-radius: 24px;
        max-width: 100%;
        width: 40em;
        height: 35.625rem;
        flex-direction: column;
        align-content: center;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }

    .form-contato2 input {
        max-width: 100%;
        color: rgba(160, 163, 189, 1);
        background-color: #EFF0F7;
        border-radius: 16px;
        margin-bottom: 1rem;
        width: 100%;
        padding-left: 1.5rem;
        padding-right: 2rem;
        height: 4rem;
    }

    .form-contato2 textarea {
        color: #000000;
        background-color: #EFF0F7;
        border-radius: 16px;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        padding-left: 1.5rem;
        padding-right: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;

    }

    .ctn-dobra2 {
        height: 10em;
    }

    .form-contato2 div {
        width: 100%;
    }

    .form-contato2 button {
        width: 100%;
        height: 4rem;
    }

    /* --------------------------- Noticias --------------------------- */
    .destaque-noticia-area {
        flex-direction: column;
    }

    .noticia-vitrine {
        padding: 1rem;
        margin: 0;
    }

    .img-news-vitrine {
        margin: 0;
        width: 100%;
    }

    .noticia-vitrine h2 {
        text-align: center;
        font-size: 1.20rem;
        margin-bottom: 1rem;
    }

    .rodape-vitrine {
        margin-top: 2rem;
    }

    .botao-vitrine-news {
        width: 1.5rem;
        height: 1.5rem;
        margin-right: 0;

    }

    .news-nm-dt h2 {
        margin-bottom: 0.5rem;
    }

    /* --------------------------- Parceiros --------------------------- */
    #parceiro-db1-lado22 {
        display: none;
    }

    .parceiro-db1-lado2 {
        height: 25em;
        width: 100%;
        align-items: center !important;

    }

    .parceiro-db1-lado2 h1 {

        font-size: 2rem;
        margin-bottom: 1rem;
        padding: 1rem;
        text-align: center;
    }

    .parceiro-db1-lado2 p {
        font-weight: 500;
        font-size: 1.2rem;
        line-height: 25px;
        margin: 0rem 0rem 2rem 0rem !important;
        padding: 1rem;
    }

    .parceiro-db1-lado2 button {
        text-align: center;
    }

    .db-parc {

        flex-direction: column;
    }

    .db2-col1-parceiro {
        height: 25em;
    }

    .db-parc h2 {
        padding: 0;
        font-size: 2em;
    }

    .db-parc p {
        text-align: center;
        padding: 0;
    }

    .db-parc img {
        margin: 0;
    }

    .db3-col2-parceiro {
        order: -1;
        height: 25em;
    }

    .db3-col2-parc {
        height: 25em;
    }

    .db4-col2-parc {
        height: 25em;
        background-image: url(../images/parceiro-db4.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .termos-header {
        width: 100%;
        height: 20em;
        background-image: url(../images/termos-header.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: -10em;
    }

    .trabalhe-db1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        background: #FFD600 !important;

    }

    .trabalhe-db1-lado1 {
        display: none;
    }

    .trabalhe-db1-lado2 {
        padding: 0;
        width: 100%;
        max-width: 320px;
        height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
    }

    .trabalhe-db1-lado2 p {
        padding: 0;
        margin: 0 auto;
    }

    .trabalhe_db2 article {
        width: 100%;
        max-width: 320px;
        padding: 60px 0;
    }

    .trabalhe-db1-lado2 h1 {
        font-size: 2rem;
    }

    .trabalhe_db2_content {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .trabalhe_db2_item {
        max-width: 320px;
        margin-bottom: 20px;
    }

    .trabalhe_db2_item img {
        width: 100%;
    }

    .trabalhe_db2 article header h1 {
        font-size: 25px;
        line-height: 35px;
    }

    .trabalhe_db3 article {
        width: 100%;
        max-width: 320px;
        padding: 60px 0;
    }

    .trabalhe_db3 article header h1 {
        font-size: 25px;
        line-height: 35px;
    }

    .trabalhe_db3 article header p {
        font-size: 16px;
        line-height: 20px;
    }

    .trabalhe_db3 article header a p {
        font-size: 20px;
        line-height: 20px;
        padding: 15px 55px;
    }

}

@media screen and (min-width: 0px) and (max-width: 120em) {
    .db4-side1-120em {
        margin-left: -150px;
    }

    .db4-side2-120em {
        margin-left: 200px;
    }

    .parceiro-db1-lado2 h1, .parceiro-db1-lado2 p {
        /* padding: 0 200px; */
    }
}

@media screen and (min-width: 0px) and (max-width: 85.375em) {
    .parceiro-db1-lado2 h1, .parceiro-db1-lado2 p {
        /* padding: 0 50px; */
    }
}

@media screen and (min-width: 0px) and (max-width: 64em) {

    /*SINISTRO*/
    .rds_sinistro_bg {

    }

    .rds_sinistro_container {
        align-items: flex-start;
        padding-top: 30%;
        flex-wrap: wrap;
        height: 80%;
    }

    .bg-sinistro-db2 {
        order: -1;
        height: 25em;
    }


    .db1-sinistro-col {
        width: 100%;
        align-items: center;
    }

    .db1-sinistro-col a {
        margin-top: 15%;
    }

    .db1-sinistro-col h2 {
        font-size: 2.2rem;
        line-height: 50px;
        margin-bottom: 10%;
        text-align: center;
    }

    .db1-sinistro-col p {
        text-align: center;
    }

    /* SINISTRO 002*/
    .rds_sinistro_db2 {
        padding-top: 5%;
        margin-top: -20%;
        padding-bottom: 5%;
    }


    .rds_sinistro_db2_item1 {
        order: 1;
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .rds_sinistro_db2_item1 h2 {
        font-size: 2.2rem;
        line-height: 50px;
        margin-bottom: 10%;
        text-align: center;
    }

    .rds_sinistro_db2_item1_p {
        font-size: 1.5rem;
        line-height: 30px;
        font-weight: 400;
        display: inline;
        margin-bottom: 5%;
    }

    .rds_sinistro_db2_item1 a {
        width: 100%;
    }

    .rds_sinistro_db2_item1 a p {
        font-size: 1.5rem;
    }

    .rds_sinistro_db2_item1 img {
        margin-left: 5%;
        margin-bottom: -1%;
    }

    .rds_sinistro_db2_item2 {
        width: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position-x: center;
        height: 25em;
    }


    /* HEADER MENU TOP */
    .header-menu-top {
        position: fixed;
        width: 100%;
        box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.5);
        z-index: 100;
    }

    .parceiro-db1-lado2 h1, .parceiro-db1-lado2 p {
        padding: 1rem;
    }


    main {
        padding-top: 5%;
    }

    .header__toggle {
        display: inline;
        color: #363636;
        font-size: 40px;
    }

    .header__close {
        position: absolute;
        right: 40px;
        top: 10px;
        display: block;
        font-size: 40px;
        border-radius: 50%;
    }

    .header__close:hover {
        background-color: #0E96E5;
    }

    .nav__menu {
        text-align: right;
        position: fixed;
        top: 0;
        right: -100%;
        background-color: #363636;
        color: #EEEEEE;
        width: 25%;
        height: 100%;
        padding: 40px 0;
        z-index: 100;
        transition: 0.5s;
        border-radius: 0 0 0 50%;
    }

    .nav__menu-lista {
        display: flex;
        flex-direction: column;
        padding-top: 30px;
        padding-bottom: 100px;
        margin: auto;
        width: 85%;
        text-align: right;
    }

    .nav__menu-lista-item {
        width: 100%;
        margin: 1rem 0;
    }

    .nav__menu-lista-item-link {
        color: #EEEEEE;
        padding: 0px;
    }

    .nav__menu-lista-item-link:hover {
        color: #cecece;
    }

    .nav__menu-lista-item-cotacao {
        display: inline;
        background-color: #646464;
        border-radius: 8px;
        padding: 10px;
        /* width: 100%; */
        /* height: 100%; */
        /* justify-content: flex-end; */
        cursor: pointer;
        /* height: 3rem; */
        /* color: #FFFFFF; */
        margin-top: 50px;
        text-align: center;
    }

    .nav__menu-lista-item-cotacao a {
        letter-spacing: 1px !important;
        font-size: 0.8em;
    }


    .show {
        right: 0 !important;
    }

    .nav__submenu {
        display: inline;
    }

    .btn-head, .tit-head-center {
        display: none;
    }

    /*
    PAGE SOLICITAR COTACAO - RONALDO SILVA
     */
    .dobra1-cotacao {
        flex-direction: column;
        margin-top: -50px !important;
    }

    .dobra1-cotacao form {
        margin-top: -500px;
    }

    .db4-side1-120em {
        margin-left: 0 !important;
    }

    .db4-side2-120em {
        margin-left: 0 !important;
    }

    .rds_artigo {
        width: 700px;
    }

    .rds_artigo_capa {
        margin: 0 auto;
    }

    .rds_artigo_capa img {
        width: 600px;
        height: 190px;
    }

    .rds_artigo_conteudo .db-flex-artigo h1 {
        text-align: left;
    }

    .nav__menu-lista {
        padding-bottom: 5%;

    }

    .tit-head-left {

        font-size: 1.4rem;

    }

    .dobra3-home a img {
        margin-left: 5%;
    }

    .db3-side1 {
        margin-bottom: 7%;
    }

    .comentarios_area header h2 {
        letter-spacing: 0.04em;
        line-height: 1.3em;
        text-align: center;
    }

    .btn-db7 {
        margin-top: 5em;
    }

    .parceiros_area {
        padding-top: 8%;
        padding-bottom: 8%;
        height: 100%;
    }

    .footer-linha-1 {
        padding-top: 8%;
        padding-bottom: 8%;
    }

    .db3-col2-parceiro {
        order: -1;
        height: 20em;
    }


}

@media screen and (min-width: 0px) and (max-width: 48em) {
    .nav__menu {
        width: 40%;
    }

    .dobra1-cotacao form {
        margin-top: -500px;
    }

    .db4-side1-120em {
        margin-left: 0 !important;
    }

    .db4-side2-120em {
        margin-left: 0 !important;
    }


    .rds_artigo {
        width: 400px;
    }

    .rds_artigo_capa img {
        width: 400px;
        height: 190px;
    }

    .rds_artigo_conteudo .db-flex-artigo h1 {
        text-align: left;
    }

    .form-main h2 {
        padding: 10px;
        margin-bottom: 30px;
        font-size: 1.4rem;
    }


    /*SINISTRO MOBILE 003*/
    .rds_sinistro_db3 {
        width: 100%;
        height: 700px;
        padding-top: 50px;
    }

    .rds_sinistro_db3_container {
        display: flex;
        flex-direction: row;
        align-content: center;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 3%;
        padding-bottom: 3%;
        height: 100%;
        max-width: 100%;
    }

    .rds_sinistro_db3_item1 {
        width: 85%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position-x: center;
        height: 100%;
    }

    .rds_sinistro_db3_item2 {
        display: flex;
        /* order: 1; */
        width: 100%;
        align-items: flex-end;
        justify-content: end;
        flex-direction: column;
        margin-top: -300px;
    }


}

@media screen and (min-width: 0px) and (max-width: 26.60em) {
    main {
        padding-top: 15%;
    }

    .nav__menu {
        width: 70%;
    }

    .dobra1-cotacao form {
        margin-top: -440px
    }

    .label_50 .label {
        width: 100% !important;
    }

    .form-contato-cotacao {
        padding: 2rem !important;
    }

    .form-main {
        height: 100%;
    }

}

@media screen and (min-width: 0px) and (max-width: 24.45em) {
    /*.dobra1-cotacao form {*/
    /*    margin-top: -440px*/
    /*}*/


}

@media screen and (min-width: 0px) and (max-width: 22.50em) {
    .dobra1-cotacao form {
        margin-top: -420px;
    }

    .rds_artigo_capa img {
        width: 300px;
        height: 190px;
    }


}

@media screen and (min-width: 0px) and (max-width: 20em) {
    main {
        padding-top: 20%;
    }

    .nav__menu {
        width: 80%;
    }

    .nav__menu-lista-item-link {
        font-size: 0.9rem;
    }

    .nav__menu-lista-item-cotacao a {
        font-size: 0.7em;
    }


    .rds_artigo {
        width: 300px;
    }

    .rds_artigo_capa img {
        width: 300px;
        height: 190px;
    }

    .rds_artigo_conteudo .db-flex-artigo h1 {
        text-align: left;
    }

    .nav__menu-lista {
        padding-bottom: 0;

    }

    button.btn-step-continuar, button.btn-step-enviar {
        width: 60%;
    }


}


/* Cookies */

section#cookies{display: flex; position: fixed; bottom: 5vh; left: 5vw; right: 5vw; border: 1px solid #F5F5F5; background-color: rgba(255, 255, 255, 0.95); padding: 12px 25px 12px 17px; border-radius: 100vw; gap: 16px; align-items: center; z-index: 10; transition: all .5s ease;}
section#cookies.removing{opacity: 0;}
section#cookies i{flex: 0 0 52px; aspect-ratio: 1; background: url(../images/cookie.gif) no-repeat center / contain;}
section#cookies a{color: #000000;}
section#cookies button{flex: 0 0 60px; aspect-ratio: 1; border-radius: 50%; color: #fff; background-color: #000; font-size: 0.875rem;}


section#aviso{
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    gap: 16px;
    align-items: center;
    z-index: 104;
    transition: all .5s ease;
}

section#aviso.removing{opacity: 0;}
section#aviso i{flex: 0 0 52px; aspect-ratio: 1;}
section#aviso a{color: #000000;}
section#aviso p{color: #000000;font-size: 1.3em;}
section#aviso button{
    width: 67px;
    aspect-ratio: 1;
    border-radius: 50%;
    color: #fff;
    background-color: #000;
    font-size: 0.875rem;
    margin: 0 auto;
    margin-top: 50px;
    cursor: pointer;
}
.aviso_item {
    background: white;
    padding: 50px;
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}


@media(max-width: 515px) {

    .aviso_item {
        width: 90%;
        margin-top: 25%;
    }

    section#cookies {
        flex-direction: column;
        padding-top: 30px;
    }

    section#cookies i {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -70%);
        width: 55px;
        border-radius: 5px 5px 0 0;
    }

    section#cookies button {
        flex: initial;
        width: 100%;
        height: 30px;
        aspect-ratio: initial;
        border-radius: 5px;
    }

    section#aviso {
        flex-direction: column;
        border-radius: 5px;
        padding-top: 30px;
        background-color: #fff;
    }

    section#aviso i {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -70%);
        width: 55px;
        border-radius: 5px 5px 0 0;
    }

    section#aviso button {
        flex: initial;
        width: 100%;
        height: 30px;
        aspect-ratio: initial;
        border-radius: 5px;
    }
}
