@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

:root {
    --primaria-1: #B1030E;

    --basic-1: #F2F2F2;

    --text-color: #000000;
    --text-color-2: #575757;
}

/** INICIO SETUP PÁGINA */
body, html, p {
    font-family: 'Lato';
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.005em;
    font-weight: normal;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    box-sizing: border-box;
    margin-bottom: 0;
    color: var(--text-color);
}

b, strong {
    font-weight: 700;
}

a {
    cursor: pointer;
    text-decoration: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    color: black;
}

img {
    max-width: 100%;
    object-fit: cover;
	height: auto;
}

::selection{
    background: var(--primaria-1);
    color: var(--basic-1);
}

/* SCROLL */
body::-webkit-scrollbar, .modal-dialog-scrollable .modal-body::-webkit-scrollbar {
    width: 5px;
    background: rgba(0, 0, 0, 0.7);  
} 
body::-webkit-scrollbar-thumb,  .modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {   
    background-color: var(--primaria-1);  
    border-radius: 5px;
}
.descricao::-webkit-scrollbar {
    background: transparent;
    width: 3px;
}
.descricao::-webkit-scrollbar-thumb {
    background-color: var(--primaria-1);  
    border-radius: 20px
}


/** FIM SETUP PÁGINA */


/** ESTILIZAÇÃO CARROSSEL */
.owl-theme .owl-nav [class*='owl-']:hover {
    background: none;
}

.owl-slider .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 15px;
}
.owl-slider .owl-dots .owl-dot span {
    background: white;
    width: 12px;
    height: 12px;
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primaria-1);
}

.previus-slide {
    transform: rotate(180deg);
}
.owl-timeline .owl-nav .disabled {
    display: none;
}
.owl-timeline .owl-nav button {
    position: absolute;
    top: 31%;
}
.owl-timeline .owl-nav button.owl-prev {
    left: 0;
    top: 153px;
}
.owl-timeline .owl-nav button.owl-next {
    right: 0;
    top: 153px;
}
/** FIM ESTILIZAÇÃO CARROSSEL */

/** INÍCIO DO CONTAINER GRID */
.container-grid {
    display: grid;
    margin: auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 100px 50px ;
    padding: 30px 15px;
}
/** FIM DO CONTAINER GRID */

/** INICIO DO BANNER PRINCIPAL */
.slider-item img {
    width: 100%;
    height: auto;
}
.owl-carousel .owl-item .slider-item-mobile {
    display: none;
}

.produtos-introducao,
.produtos-listagem {
    background: var(--basic-1);
}
/** FIM DO BANNER PRINCIPAL */

/** INICIO BREADCRUMB */
.breadcrumb-principal {
    background: var(--primaria-1);
    padding: 3px;
    height: 30px;
}
.breadcrumb-principal * {
    color: white;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}
/** FIM BREADCRUMB */

/** INICIO TEXTOS GERAIS */
.titulo-principal {
    text-align: center;
    padding-bottom: 30px;
    color: var(--primaria-1);
    text-transform: uppercase;
}
.titulo-principal h1,
.titulo-principal h2 {
    font-size: 38px;
    line-height: 45px;
    letter-spacing: 0.005em;
    margin: 0;
}
.titulo-principal.titulo-principal-white * {
    color: white;
}

