/* Frotas Banner */
.frotas-banner {
    width: 100%;
    padding-top: 218px;
    padding-bottom: 138px;
    background-image: url("/assets/images/seguradoras/seguradoras-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.frotas-banner .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.frotas-banner h1 {
    font-size: 50px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 894px;
}

.frotas-banner h1 strong {
    font-weight: 700;
}

.frotas-banner .frotas-banner-subtitle {
    font-family: 'Arimo', sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    max-width: 908px;
    margin-bottom: 40px;
}

.frotas-banner-topics {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 23px;
    column-gap: 20px;
    width: 100%;
    max-width: 636px;
    margin-bottom: 40px;
}

.frotas-banner-topics-item {
    min-height: 81px;
    width: 100%;
    max-width: 308px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background-color: #0000001A;
    border: 1px solid #FFFFFF33;
    border-radius: 12px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.frotas-banner-topics-item p {
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    color: #ffffff;
}

.frotas-banner-ceabs {
    position: absolute;
    right: 0;
    bottom: -120px;
}

/* Quem Somos Presença */
.quem-somos-presenca {
    padding-top: 145px;
    padding-bottom: 160px;
}

.quem-somos-presenca .container {
    max-width: 1752px;
}

.quem-somos-presenca h2 {
    font-size: 50px;
    font-weight: 300;
    line-height: 68px;
    color: #000000;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.quem-somos-presenca h2 strong {
    font-weight: 700;
}

.quem-somos-presenca-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.quem-somos-presenca-content-item {
    height: 230px;
    width: 100%;
    max-width: 560px;
    padding: 40px 40px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F1F1F1;
    border: 1px solid #EEEEEE;
    border-radius: 12px;
    filter: grayscale(1);
    opacity: 0.35;
    transition: all .2s;
}

.quem-somos-presenca-content-item:hover {
    filter: none;
    opacity: 1;
}

.quem-somos-presenca-content-item-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quem-somos-presenca-content-item-top p {
    font-size: 20px;
    font-weight: 300;
    color: #0047BB;
}

.quem-somos-presenca-content-item:hover .quem-somos-presenca-content-item-top p {
    font-weight: 700;
}

.quem-somos-presenca-content-item-content {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #000000;
    max-width: 400px;
    opacity: 0;
    transition: opacity .2s;
}

.quem-somos-presenca-content-item:hover .quem-somos-presenca-content-item-content {
    opacity: 1;
}

.quem-somos-presenca-cta {
    text-align: center;
    margin-top: 50px;
}

@keyframes breathe {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Cargas Operações */
.cargas-operacoes {
    padding: 150px 0;
    background-color: #0F1E37;
}

.cargas-operacoes .container {
    max-width: 1748px;
}

.cargas-operacoes h2 {
    font-size: 50px;
    font-weight: 300;
    color: #FFFFFF;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    max-width: 1000px;
}

.cargas-operacoes h2 strong {
    font-weight: 700;
}

.cargas-operacoes-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 50px;
    background-color: #0047BB;
    border-radius: 12px;
}

.cargas-operacoes-tipo {
    width: 50%;
    padding: 70px;
    background-color: #0000001A;
    border: 1px solid #FFFFFF;
    border-radius: 12px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: all .2s;
}

.cargas-operacoes-tipo:hover {
    background-color: #00000059;
}

.cargas-operacoes-tipo h2 {
    font-size: 35px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: left;
    margin-bottom: 55px;
}

.cargas-operacoes-tipo:last-of-type h2 {
    margin-bottom: 25px;
}

.cargas-operacoes-tipo-check {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 4px 11px;
    margin-bottom: 15px;
    gap: 10px;
    background-color: #15233C0D;
    border: 1px solid #FFFFFF;
    border-radius: 7px;
    transition: all .2s;
}

.cargas-operacoes-tipo-check:hover {
    background-color: #0047BB;
}

.cargas-operacoes-tipo-check p {
    font-size: 15px;
    font-weight: 300;
    color: #FFFFFF;
}

.cargas-operacoes-cta {
    text-align: center;
    margin-top: 40px;
}

.cargas-operacoes-cta .cargas-operacoes-cta-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

/* Logística Soluções */
.logistica-solucoes {
    padding-bottom: 10px;
    background-color: #0F1E37;
    clip-path: polygon(10% 92%, 0% 92%, 0% 0%, 100% 0%, 100% 0%, 100% 92%, 90% 92%, 82% 100%, 18% 100%);
}

.logistica-solucoes h2 {
    font-size: 50px;
    font-weight: 300;
    line-height: 68px;
    color: #FFFFFF;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    max-width: 910px;
}

.logistica-solucoes .logistica-solucoes-subtitle {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #FFFFFF;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    max-width: 764px;
}

.logistica-solucoes h2 strong,
.logistica-solucoes .logistica-solucoes-subtitle strong {
    font-weight: 700;
}



.logistica-solucoes-wrapper {
    width: 100%;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0000001A;
    padding: 25px;
    margin-bottom: 150px;
    border: 1px solid #FFFFFF33;
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 2;
}

.logistica-solucoes-shake-top {
    position: absolute;
    top: 25px;
    left: 25px;
    animation: stretch-shake 1s ease-in-out infinite;
    transform-origin: left center;
}

.logistica-solucoes-shake-bottom {
    position: absolute;
    bottom: 25px;
    right: 25px;
    animation: stretch-shake 1s ease-in-out infinite;
    transform-origin: right center;
}

@keyframes stretch-shake {
    0% {
        transform: scaleX(1);
    }

    25% {
        transform: scaleX(0.85);
    }

    50% {
        transform: scaleX(1.15);
    }

    75% {
        transform: scaleX(0.92);
    }

    100% {
        transform: scaleX(1);
    }
}

.logistica-solucoes-bg {
    min-height: 660px;
    width: 96%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url("/assets/images/logistica-transporte/logistica-slides-bg.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.logistica-solucoes-bg h4 {
    font-size: 25px;
    font-weight: 300;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
}

.logistica-solucoes-bg h4 strong {
    font-weight: 700;
}

.logistica-solucoes-slides-wrapper {
    width: 100%;
    max-width: 840px;
    margin-bottom: 60px;
    touch-action: pan-y;
    /* filter: drop-shadow(0px 0px 55px rgba(0, 0, 0, 0.25)); */
}

.logistica-solucoes-slides {
    min-height: 379px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
    background-color: #0047BB;
    padding: 20px 76px;
    position: relative;
    clip-path: polygon(30% 0%, 34% 5%, 66% 5%, 70% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.logistica-solucoes-slides-icon {
    min-height: 210px;
    width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logistica-solucoes-slides-icon ._js_logistica_slide_icon {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.logistica-solucoes-slides-icon ._js_logistica_slide_icon.is-changing {
    opacity: 0;
    transform: scale(0.95);
}

.logistica-solucoes-slides-content {
    width: 100%;
    max-width: 396px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.logistica-solucoes-slides-content.is-changing {
    opacity: 0;
}

.logistica-solucoes-slides-content h3 {
    font-size: 30px;
    font-weight: 300;
    line-height: 35px;
    color: #FFFFFF;
    max-width: 350px;
}

.logistica-solucoes-slides-content h3 strong {
    font-weight: 700;
}

.logistica-solucoes-slides-content .logistica-solucoes-slides-content-subtitle {
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.logistica-solucoes-slides-content .logistica-solucoes-slides-content-text {
    font-family: 'Arimo', sans-serif;
    font-size: 15px;
    line-height: 25px;
    color: #FFFFFF;
}

.logistica-solucoes-slides-content .logistica-solucoes-slides-content-text:first-of-type {
    margin-top: 20px;
}

.logistica-solucoes-slides-content .logistica-solucoes-slides-content-divider {
    height: 1.5px;
    width: 100%;
    max-width: 395px;
    margin: 8px 0;
    background-color: rgb(255, 255, 255, 0.3);
}

.logistica-solucoes-slides-bottom-logo {
    position: absolute;
    left: 21px;
    bottom: 21px;
}

.logistica-solucoes-slides-buttons {
    position: absolute;
    right: 17px;
    bottom: 17px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.logistica-solucoes-slides-buttons img {
    padding: 4px;
    cursor: pointer;
}

/* Frotas Contact */
.frotas-contact {
    padding-top: 150px;
    padding-bottom: 160px;
    background-color: #0F1E37;
}

.frotas-contact-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.frotas-contact-form-content h3 {
    font-size: 40px;
    font-weight: 300;
    line-height: 50px;
    color: #ffffff;
    margin-bottom: 58px;
    max-width: 650px;
}

.frotas-contact-form-content h3 strong {
    font-weight: 700;
}

.frotas-contact-form-content p {
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    max-width: 300px;
    position: absolute;
    top: 43px;
    left: 54%;
}

.frotas-contact-form {
    width: 490px;
    padding: 24px 35px 32px 35px;
    background-color: #FFFFFF66;
    border: 1px solid #FFFFFF66;
    border-radius: 12px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.frotas-contact-form h3 {
    font-size: 25px;
    font-weight: 300;
    line-height: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.frotas-contact-form h3 strong {
    font-weight: 700;
}

.frotas-contact-form input {
    font-size: 15px;
    font-weight: 300;
    height: 58px;
    width: 100%;
    padding: 12px 16px;
    background-color: #F8F8F8;
    border: 1px solid #E3E3E4;
    border-radius: 4px;
    color: #45484C;
    margin-bottom: 24px;
}

.frotas-contact-form .btn {
    width: 130px;
    display: block;
    margin-left: auto;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.clients-logo {
    position: absolute;
    right: 14%;
    bottom: -105px;
}

/* Seguradoras Solucoes */
.seguradores-solucoes {
    padding-top: 156px;
    padding-bottom: 265px;
    background-color: var(--color-primary);
    background-image: url(/assets/images/seguradoras/solucoes-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.seguradores-solucoes h2 {
    font-size: 50px;
    font-weight: 300;
    line-height: 68px;
    color: #ffffff;
    text-align: center;
    padding: 0 16px;
    margin-bottom: 40px;
}

.seguradores-solucoes h2 strong {
    font-weight: 700;
}

.seguradores-solucoes-item {
    display: flex;
    justify-content: space-between;
    min-height: 483px;
    gap: 20px;
    padding: 38px 40px 38px 38px;
    margin-bottom: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1.5px solid #FFFFFF;
    border-radius: 12px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.seguradores-solucoes-item-content {
    width: 100%;
    max-width: 476px;
}

.seguradores-solucoes-item h3 {
    font-size: 25px;
    font-weight: 300;
    line-height: 35px;
    color: #ffffff;
    text-transform: uppercase;
}

.seguradores-solucoes-item:first-of-type h3 {
    margin-bottom: 33px;
}

.seguradores-solucoes-item h3 strong {
    font-weight: 700;
}

.seguradores-solucoes-item-check {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background-color: rgba(21, 35, 60, 0.05);
    border: 1px solid #FFFFFF;
    border-radius: 12px;
    margin-top: 17px;
}

.seguradores-solucoes-item-check p {
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
}

.seguradores-solucoes-item-content-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #ffffff;
    margin-top: 17px;
    margin-bottom: 33px;
}

.seguradores-solucoes-item:first-of-type .btn {
    margin-top: 64px;
}

/* Segmentos Contact */
.segmentos-contact {
    padding-top: 130px;
    padding-bottom: 156px;
    margin-top: -140px;
    background-color: #0F1E37;
    clip-path: polygon(100% 100%, 0% 100%, 0% 100%, 0% 7%, 7% 7%, 18% 0%, 83% 0%, 93% 7%, 100% 7%, 100% 100%, 92% 100%, 81% 91%);
}

.segmentos-tecnologia {
    position: relative;
    text-align: center;
    margin-bottom: 138px;
}

.segmentos-tecnologia img {
    margin: 0 auto 30px auto;
    transform: translateX(-8%);
}

.segmentos-tecnologia h3 {
    font-size: 40px;
    font-weight: 300;
    line-height: 48px;
    color: #ffffff;
    position: absolute;
    top: 4%;
    right: -0.4%;
    text-align: left;
    max-width: 424px;
    z-index: 2;
}

.segmentos-tecnologia h3 strong {
    font-weight: 700;
}

.segmentos-tecnologia p {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #ffffff;
    max-width: 956px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.segmentos-tecnologia p strong {
    font-weight: 700;
}

.segmentos-contact-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.segmentos-contact-form-content h3 {
    font-size: 40px;
    font-weight: 300;
    line-height: 50px;
    color: #ffffff;
    margin-bottom: 58px;
    max-width: 650px;
}

.segmentos-contact-form-content h3 strong {
    font-weight: 700;
}

.segmentos-contact-form-content p {
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    max-width: 300px;
    position: absolute;
    top: 43px;
    left: 54%;
}

.segmentos-contact-form {
    width: 490px;
    padding: 24px 35px 32px 35px;
    background-color: #FFFFFF66;
    border: 1px solid #FFFFFF66;
    border-radius: 12px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.segmentos-contact-form h3 {
    font-size: 25px;
    font-weight: 300;
    line-height: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.segmentos-contact-form h3 strong {
    font-weight: 700;
}

.segmentos-contact-form input {
    font-size: 15px;
    font-weight: 300;
    height: 58px;
    width: 100%;
    padding: 12px 16px;
    background-color: #F8F8F8;
    border: 1px solid #E3E3E4;
    border-radius: 4px;
    color: #45484C;
    margin-bottom: 24px;
}

.segmentos-contact-form .btn {
    width: 130px;
    display: block;
    margin-left: auto;
}

@media (max-width: 1024px) {
    .cargas-operacoes-wrapper {
        flex-direction: column;
    }

    .cargas-operacoes-tipo {
        width: 100%;
    }

    .logistica-solucoes {
        clip-path: none;
        padding-bottom: 80px;
    }

    .segmentos-contact {
        clip-path: none;
        margin-top: -205px
    }

    .logistica-solucoes-wrapper {
        margin-bottom: 0px;
    }

    .frotas-contact {
        padding-top: 110px;
        padding-bottom: 120px;
    }

    .frotas-contact-bottom {
        flex-direction: column;
        gap: 50px;
    }

    .frotas-contact-form-content,
    .frotas-contact-form {
        width: 100%;
    }

    .frotas-contact-form-content h3 {
        max-width: none;
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 34px;
        text-align: center;
    }

    .frotas-contact-form-content p {
        position: static;
        max-width: none;
        margin-bottom: 24px;
        text-align: center;
    }

    .frotas-contact-form-content>div>img {
        margin: 0 auto;
    }

    .frotas-contact-form {
        max-width: 620px;
    }
}

@media (max-width: 768px) {
    .frotas-banner-ceabs {
        width: 100px;
        bottom: -40px;
    }

    .cargas-operacoes-wrapper,
    .cargas-operacoes-tipo {
        padding: 20px;
    }

    .cargas-operacoes-tipo:last-of-type .cargas-operacoes-tipo-check {
        max-width: none;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .frotas-contact,
    .cargas-operacoes {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .frotas-contact-form-content h3 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
    }

    .quem-somos-presenca {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .logistica-solucoes-wrapper {
        padding: 20px;
    }

    .logistica-solucoes-slides {
        flex-direction: column;
        padding: 70px 20px;
        gap: 40px;
    }

    .logistica-solucoes-shake-top,
    .logistica-solucoes-shake-bottom {
        display: none;
    }

    .seguradores-solucoes-item {
        flex-direction: column;
    }

    .seguradores-solucoes-item-content {
        max-width: none;
    }

    .seguradores-solucoes-item-image img {
        width: 100%;
    }

    .frotas-contact-form {
        width: 100%;
        max-width: none;
        padding: 24px 20px 28px 20px;
    }

    .segmentos-contact-bottom {
        flex-direction: column;
        gap: 50px;
    }

    .segmentos-contact {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .segmentos-tecnologia h3 {
        position: initial;
        max-width: none;
        text-align: center;
        margin-bottom: 40px;
    }

    .quem-somos-presenca-content-item,
    .quem-somos-presenca-content-item-content {
        filter: none;
        opacity: 1;
    }
}

@media (max-width: 500px) {
    .frotas-banner {
        padding-top: 200px;
        padding-bottom: 140px;
    }

    .frotas-banner h1,
    .frotas-controle .frotas-controle-headline h2,
    .quem-somos-presenca h2,
    .logistica-solucoes h2,
    .cargas-operacoes .container > h2,
    .seguradores-solucoes h2,
    .segmentos-tecnologia h3,
    .segmentos-contact-form-content h3 {
        font-size: 36px;
        line-height: 46px;
    }

    .frotas-banner-ceabs {
        display: none;
    }

    .frotas-banner-topics-item {
        width: 100% !important;
    }

    .logistica-solucoes {
        margin-bottom: auto;
    }

    .frotas-contact-form input {
        height: 52px;
        margin-bottom: 18px;
    }

     .frotas-contact-form .btn {
        width: 100%;
    }

    .segmentos-contact-form-content p {
        position: initial;
        max-width: none;
        margin-bottom: 40px;
    }

    .segmentos-contact-form {
        width: 100%;
    }  
}
