@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Sora', sans-serif;
}
html,body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
a{
    color: inherit;
    text-decoration: none;
}
ul,li{
    list-style-type: none;
}
.wrapper{
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
}

#toggle-label{
    display: none;
    font-size: 32px;
    color: hsl(257, 7%, 63%);
    cursor: pointer;
}
#toggle-label i{
    font-size: 32px;
    color: #112638
}
#toggle{
    display: none;
}

.button {
    min-width: 200px;
    width: fit-content;
    display: flex;
    color: white;
    background-color: #193349;
    padding: 10px 32px;
    border-radius: 60px;

    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    align-items: center;
    font-size: 18px;
}

.button > .arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    position: relative;
    transform: rotate(-45deg);
    margin: 0 6px;
    transition: all .3s ease;
}

.button > .arrow::before {
    display: block;
    background-color: currentColor;
    width: 3px;
    transform-origin: bottom right;
    height: 2px;
    position: absolute;
    opacity: 0;
    bottom: calc(-2px / 2);
    transform: rotate(45deg);
    transition: all .3s ease;
    content: "";
    right: 0;
}

.button:hover > .arrow {
    transform: rotate(-45deg) translate(8px, 8px);
    border-color: text-hover-color;
}

.button:hover > .arrow::before {
    opacity: 1;
    width: 20px;
}

.button:hover, #btn-clientes:hover {
    letter-spacing: 1px;
    opacity: 0.8;
    color: #fff;
}
header{
    background-color: white;
    border: 1px solid #e7e7e7;
    position: fixed;
    z-index: 999;
    width: 100%;
    left: 0px;
    right: 0px;
}
#header-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
}
#header-content a img{
    max-width: 150px;
    width: 100%;
}
#header-content nav ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    font-weight: 500;
    color: #193349;
    font-size: 14px;
}
#header-content nav ul li{
    transition: all .3s ease;       
}
.underline {
    position: relative;
    text-decoration: none;
}
.underline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #FA7F03;
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
    transform: scaleX(0);
}
.underline:hover::after{
    transform: scaleX(1);
}
#header-content nav ul li:hover{
    opacity: 0.8;
    cursor: pointer;
}
#btn-contato{
    display: block;
    width: fit-content;
    padding: 10px 26px;
    background-color: #193349;
    font-weight: 600;
    border-radius: 32px;
    color: white;
}

#chatbot{
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    z-index: 9999;
    bottom: 10px;
    right: 10px;
}
#chat-bot-content{
    background-color: white;
    border: 1px solid #e7e7e7;
    border-radius: 32px;
}
#chat-bot-content-texts{
    background-color: #112638;
    border-radius: 32px 32px 0px 0px;
    padding: 20px 20px 20px 20px;
}
#chat-bot-content-texts h2{
    color: white;
    font-size: 22px;
}
#chat-bot-content-texts h2 span{
    color: #FA7F03;
}
#chat-bot-content-texts p{
    color: #e7e7e7;
    font-size: 16px;
}
#chat-bot-content-form{
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.chat-bot-content-inputs input, .chat-bot-content-inputs textarea{
    outline: none;
    border: none;
    border-bottom: 2px solid #e7e7e7;
    padding: 12px;
    width: 100%;
}
.chat-bot-content-inputs{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
#div-mensagem{
    align-items: flex-start;
}
#div-mensagem i{
    padding: 12px 0px;
}
.chat-bot-content-inputs i{
    color: #cecece;
}
.chat-bot-content-inputs textarea{
    resize: none;
    height: 80px;
}
#btn-chat-bot{
    border: none;
    height: 60px;
    border-radius: 50%;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FA7F03;
    color: white;
    font-size: 26px;
}
#btn-chat-bot-enviar{
    border: none;
    border-radius: 32px;
    padding: 12px;
    background-color: #FA7F03;
    color: #112638;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}
#btn-chat-bot-enviar:hover{
    cursor: pointer;
    opacity: 0.8;
}
#btn-chat-bot-enviar i{
    color: #112638 !important;
}
#btn-chat-bot:hover{
    cursor: pointer;
    opacity: 0.8;
}

#introduction{
    padding: 110px 0px 60px 0px;
    z-index: 99;
    position: relative;
}
#main-content-texts{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
#main-content-texts-introduction{
    width: 100%;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