.titulo-secundario {
    padding: 50px 0 70px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.titulo-secundario h2 {
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0.005em;
    margin: 0;
    color: var(--primaria-1);
    text-transform: uppercase;
}
.border-detail-titulo {
    width: 60%;
    opacity: 1;
    background: var(--primaria-1);
    height: 4px !important;
    border-radius: 20px;
}
/** FIM TEXTOS GERAIS */

/** INICIO BUTTONS */
.button {
    display: flex;
    justify-content: center;
    align-items: center;
}
.button-1 {
    background: #E7E7E7;
    border: 1px solid #A7A7A7;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 10%);
    border-radius: 10px;    
    display: flex;
    padding: 3px 5px;
    margin: 50px 0 15px;
    transition: all .3s ease-in-out;
}
.button-1 a {
    color: var(--primaria-1);
    font-size: 14px;
    line-height: 17px;
    font-weight: 700;
}
.button-1:hover {
    background: var(--primaria-1);
}
.button-1:hover a {
    color: white;
}

.button-2 {
    border-top: 3px solid var(--primaria-1);
    width: 150px;
    padding: 10px 0;
}
.button-2 a, 
.button-2 p {
    color: var(--primaria-1);
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.055em;
    font-weight: 700;
}

.button-3 {
    border: 1.5px solid var(--primaria-1);
    border-radius: 50px;
    padding: 2px 5px;
}
.button-3 p {
    font-weight: 500;
    font-size: 10px;
    line-height: 11px;
    color: var(--primaria-1);
}

.home-cta .button-1 {
    border-radius: 30px;
    box-shadow: 0px 8.22535px 8.22535px rgb(0 0 0 / 10%);
    margin: 0;
    padding: 7px 15px;
    border: none;
}
.home-cta .button-1 a {
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
}

.servico-button .button-2 {
    border-top: 0;
    width: 100%;
    border-bottom: 2px solid #575757;
    padding: 30px 0 40px;
}

.blog-button {
    justify-content: flex-start;
}
.blog-button .button-2 {
    border: none;
    padding: 0;
}

.produtos-listagem .button-2 {
    border: none;
}

.bloco-3 .button {
    justify-content: flex-start;
    padding-top: 10px;
}
.bloco-3 a .button-3 p {
    color: var(--primaria-1);
}
/** FIM BUTTONS */

/** INICIO HEADER */
.navbar-collapse-menu a {
    font-size: 16px;
    line-height: 19px;
    color: #575757;
    padding: 0 20px;
    text-transform: uppercase;
}
.navbar-collapse-menu a:hover, 
.navbar-collapse-menu .current-menu-item a {
    color: var(--primaria-1);
    font-weight: 700;
}
.header-logo a {
    display: flex;
}
.header-logo svg {
    height: 80px;
}
    /** SEARCH */
    .search-menu {
        display: none;
        width: 100%;
        margin-right: 0;
        position: relative;
    }
    .search-menu form{
        text-align: right;
        display: flex;
        justify-content: flex-end;
    }
    #input-header{
        width: 53%;
        border: 2px solid var(--primaria-1);
        border-radius: 100px;
        padding: 10px 40px;
        font-size: 13px;
        outline: 0 !important;
        text-align: left;
    }
    #button-header {
        background: transparent;
        border: transparent;
        cursor: pointer;
        z-index: 10;
        padding: 0 20px 0;
        display: flex;
        align-items: center;
    }
    #button-header svg {
        width: 20px;
        height: 20px;
    }
    .search-home-bt, 
    .search-header{
        outline: 0 !important;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 0 17px;
    }
    .search-home-bt:focus,
    .search-header:focus {
        transition: .5s ease-in-out;
    }
    .search-home-bt.btn-2, 
    .search-header.btn-2 {
        outline: 0 !important;
        cursor: pointer;
        background: transparent;
        border: none;
        display: none;
        position: absolute;   
        right: 7%;
        bottom: 3px;
        top: 0;
    }
    .search-home-bt svg,
    .search-header svg {
        fill: var(--primaria-1);
        width: 20px;
        height: 20px;
    }
    /** FIM DO SEARCH */

/** FIM HEADER */
/** INICIO HOME */
.home-historia {
    text-align: center;
    padding: 50px 0;
}
.home-historia .descricao {
    padding: 0 30px;
}

.home-produtos {
    background: var(--basic-1);
    padding: 60px 0;
    text-align: center;
}
.produto-item {
    padding: 40px 35px;
}
.produto-item a {
    display: flex;
    flex-direction: column;
}
.produto-item-img {
    overflow: hidden;
    border-radius: 15px;
    filter: drop-shadow(4px 5px 8px rgba(0, 0, 0, 0.15));
    max-height: 215px;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: all .3s ease-in-out;
}
.produto-item-img img {
    height: 100%;
    transition: all .3s ease-in-out;
}
.produto-item a:hover .produto-item-img img {
    transform: scale(1.2);
}
.produto-item-titulo {
    padding: 20px 0 30px;
}
.produto-item-titulo h2 {
    margin: 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--text-color-2);
}

