#mosaico {
    padding: 25px 0;
    background: #f4f4f4;
}
#mosaico .list-mosaico {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    padding: 0;
}
#mosaico .list-mosaico > :first-child {
    grid-row: 1 / 3;
}
#mosaico .list-mosaico .item-mosaico {
    position: relative;
    display: block;
    width: 100%;

    border-radius: 20px;

    z-index: 0;
    overflow: hidden;
}
#mosaico .list-mosaico .item-mosaico::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 55.970149253731336%;
}
#mosaico .list-mosaico .item-mosaico img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;
    
    z-index: -1;
}
#mosaico .list-mosaico .item-mosaico .content {
    position: absolute;
    left: 40px;
    bottom: 40px;
    
    min-width: 60%;
    
    padding: 30px;
    background: rgba(252, 254, 254, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}
#mosaico .list-mosaico .item-mosaico .content h2 {
    display: block;
    max-width: 50%;
    color: rgba(0, 0, 0, 1);
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0 0 25px 0;
}
#mosaico .list-mosaico .item-mosaico .content .botao {
    position: relative;
    display: block;
    width: fit-content;
    
    padding: 10px 30px;
    background: #0098DA;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: none;

    -webkit-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#mosaico .list-mosaico .item-mosaico .content .botao:hover {
    background: #003047;
    box-shadow: none;
    transform: scale(1.05);
    font-weight: 600;
}




/* Empresa */
#empresa {
    padding: 120px 0;
    background: #f4f4f4;
}
#empresa .selo-empresa {
    position: absolute;
    top: -60px;
    left: 0;
    width: 60px;
    height: 60px;

    -o-object-fit: contain;
    object-fit: contain;
}
#empresa .image {
    position: relative;
    display: block;
    width: 100%;

    border-radius: 20px;
    overflow: hidden;
}
#empresa .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 64.2369020501139%;
}
#empresa .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;
}
#empresa h2 {
    color: rgba(33, 34, 34, 1);
    font-size: 45px;
    font-weight: 400;
    line-height: 53px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0 0 15px 0;
}
#empresa p {
    width: 100%;
    max-width: 405px;
    color: rgba(33, 34, 34, 1);
    font-size: 12.67px;
    font-weight: 400;
    line-height: 14.74px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0 0 25px 0;
}
#empresa p b {
    font-weight: 700;
}
#empresa .botao {
    position: relative;

    display: flex;
    align-items: center;
    gap: 20px;

    padding: 15px 0;
    width: fit-content;
    border-radius: 10px;

    color: #3C9CCB;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;

    -webkit-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#empresa .botao:hover {
    background: #3C9CCB;
    padding: 15px 30px;
    color: #fff;
}
#empresa .botao svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    padding-left: 20px;

    display: block;
    fill: #3C9CCB;
    width: 100px;
    height: 100%;

    margin: auto;

    pointer-events: none;

    -webkit-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#empresa .botao:hover svg {
    opacity: 0;    
}




/* Segmentos */
#produtos {
    padding: 60px 0;
    background: #f4f4f4;
}
#produtos .swiperProdutos {
    padding-left: 21px;
    width: calc(100% + 21px);
    margin-left: -21px;
}
#produtos .card-produto {
    position: relative;
    display: block;
    text-decoration: none;
}
#produtos .card-produto::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -20px;
    width: 1px;
    height: 100%;
    
    background-color: #000;
}
#produtos .card-produto::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -21px;
    width: 3px;
    height: 15px;
    background: #0095da;
}
#produtos .card-produto .image {
    position: relative;
    display: block;
    width: 100%;

    border-radius: 10px;
    margin: 0 0 30px 0;

    overflow: hidden;
}
#produtos .card-produto .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 62.31454005934718%;
}
#produtos .card-produto .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;
}