#main-content-texts ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    color: #193349;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}
#main-content-texts-introduction-main{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#main-content-texts h1{
    line-height: 38px;
    color: #193349;
    font-size: 48px;
    font-weight: 700;
}
#main-content-texts p, #clientes-content-text p, .tecnologia-card-text p, #servicos-content-text p, #tecnologias-content-text p, #faq-content-text p, .faq-content-pergunta p{
    font-size: 16px;
    color: #5F5F5F;
    font-weight: 400;
}
#main-content-texts h1 span, #clientes-content-text h2 span, #servicos-content-text h2 span, #tecnologias-content-text h2 span, #faq-content-text h2 span{
    color: #FA7F03;
}
#main-content-image{
    height: 410px;
    width: 80%;
    object-fit: contain;
}

#blob1{
    position: absolute;
    top:  300px;
    left: -300px;
    z-index: -99;
}
#blob2{
    position: absolute;
    top:  1900px;
    right: 0px;
    opacity: 0.5;
    z-index: -99;
}

#clientes-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
#clientes-ul{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 90px;
}
#clientes-ul li{
    width: fit-content;
    height: fit-content;
    filter: grayscale(1);
}
#clientes-ul li:hover{
    filter: grayscale(0);
    cursor: pointer;
}
#clientes-ul li img{
    width: 110px;
    height: 110px;
    object-fit: contain;
}
#btn-clientes{
    border: none;
    width: fit-content;
    display: flex;
    color: white;
    background-color: #193349;
    padding: 10px 32px;
    border-radius: 60px;
    transition: all .3s ease;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    align-items: center;
    font-size: 18px;
}
.hidden{
    display: none;
}


#clientes, #servicos, #tecnologias{
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
#clientes-content-text, #servicos-content-text, #tecnologias-content-text, #faq-content-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
}
#clientes-content-text h2, #servicos-content-text h2, #tecnologias-content-text h2, #faq-content-text h2{
    color: #112638;
    font-size: 32px;
    font-weight: 700;
}
#servicos-content-cards{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.servicos-content-card{
    border-radius: 32px;
    border: 1px solid #e7e7e7;
    padding: 32px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    height: fit-content;
    min-height: 350px;
    max-width: 240px;
}
.servicos-content-card img{
    width: 100%;
    min-height: 50px;
    max-height: 50px;
    object-fit: contain;
    max-width: 50px;
}
.servicos-content-card h3{
    color: #112638;
    font-weight: 600;
    font-size: 20px;
}
.servicos-content-card p{
    color: #747474;
    font-weight: 400;
    font-size: 14px;
    min-height: 150px;
}
.servicos-content-card button{
    background-color: transparent;
    border: none;
    color: #112638;
    font-weight: 500;
    font-size: 14px;
}
.servicos-content-card button:hover{
    cursor: pointer;
    opacity: 0.8;
}

#tecnologias-content-buttons{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}
.btn-tecnologias, .btn-faq{
    border: none;
    background-color: transparent;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
}
.btn_on{
    font-weight: 500;
    color: #112638;
    text-decoration: 2px underline;

    text-decoration-color: #FA7F03;
}
.btn_off{
    color: #5F5F5F;
    text-decoration: none;
}
.display_on{
    display: flex !important;
}
.display_off{
    display: none !important;
}
.tecnologias-content-carousel{
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
}
.tecnologias-content-card{
    border-radius: 32px;
    cursor: pointer;
    border: 1px solid #e7e7e7;
    padding: 32px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 330px;
    height: fit-content;
    min-height: 320px;
    min-width: 330px;
    max-width: 330px;
}
.tecnologias-content-card img{
    height: 70px;
    max-height: 70px;
    width: 100%;
    object-fit: contain;
    max-width: 50px;
}
.tecnologias-content-card h3{
    color: #112638;
    font-weight: 600;
    font-size: 20px;
}
.tecnologias-content-card p, #drag-p{
    color: #747474;
    font-weight: 400;
    font-size: 14px;
}