.home-cta {
    min-height: 220px;
    background: linear-gradient(233.84deg, #B1030E -161.96%, #604F50 32.45%, #575757 87.45%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
}
.cta-chamada p {
    font-weight: 300;
    font-size: 50px;
    line-height: 60px;
    color: white;
}
/** FIM HOME */

/** INICIO SOBRE */
.sobre-historia, 
.sobre-evolucao, 
.sobre-timeline {    
    background: var(--basic-1);
}
.sobre-historia .container {
    border-bottom: 3px solid var(--primaria-1);
    padding: 30px 15px 100px;
}
.sobre-timeline {
    padding: 20px 0 80px;
}
.timeline-content {
    width: 80%;
    padding-left: 20px;
}
.timeline-titulo h2 {
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    color: var(--primaria-1);
    letter-spacing: 0.005em;
    margin: 0;
    padding-bottom: 15px;
}
.timeline-border {
    opacity: 1;
    background: var(--primaria-1);
    height: 4px !important;
    margin: 0;
}
.timeline-line {
    padding: 30px 0;
    position: relative;
}
.timeline-line::before {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: radial-gradient( white 30%, var(--primaria-1) 35%);
    position: absolute;
    top: 25%;
}
.timeline-icon svg {
    width: 98px;
    height: 98px;
}
.owl-item:last-child .timeline-line .timeline-border {
    width: 10%;
}
.owl-item:not(:first-child) .timeline-line::before {
    left: 15px;
}
.owl-timeline {
    padding: 50px 40px 20px;
}

.sobre-diferenciais .titulo-principal {
    text-align: left;
}
.sobre-diferenciais {
    padding: 100px 0;
}
.sobre-diferenciais-list ul {
    padding: 0;
    list-style: none;
}
.sobre-diferenciais-list ul li {
    display: flex;
    align-items: center;
    padding: 20px 0;
}
.sobre-diferenciais-list ul li hr {
    width: auto;
    min-width: 500px;
    opacity: 1;
    background: white;
    height: 2px !important;
}
.sobre-diferenciais-list ul li p {
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: white;
    padding-left: 25px;
}

.sobre-galeria {
    padding: 80px 0 100px;
}
.sobre-galeria .titulo-principal {
    padding-bottom: 80px;
}
.galeria-item {
    padding: 0 15px;
}
.galeria-titulo p {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    padding-top: 10px;
}
.owl-galeria .owl-nav button {
    position: absolute;
    height: 100%;
    top: 0;
}
.owl-galeria .owl-nav button.owl-prev {
    left: -20px;
}
.owl-galeria .owl-nav button.owl-next {
    right: -20px;
}
.owl-galeria .owl-nav button.disabled {
    display: none;
}

.sobre-historia .descricao h2 {
    color: #b1030e;
    font-size: 24px;
    line-height: 34px;
}
.sobre-historia .descricao h3 {
    color: #b1030e;
    font-size: 20px;
    line-height: 30px;
}
/** FIM SOBRE */

/** INICIO PRODUTOS*/
.produtos-introducao {
    padding: 80px 0 20px;
    text-align: center;
}

.produtos-listagem {
    padding: 50px 0;
    text-align: center;
}
.produtos-listagem .produto-item-titulo {
    border-bottom: 2px solid var(--primaria-1);
    width: 50%;
    margin: 0 auto;
}
.produto-descricao {
    padding-top: 25px;
}
    /** INICIO SINGLE SEGMENTOS */
    .single-segmentos {
        padding: 50px 0;
        background: var(--basic-1);
    }
    .single-segmentos-introducao .descricao {
        text-align: center;
        padding-bottom: 50px;
    }

    .titulo-principal-segmento {
        display: flex;
        align-items: flex-end;
        padding-bottom: 0;
    }
    .titulo-principal-segmento hr {
        width: 100%;
        max-width: 50%;
        margin: 0;
        opacity: 1;
    }
    .segmento-bloco-content {
        display: flex;
        padding: 40px 0;
    }
    .segmento-bloco-imagem, 
    .segmento-bloco-content .descricao {
        width: 50%;
    }
    .segmento-bloco-content .descricao {
        padding: 0 35px;
        display: flex;
        flex-direction: column;
        position: relative;
        align-items: center;
        justify-content: space-between;
    }
    .segmento-bloco-imagem img {
        border-radius: 15px;
        width: 100%;
        max-height: 350px;
    }

    .segmentos-relacionados {
        background: var(--basic-1);
        padding: 0 140px 100px;
    }
    .segmentos-relacionados-content {
        /* background: white; */
        padding: 30px 0;
        border-radius: 15px;
    }
    .pecas-item {
        text-align: center;
        padding: 0 20px;
        background-color: #FFF;
        padding: 15px;
        margin: 10px;
        border-radius: 20px;
        border: 2px solid var(--primaria-1);
    }
    .pecas-item .descricao{
        height: 0;
        overflow: hidden;
        transition: all .5s ease-in-out;
    }
    .pecas-item .descricao.expande{
        height: 300px;
        overflow-y: scroll;
        padding: 0 10px;
    }
    .pecas-item button {
        background: unset;
        border: unset;
    }
    .pecas-titulo h3 {
        margin: 0;
        font-size: 24px;
        line-height: 29px;
        font-weight: 500;
        letter-spacing: 0.005em;
        color: var(--primaria-1);
        padding: 20px 0;
    }
    .owl-pecas .pacas-imagem img {
        max-height: 160px;
        height: 100%;
        width: auto;
        margin: 0 auto;
    }
    /** FIM SINGLE SEGMENTOS */
/** FIM PRODUTOS */

/** INICIO SERVIÇOS */
.servicos-introducao {
    padding: 80px 0;
    text-align: center;
    background: #F2F2F2;
}
.servicos-listagem {
    background: #F2F2F2;
}
.servico-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.servico-image {
    width: 100%;
    max-height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 80px;
}
.servico-image img {
    height: 100%;
    width: 100%;
}
.servico-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    padding: 100px 80px 100px 160px;
    max-width: 70%;
    width: 100%;
}
.servico-descricao p {
    text-align: justify;
}
.servico-titulo h2 {
    color: var(--primaria-1);
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0.005em;
    margin: 0;
    padding-bottom: 45px;
}
.servicos-listagem {
    background: #F2F2F2;
    padding-bottom: 80px;
}