#produtos .card-produto h2 {
    color: #212222;
    font-size: 30px;
    font-weight: 600;
    line-height: 38.4px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0 0 30px 0;
}
#produtos .card-produto p {
    color: #212222;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.61px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0 0 60px 0;
}
#produtos .card-produto .botao {
    position: relative;

    display: flex;
    align-items: center;
    gap: 20px;

    padding: 15px 0;
    width: fit-content;
    border-radius: 10px;

    color: #3C9CCB;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;

    -webkit-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#produtos .card-produto:hover .botao {
    background: #3C9CCB;
    padding: 15px 30px;
    color: #fff;
}
#produtos .card-produto .botao svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    padding-left: 20px;

    display: block;
    fill: #3C9CCB;
    width: 100px;
    height: 100%;

    margin: auto;

    pointer-events: none;

    -webkit-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#produtos .card-produto:hover .botao svg {
    opacity: 0;    
}
#produtos .swiperProdutosNavivation {
    display: flex;
    align-items: center;
    margin: 60px 0 0 -21px;
}
#produtos .swiperProdutosNavivation .navProdutos {
    display: block;
    padding: 10px 17.5px;
    border: 1px solid rgba(0, 0, 0, 1);

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
#produtos .swiperProdutosNavivation .navProdutos.swiper-button-disabled {
    opacity: .3;
    cursor: default;
}
#produtos .swiperProdutosNavivation .navProdutos:not(.swiper-button-disabled):hover {
    background: #d9d9d9;
}
#produtos .swiperProdutosNavivation .navProdutos svg {
    display: block;
    fill: #000;
    width: 40px;
    height: 10px;
}




/* Tecnologias */
#tecnologias {
    padding: 100px 0 100px 0;
    background: #fff;
}
#tecnologias h2 {
    color: #0095da;
    font-size: 51.39px;
    font-weight: 600;
    line-height: 61px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0 0 30px 0;
}
#tecnologias p {
    color: #212222;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0%;
    text-align: left;
    margin: 0 0 30px 0;
    padding-right: 10px;
}
#tecnologias img.selo-tpt {
    display: block;
    width: 95px;
    height: 95px;
    margin: 0 auto;
}
#tecnologias .render-correia {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 64%;
    z-index: 0;
}
#tecnologias .render-correia::before {
    content: '';
    display: block;
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;

    border-radius: 40px;
    background: #0095da;
}
#tecnologias .render-correia img {
    position: absolute;
    top: 0;
    left: 0;

    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;

    /* filter: drop-shadow(0px -50px 15px rgba(0, 0, 0, 0.25)); */
}




/* Servicos */
#servicos {
    padding: 130px 0;
    background: #f4f4f4;
}
#servicos .section-title {
    display: flex;
    align-items: center;
    gap: 95px;
    margin: 0 0 100px 0;
}
#servicos .section-title h2 {
    width: 100%;
    max-width: 500px;
    color: #212222;
    font-size: 45px;
    font-weight: 400;
    line-height: 53.5px;
    letter-spacing: 0%;
    text-align: left;
}
#servicos .section-title p {
    position: relative;
    width: 100%;
    color: #343434;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0%;
    text-align: left;
    margin: 0;
}
#servicos .section-title p::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -20px;
    width: 1px;
    height: 100%;
    
    background-color: #000;
}
#servicos .section-title p::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -21px;
    width: 3px;
    height: 15px;
    background: #0095da;
}
#servicos .row-gap {
    --bs-gutter-x: 5rem;
    --bs-gutter-y: 2.5rem;
}
#servicos .card-produto {
    position: relative;
    display: block;
    text-decoration: none;

    width: 100%;
    height: 100%;
    
    padding: 60px 30px 60px 30px;
    background: rgba(255, 255, 255, 1);
    border-radius: 35px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
#servicos .card-produto:hover {
    box-shadow: 8px 8px 4px 0px rgba(0, 0, 0, 0.1);
}
#servicos .card-produto .image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    
    margin: 0 auto 40px auto;
    z-index: 0;
}
#servicos .card-produto .image::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;

    background: #0095da;
    border-radius: 100px;
    z-index: -1;

    margin: auto;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
#servicos .card-produto:hover .image::before {
    box-sizing: content-box;
    width: 90px;
    height: 90px;
    border: 30px solid #fff;
    box-shadow: 0 0 0 4px #0095da;
}
#servicos .card-produto .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 85%;
}
#servicos .card-produto .image img {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 90px;
    
    -o-object-fit: contain;
    object-fit: contain;
    
    margin: auto;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