#faq{
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.faq-content-perguntas{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.faq-content-pergunta{
    padding: 30px 0;
    border-bottom: 1px solid #e7e7e7;
    width: 80%;
}
#faq-content-selection{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.faq-content-pergunta:hover{
    cursor: pointer;
}
.faq-content-pergunta-texts{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;  
    width: 100%;
}
.faq-content-pergunta-texts h2{
    color: #112638;
    font-weight: 600;
    font-size: 17px;
}
.faq-content-pergunta-texts i{
    color: #112638;
    font-size: 18px;
}
.faq-content-pergunta p{
    font-size: 15px !important;
    margin-top: 20px;
    display: none;
}


#pre-footer{
    padding: 40px;
    position: relative;
}
#pre-footer-content{
    padding: 30px;
    background-color: white;
    border: 1px solid #e7e7e7;
    border-radius: 30px;
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    right: 0px;
    top: 0px;
}
#pre-footer-content h2{
    color: #193349;
    font-size: 24px;
    font-weight: 700;
    max-width: 600px;
}

footer{
    background-color: #112638;
    padding: 40px 0px 32px 0px;
}
#footer-content-start{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 64px 0px 32px 0;
}
.footer-content-start-card{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    max-width: 300px;
}
.footer-content-start-card i{
    color: white;
    font-size: 32px;
}
#footer-content{
    padding: 64px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
#footer-content-img-p{
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 300px;
}
#footer-content-img-p img{
    width: 100%;
    max-width: 150px;
}
#footer-content-img-p p, .footer-content-start-card p{
    color: #cecece;
    font-size: 14px;
}
#footer-content nav, #footer-content nav ul{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
#footer-content nav h2{
    font-size: 18px;
    color: white  ;
}
#footer-content nav ul li a{
    font-size: 14px;
    color: #cecece;
}
#footer-final-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
footer hr{
    width: 100%;
    border: 0px;
    border-top: 1px solid #193349;
    border-radius: 6px;
}
#footer-final-content p{
    font-size: 12px;
    font-weight: 400px;
    color: white;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .servicos-content-card{
        max-width: none;
    }
    #main-content-image{
        width: 50%;
    }
    #clientes-ul{
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width: 990px) {
    #chat-bot-content-texts h2{
        font-size: 20px;
    }
    #chat-bot-content-texts p{
        font-size: 14px;
    }
    #footer-content-start{
        justify-content: center;
        flex-wrap: wrap;
        padding: 80px 0px 32px 0;
    }
    #header-content{
        flex-wrap: wrap;
    }
    header nav{
        display: none;
        width: 100%;
        background-color: #112638;
        border-radius: 32px;
        padding: 32px;
    }
    #header-content nav ul{
        width: 100%;
        flex-direction: column;
        color: white;
        gap: 12px;
    }
    #header-content nav ul li{
        width: 100%;
        border-bottom: 1px solid #193349;
    }
    #header-content nav ul li a{
        width: 100%;
        display: block;
        text-align: center;
        padding: 10px;
    }
    #toggle-label{
        display: block;
    }
    #toggle:checked + #nav-header{
        display: flex;
    }
}
@media screen and (max-width: 768px) {
    #clientes-ul{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 630px) {
    #clientes-ul{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #main-content-image{
        display: none
    }
    #footer-content-img-p{
        max-width: none;
        width: 100%;
    }
    #pre-footer-content{
        flex-direction: column;
    }
    #pre-footer-content h2{
        font-size: 20px;
        text-align: center  ;
    }
    #introduction{
        padding: 120px 0px 60px 0px;
    }
    #main-content-texts-introduction, #main-content-texts-introduction-main{
        align-items: center;
        text-align: center;
    }
    #main-content-texts ul{
        font-size: 12px;
    }
    #main-content-texts h1{
        font-size: 38px;
    }
    #main-content-texts p, #clientes-content-text p, .tecnologia-card-text p, #servicos-content-text p, #tecnologias-content-text p{
        font-size: 14px;
    }
    .button{
        font-size: 14px;
        min-width:fit-content;
    }
}
@media screen and (max-width: 510px) {
    #clientes-ul{
        justify-content: center;
    }
    #pre-footer-content h2{
        font-size: 14px;
    }
    #blob1,#blob2{
        display: none;
    }
    #tecnologias-content-buttons{
        gap: 20px;
    }
}