.servico-item-input {
    display: none;
}
.servico-item label {
    cursor: pointer;
}
.servico-descricao {
    max-height: 110px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}
.servico-item-input:checked ~ .servico-descricao {
    max-height: 100%;
}
/** FIM SERVIÇOS */

/** INICIO DO BLOG */
.blog-introducao {
    padding: 50px 0;
    text-align: center;
}

.blog-imagem {
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.blog-imagem img {
    max-height: 250px;
}
.blog-date {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.055em;
    padding: 15px 0;
}
.blog-titulo h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.005em;
    color: #B1030E;
    margin: 0;
    padding-bottom: 15px;
}
.blog-descricao {
    padding: 0 70px 20px 0;
}
    /** INICIO SINGLE */
    .single-blog {
        padding: 65px 0;
    }
    .single-blog .row {
        align-items: flex-start;
    }
    .single-blog article {
        padding-right: 45px;
    }
    .single-imagem img {
        height: auto;
    }
    .single-blog article .titulo-principal {
        text-transform: initial;
        text-align: left;
        padding: 40px 0 30px;
    }
    .single-blog article .titulo-principal h1 {
        font-size: 30px;
        line-height: 36px;
    }
    .single-blog .descricao h2 {
        margin: 0;
        font-size: 24px;
        line-height: 32px;
        padding: 30px 0 20px;
        font-weight: 600;
    }
    .single-blog .descricao h3 {
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
        padding: 20px 0 10px;
        margin: 0;
    }
    .single-date {
        padding-bottom: 10px;
    }

    .single-blog aside {
        background: #E7E7E7;
        border-radius: 10px;
        margin-top: 36px;
    }
    .aside-bloco {
        padding: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .bloco-1 {
        text-align: center;
    }
    .bloco-1 .descricao p {
        font-size: 16px;
        line-height: 24px;
        padding-top: 25px;
    }
    .aside-titulo {
        text-align: center;
        font-size: 24px;
        line-height: 30px;
        letter-spacing: -0.015em;
        color: #B1030E;
        padding-bottom: 15px;
        font-weight: 600;
    }
    .aside-bloco ul {
        padding: 0;
        margin: 0;
        list-style: none;
        width: 100%;
    }
    .aside-bloco li {
        text-align: center;
        padding: 10px 0;
    }
    .aside-bloco li:not(:last-child) {
        border-bottom: 1px solid;
    }
    .aside-bloco li a {
        font-size: 22px;
        line-height: 24px;
        letter-spacing: -0.015em;
        color: #000000;
    }
    .bloco-3 a {
        display: flex;
        justify-content: center;
        padding: 15px 0;
    }
    .bloco-3 a * {
        color: black;
    }
    .bloco-3 a h3 {
        font-size: 11px;
        line-height: 14px;
        font-weight: 600;
        letter-spacing: -0.015em;
    }
    .noticia-content {
        font-size: 11px;
        line-height: 14px;
        background: rgba(167, 167, 167, 0.16);
        height: 100%;
        padding: 20px 10px;
        border-radius: 0 10px 10px 0;
    }
    .noticia-date {
        font-size: 9px;
        line-height: 11px;
        color: var(--primaria-1) !important;
    }
    .noticia-imagem {
        border-radius: 10px 0 0 10px;
        overflow: hidden;
        width: 100%;
    }
    .noticia-imagem img {
        height: 100%;
        max-width: 160px;
    }

    .dots {
        width: 5px;
        height: 5px;
        background: var(--primaria-1);
        border-radius: 50%;
        position: relative;
        margin: 20px 0 0;
    }
    .dots::before, .dots::after {
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primaria-1);
        border-radius: 50%;
        position: absolute;
        top: 0;
    }
    .dots::before {
        left: 7px;
    }
    .dots::after {
        right: 7px;
    }

    .form-search {
        width: 100%;
        position: relative;
    }
    .form-search input {
        border: 1px solid var(--primaria-1);
        border-radius: 100px;
        width: 100%;
        padding: 8px 40px 8px 20px;
        outline: none !important;
    }
    .form-search button {
        position: absolute;
        right: 15px;
        height: 100%;
        background: transparent;
        border: none;
    }
    .form-search button svg, 
    .form-search button svg * {
        fill: var(--primaria-1);
    }

    .bloco-4 .descricao p {
        text-align: center;
        font-size: 16px;
        line-height: 19px;
        padding-bottom: 20px;
    }
    .bloco-4 form input, 
    .bloco-4 form textarea {
        border: none;
        min-height: 40px;
        padding: 5px 10px;
        border-radius: 7px;
        outline: none !important;
        margin: 6px 0;
        max-width: 100%;
    }
    .bloco-4 form textarea {
        height: 100px;
        max-width: 100%;
    }
    .bloco-4 form input::placeholder, 
    .bloco-4 form textarea::placeholder {  
        font-size: 14px;
        line-height: 14px;
        color: #000000;
    }

    .submit-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .bloco-4 form input.sidebar-submit {
        background: var(--primaria-1);
        color: white;
        font-size: 14px;
        line-height: 17px;
        font-weight: 600;
        padding: 4px 20px;
        margin: 0;
        border-radius: 70px;
        min-height: auto;
    }
    /** FIM SINGLE */