#servicos .card-produto:hover .image img {
    height: 45px;
}
#servicos .card-produto .content {
    position: relative;
}
#servicos .card-produto .content h2 {
    display: flex;
    justify-content: center;
    align-items: center;

    max-width: 75%;
    min-height: 77px;

    color: #212222;
    font-size: 30px;
    font-weight: 800;
    line-height: 38.4px;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 auto 20px auto;
}
#servicos .card-produto .content p {
    color: #212222;
    font-size: 12px;
    font-weight: 400;
    line-height: 18.61px;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 0 30px 0;
}
#servicos .card-produto .botao {
    position: absolute;
    left: 30px;
    bottom: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    padding: 0px 30px;
    width: 0;
    border-radius: 10px;

    color: #3C9CCB;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    -webkit-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#servicos .card-produto .botao svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    padding-left: 20px;

    display: block;
    fill: #3C9CCB;
    width: 100px;
    height: 100%;

    margin: auto;

    pointer-events: none;

    -webkit-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#servicos .card-produto:hover .botao svg {
    opacity: 0;    
    transform: translateX(30px);
}




/* Responsivo Mobile */
@media (max-width: 992px) {
    #mosaico {
        padding: 10px 0 10px 0;
    }
    #mosaico .list-mosaico {
        display: flex;
        flex-direction: row;
        gap: 10px;

        width: 100%;
        padding: 0;
        overflow: auto;
    }
    #mosaico .list-mosaico .item-mosaico {
        width: calc(100% - 40px);
        min-width: calc(100% - 40px);
    }
    #mosaico .list-mosaico .item-mosaico::after {
        padding-bottom: 100%;
    }
    #mosaico .list-mosaico .item-mosaico .content {
        left: 15px;
        bottom: 15px;
        padding: 15px;
        width: calc(100% - 30px);
    }
    #mosaico .list-mosaico .item-mosaico .content h2 {
        max-width: unset;
        font-size: 24px;
        line-height: normal;
        text-align: center;
    }
    #mosaico .list-mosaico .item-mosaico .content a {
        margin: 0 auto;
    }




    /* Empresa */
    #empresa {
        padding: 0;
    }
    #empresa .selo-empresa {
        display: none;
        top: -70px;
        left: 15px;
        right: 15px;
        margin: auto;
    }
    #empresa .image {
        margin-bottom: 30px;
    }
    #empresa h2 {
        font-size: 32px;
        line-height: 38px;
    }
    #empresa p {
        font-size: 16px;
        line-height: normal;
    }




    /* Produtos */
    #produtos {
        padding: 30px 0 60px 0;
        overflow: hidden;
    }
    #produtos .swiperProdutos {
        width: 100%;
        margin-left: 0;
        padding-right: 45px;
    }
    #produtos .swiperProdutosNavivation {
        margin: 30px 0 0 0;
    }
    #produtos .card-produto h2 {
        font-size: 24px;
    }
    #produtos .card-produto p {
        margin: 0 0 30px 0;
    }




    /* Tecnologias */
    #tecnologias {
        padding: 50px 0;
    }
    #tecnologias h2 {
        font-size: 28px;
        line-height: normal;
        margin: 0 0 20px 0;
    }
    #tecnologias .render-correia {
        margin: 50px 0 0 0;
        padding-bottom: 0;
    }
    #tecnologias .render-correia::before {
        left: 0;
        top: -15px;
        border-radius: 15px;
    }
    #tecnologias .render-correia img {
        position: relative;
        width: 100%;
        z-index: 1;
        /* transform: scaleX(-1) rotate(235deg) translate(-30px, 10px); */
    }
    #tecnologias p {
        font-size: 15px;
        margin: 0;
    }




    /* Servicos */
    #servicos {
        padding: 50px 0;
        overflow: hidden;
    }
    #servicos .section-title {
        flex-direction: column;
        gap: 30px;
        margin: 0 0 50px 0;
    }
    #servicos .section-title h2 {
        font-size: 32px;
        line-height: 38px;
    }
    #servicos .section-title p::before {
        top: -25px;
        left: 0;
        width: 100%;
        height: 1px;
    }
    #servicos .section-title p::after {
        top: -25.5px;
        left: unset;
        right: 0;
        width: 15px;
        height: 3px;
    }
    #servicos .card-produto .content p {
        font-size: 14px;
        line-height: normal;
        margin: 0;
    }
}