/** FIM DO BLOG */

/** INICIO CONTATO */
.contato-introducao {
    padding: 80px 0;
    text-align: center;
    background: #F2F2F2;
}

.contato-form {
    background: #F2F2F2;
    padding: 50px 0 80px;
}
.contato-form-content {
    padding: 50px 80px;
    background: white;
    border: 2px solid var(--primaria-1);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
}
.contact-form-infos {
    width: 40%;
}
.infos ul {
    list-style: none;
    padding: 30px 0;
}
.infos ul li {
    display: flex;
    /* align-items: center; */
    grid-gap: 26px;
    padding: 15px 0;
}
.infos ul li a {
    display: flex;
    align-items: center;
}
.infos ul li a:not(.form-whatsapp) .infos-svg {
    padding-right: 25px;
}
.infos ul li a.form-whatsapp {
    grid-gap: 5px;
}
.infos ul li * {
    font-size: 20px;
    line-height: 26px;
    color: #575757;
}
.infos-svg svg {
    /* width: 80%; */
    width: 35px;
    height: 35px;
}
li.telefones-contato {
    flex-direction: column;
}
.icone-whats {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.icone-whats b {
    padding: 0 0 0 5px;
}
.icone-whats .infos-svg {
    padding-right: 26px;
}
.form-whatsapp svg {
    width: auto;
}
.contact-form {
    width: 50%;
    height: 100%;
}
.contact-form form p {
    width: 100%;
}
.contact-form form input, 
.contact-form form textarea {
    width: 100%;
    margin: 0 0 20px;
    border: 2px solid var(--primaria-1);
    border-radius: 6px;
    outline: none;
    padding: 10px 20px;
}
.contact-form form textarea {
    height: 130px;
}
.contact-form form input::placeholder, 
.contact-form form textarea::placeholder {
    color: black;
    line-height: 25px;
    letter-spacing: 0.005em;
}
.submit-contact {
    background: transparent;
    color: var(--primaria-1);
    font-weight: 700;
    letter-spacing: 0.005em;
}

.contact-map a {
    display: flex;
    min-height: 300px;
    justify-content: center;
}
.contact-map img {
    width: 100%;
    height: auto;
}

aside .wpcf7 {
    max-width: 100%;
}
.button-contato svg {
    width: 80%;
}
.cta-contato p {
    font-size: 42px;
    line-height: 40px;
}
/** FIM CONTATO */

/** INICIO PAGE SEARCH */
.breadcrumb-search ul {
    display: flex;
    align-items: center;
    list-style: none;
}
.marcador {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    fill: white;
}
.breadcrumb-search {
    background: var(--primaria-1);
    color: white;
    padding: 40px 0;
}
.breadcrumb-search a {
    color: white;
}
.listaPost_link {
    display: flex;
    color: var(--primaria-1);
    grid-gap: 40px;
    align-items: center;
    padding: 40px 0;
}
.listaPost_link:hover {
    color: var(--primaria-1);
}
/** FIM PAGE SEARCH */

/** INICIO TEMPLATE PARTS STYLES */
    /* Inicio seção vídeo */
        .video-institucional {
            padding: 50px 0 80px;
        }
        .video-institucional .descricao p {
            padding-top: 40px;
        }
    /* Fim seção vídeo */
/** FIM TEMPLATE PARTS STYLES */

/** INICIO FOOTER */
footer {
    background: linear-gradient(180deg, #B1030E -193.12%, #610208 27.94%, #000000 100%);
    padding: 40px 0;
}
footer a:hover {
    color: var(--primaria-1);
}
.footer-header ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    padding: 30px 0;
    margin: 0;
}

.footer-mapa a {
    color: white;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
}
.footer-mapa ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-listagem ul {
    list-style: inside;
    padding: 0 15px;
    margin: 0;
    display: inline-table;
}
.footer-listagem ul * {
    color: white;
}
.footer-listagem a {
    font-weight: 300;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: -0.015em;
}
li.footer-listagem-titulo {
    list-style: none;
}
li.footer-listagem-titulo a {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
}
a.footer-logo {
    display: flex;
    justify-content: center;
}

.copyrighter {
    background: black;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.copyrighter * {
    color: white;
    font-size: 15px;
    line-height: 22px;
}
.copyrighter a:hover {
    color: var(--primaria-1);
}
.copyrighter-content a {
    padding-right: 20px;
}
.copyrighter-menu a {
    padding: 0 20px;
}
/** FIM FOOTER */

/** INICIO DO MEDIA */
@media screen and (max-width: 1300px){
}
@media screen and (max-width: 1199px){
    /** HEADER - RESPONSIVO 1199px */
    #input-header {
        width: 75%;
    }
    .search-header.btn-2 {
        right: 10%;
    }

    /** CONTATO - RESPONSIVO 1199PX */
    .infos ul li.telefones-contato {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    /** FOOTER - RESPONSIVO 1199PX */
    .footer-listagem {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }


    /* SINGLE BLOG - RESPONSIVO  991px */
    .aside-bloco {
        padding: 20px;
    }
    .single-blog {
        padding: 30px 0;
    }
    .single-blog aside {
        padding: 20px 15px;
    }    
}
@media screen and (max-width: 991px){
    /** HEADER - RESPONSIVO 991px */
    .navbar {
        min-height: 100px;
    }
    .navbar-collapse-menu {
        width: 100%;
        background: var(--primaria-1);
        position: absolute;
        top: 100px;
        left: 0;
        z-index: 1000;
    }
    .search-header:not(.btn-2) {
        position: absolute;
        right: 100px;
        top: 0;
        height: 100%;
        max-height: 100px;
    }
    .search-menu {
        position: absolute;
        max-width: 80%;
        top: 0;
        right: 0;
        height: 100%;
    }
    .search-menu form {
        height: 100%;
        align-items: center;
    }
    .navbar>.container {
        justify-content: flex-start;
        gap: 25%;
    }

    .navbar-collapse-menu a {
        color: white;
    }
    .navbar-collapse-menu a:hover, 
    .navbar-collapse-menu .current-menu-item a {
        color: white;
        font-weight: bold;
    }
    .navbar-nav li {
        width: 75%;
        text-align: center;
        padding: 20px 0 15px;
    }
    .navbar-nav li:not(:last-child) {
        border-bottom: 1px solid white;
    }
    .navbar label {
        position: relative;
        z-index: 2;
    }

    /** HOME - RESPONSIVO 991px */
    .produto-item {
        padding: 35px 25px;
    }
    .home-produtos {
        padding: 60px 0 30px;
    }

    .cta-content {
        text-align: center;
        flex-direction: column;
    }
    .cta-chamada p {
        font-size: 42px;
        line-height: 40px;
    }
    .home-cta .button-1 a {
        font-size: 28px;
    }

    /** SOBRE - RESPONSIVO 991px */
    .sobre-diferenciais-list ul li hr {
        min-width: 200px;
    }

    .timeline-mobile {
        padding: 50px 0;
    }
    .timeline-item {
        display: flex;
        justify-content: flex-end;
    }
    .timeline-item:nth-child(2n) {
        flex-direction: row-reverse;
    }
    .timeline-icon {
        width: 40%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }
    .timeline-item:nth-child(2n) .timeline-icon {
        justify-content: flex-start;
    }
    .timeline-line {
        width: 20%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 0;
    }
    .timeline-line::before {
        top: 0;
    }
    .timeline-border {
        height: 100% !important;
        width: 4px;
    }
    .timeline-content {
        width: 40%;
        padding: 20px 0 100px;
    }    
    .timeline-item:nth-child(2n) .timeline-content {
        text-align: right;
    }

    /** SERVIÇOS - RESPONSIVO 991px */
    .servicos-listagem {
        padding: 80px 0 0;
    }
    .servico-item {
        flex-direction: column;
        background: white;
        padding: 30px;
    }
    .servico-item:first-child {
        padding: 0 30px 30px;
    }
    .servico-image {
        left: 0;
    }
    .servico-item:first-child .servico-image {
        bottom: 50px;
    }
    .servico-image img {
        width: 100%;
        max-height: 380px;
        height: 100%;
    }
    .servico-content {
        padding: 30px 0 0;
        max-width: 100%;
    }
    .servico-item:first-child .servico-content {
        padding: 0;
    }

    /** CONTATO - RESPONSIVO - 991px */
    .contato-form-content {
        flex-direction: column-reverse;
    }
    .contact-form-infos, 
    .contact-form {
        width: 100%;
    }
    .infos ul {
        padding: 0;
    }
    .infos-descricao {
        text-align: center;
        padding-bottom: 30px;
    }
    .infos ul li * {
        font-size: 20px;
        line-height: 25px;
    }
    .home-cta {
        padding: 20px 0;
    }
    a.form-whatsapp .infos-svg {
        padding-right: 18px;
    }

    /** SEGMENTOS SINGLE - RESPONSIVO 991px */
    .segmento-bloco-content {
        flex-direction: column;
    }
    .segmento-bloco-imagem, .segmento-bloco-content .descricao {
        width: 100%;
    }
    .segmento-bloco-content .descricao {
        padding: 30px 0;
    }
    .segmentos-relacionados {
        padding: 0 70px 100px;
    }
    .segmento-bloco-content {
        padding: 40px 0 0;
    }
}
@media screen and (min-width: 768px){
}
@media screen and (max-width: 767px){
    /** HEADER - RESPONSIVO 767px */
    .header-logo {
        max-width: 50%;
    }
    .navbar>.container {
        gap: 15%;
    }
    .search-header.btn-2 {
        right: 15%;
    }
    .search-header:not(.btn-2) {
        right: 20px;
    }   
    .breadcrumb-principal {
        height: auto;
    }

    /** GERAL - RESPONSIVO 767px */
    body, html, p {
        font-size: 16px;
        line-height: 24px;
    }
    .titulo-principal {
        padding-bottom: 15px;
    }
    .titulo-principal h1, .titulo-principal h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .button-1 {
        margin: 20px 0 15px;
    }

    /** HOME - RESPONSIVO 767px */
    .home-produtos {
        padding: 30px 0;
    }

    .home-produtos .descricao {
        padding-bottom: 25px;
    }
    .produto-item {
        padding: 20px;
    }
    .produto-item-titulo {
        padding: 20px 0 10px;
    }

    .home-cta .button-1 a {
        font-size: 22px;
        line-height: 28px;
    }

    .home-historia .descricao {
        padding: 0 15px;
    }
    
    /** SOBRE - RESPONSIVO 767px */
    .home-historia.sobre-historia {
        padding: 30px 0;
    }
    .sobre-historia .container {
        padding: 0 15px 50px;
    }
    .sobre-diferenciais {
        padding: 50px 0;
    }
    .sobre-diferenciais-list ul li {
        padding: 10px 0;
    }    
    .sobre-diferenciais-list ul li p {
        font-size: 24px;
        line-height: 29px;
    }
    .sobre-diferenciais-list ul li hr {
        min-width: 100px;
    }
    .home-historia {
        padding: 30px 0;
    }

    .sobre-galeria {
        padding: 60px 0;
    }
    .sobre-galeria .titulo-principal {
        padding-bottom: 55px;
    }

    /** SEGMENTOS - RESPONSIVO 767px */
    .produtos-introducao {
        padding: 30px 0 20px;
    }
    .produtos-listagem {
        padding: 20px 0;
    }

    /** SINGLE SEGMENTOS - RESPONSIVO 767px */
    .titulo-principal-segmento {
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
        padding: 0;
    }
    .titulo-principal-segmento hr {
        max-width: 100%;
    }
    .segmento-bloco-content {
        padding: 30px 0 0;
    }
    .single-segmentos-introducao .descricao {
        padding-bottom: 25px;
    }
    .single-segmentos {
        padding: 50px 0 20px;
    }
    .segmentos-relacionados {
        padding: 0 10px 100px;
    }

    /** SERVIÇOS - RESPONSIVO 767px */
    .servicos-introducao {
        padding: 30px 0;
    }    
    .servico-titulo h2 {
        font-size: 24px;
        line-height: 29px;
        padding-bottom: 10px;
    }
    .servico-descricao {
        max-height: 100px;
    }

    /** BLOG - RESPONSIVO 767px */
    .blog-listagem .container-grid {
        grid-gap: 55px 50px;
    }
    .blog-item {
        padding-bottom: 20px;
    }
    .blog-item:not(:last-child) {
        border-bottom: 1px solid var(--primaria-1);
    }
    .blog-titulo h2 {
        font-size: 24px;
        line-height: 29px;
    }
    .blog-introducao {
        padding: 30px 0;
    }

    /** CONTATO - RESPONSIVO 767px */
    .contato-form-content {
        padding: 40px;
    }
    .contato-introducao {
        padding: 40px 0 0;
    }
    .infos ul li * {
        font-size: 16px;
        line-height: 20px;
    }
    .infos ul li a:not(.form-whatsapp) .infos-svg,
    .icone-whats .infos-svg {
        padding-right: 15px;
    }
    .infos ul li {
        grid-gap: 15px;
    }
    .infos-svg svg {
        width: 30px;
        height: 30px;
    }

    /** SINGLE - RESPONSIVO 767px */
    .single-blog {
        padding: 15px 0 0;
    }
    .single-blog article {
        padding-right: 15px;
    }
    .single-blog article .titulo-principal {
        padding: 20px 0 10px;
    }
    .single-blog article .titulo-principal h1 {
        font-size: 22px;
        line-height: 28px;
    }
    .single-blog .descricao h2 {
        font-size: 20px;
        line-height: 26px;
        padding: 20px 0 10px;
    }

    /** FOOTER - RESPONSIVO 767px */    
    .footer-mapa .menu-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px 20px;
        flex-wrap: wrap;
        padding: 20px 0;
    }
    .copyrighter {
        gap: 0;
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    .copyrighter * {
        font-size: 10px;
        line-height: 15px;
    }
    
}
@media screen and (max-width: 576px){
    .cta-contato p {
        font-size: 25px;
        line-height: 30px;
    }
    /* FOOTER */
    .footer-listagem ul {
        padding: 10px 15px;
    }
}
@media screen and (max-width: 475px){
    /** HEADER - RESPONSIVO 475 px */
    .navbar>.container {
        gap: 5%;
    }
    .search-header.btn-2 {
        right: 20%;
    }

    /** SOBRE - RESPONSIVO 475px */
    .sobre-diferenciais-list ul li hr {
        min-width: 40px;
    }
    .sobre-diferenciais-list ul li p {
        padding-left: 10px;
    }

    /** PRODUTOS LISTAGEM RESPONSIVO 475px */
    .produto-descricao {
        padding-top: 20px;
    }
    .produtos-listagem .produto-item-titulo {
        width: 100%;
    }

    /** CONTATO - RESPONSIVO 475px */
    .contato-form-content {
        padding: 40px 10px 10px;
    }

    /** SEGMENTO SINGLE - RESPONSIVO 475PX */
    .segmentos-relacionados {
        padding: 0 20px 50px;
    }
}
@media screen and (max-width: 320px){
}
/** FIM DO MEDIA */