body {
    font-family: 'Jost', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
}

h1,
h2,
h3,
h4,
.texto-produtos p,
.texto-solucoes span,
.texto-tec h1 {
    font-family: 'Michroma', sans-serif;
    letter-spacing: 1px;
}

/* --------------------- ANIMAÇÃO BÁSICA --------------------- */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* fade + escala */
.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.fade-in-scale.show {
    opacity: 1;
    transform: scale(1);
}

.fade-rotate {
    opacity: 0;
    transform: rotate(-10deg);
    transition: all 0.8s ease-out;
}

.fade-rotate.show {
    opacity: 1;
    transform: rotate(0deg);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.zoom-in.show {
    opacity: 1;
    transform: scale(1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.slide-in-right.show {
    opacity: 1;
    transform: translateX(1);
}


/* ----------------------------------- inicio do banner ----------------------------------- */

.banner-slide {
    position: relative;
    width: 100%;
    height: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.banner-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
    /* permite clicar em links por baixo, se tiver */
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;

}

.slide.active {
    opacity: 1;
    z-index: 1;

}

.conteudo-banner {
    position: absolute;
    top: 40%;
    transform: translateX(40%);
    width: 70%;
    color: aliceblue;
    text-align: center;
    z-index: 999;
}

.texto-banner {
    font-size: 2em;
}

.conteudo-link {
    font-size: 16px;
    font-weight: 700;
    margin-top: 25px;
}

.conteudo-link a {
    font-family: "Montserrat", sans-serif;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: white;
    background-image: linear-gradient(180deg, #3373e4 0%, #40e9bf 100%);
    padding: 8px 25px;
    border-radius: 5px;
}

.conteudo-link img {
    margin-left: 10px;
    width: auto;
    height: 20px;
}

.conteudo-link:hover {
    transform: scale(0.85);
    transition: 0.5s;
}

/*------------------------------------------------ fim do banner --------------------------------------------- */


/*------------------------------------------------ incio produtos -------------------------------------------- */

.produtos {
    width: 100%;
    background-color: #5F9EA0;
    text-align: center;
    padding-top: 50px;
}

.texto-produtos span {
    color: aliceblue;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 20px;
}

.texto-produtos p {
    color: #8AFFE2;
    font-family: "Michroma", sans-serif;
    font-size: 30px;
    font-weight: 500;

}

.inline-produtos {
    color: white;
    display: flex;
    margin: 0 auto;
    width: 85%;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 40px 0;
    gap: 20px;
}

.item-produto {
    margin: 0 auto;
    width: 27%;
}

.item-produto p {
    line-height: 1.5;
}

.item-produto img {
    width: 100%;
    height: auto;
    display: block;
}

/* -------------------------------------- Fim Produtos ------------------------------------- */

/* -------------------------------------- inicio soluções ---------------------------------- */

.solucoes {
    text-align: center;
    width: 90%;
    padding-top: 50px;
    margin: 0 auto;
}

.texto-solucoes {
    margin: 0 auto;
    width: 85%;
}


.texto-solucoes span {
    font-family: "Michroma", Sans-serif;
    color: #00039E;
    font-weight: 500;
    font-size: 2em;
}

.info-solucao {
    display: flex;
    margin: 0 auto;
    width: 85%;
}

.desc-solucao {
    margin: 12px;
    background-color: #060030E6;
    gap: 10px;
    color: aliceblue;
    width: 23%;
    padding: 25px;
    border-radius: 30px;
}

.desc-solucao4 {
    margin: 12px;
    background-color: #40E9BF;
    gap: 10px;
    color: aliceblue;
    width: 23%;
    padding: 25px;
    border-radius: 30px;
}

.desc-solucao4 p {
    color: #060030E6;
}

.desc-solucao img {
    width: 100%;
    height: 70px;
}

.desc-solucao4 img {
    width: 100%;
    height: 70px;
}

/* ----------------------------------------- fim solucoes --------------------------- */

/* ----------------------------------------- inicio seviços ------------------------- */
.servicos {
    width: 100%;
    text-align: center;
    background-color: #060030;
}

.texto-servicos h1 {
    padding-top: 30px;
    color: #2DEBF3;
}

hr {
    width: 90%;
    color: rgb(167, 167, 167);
}

.info-servicos {
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    color: aliceblue;
}

.desc-servicos {
    flex: 1 1 22%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #060030;
    padding: 20px;
    box-sizing: border-box;
    min-height: 380px;

}

.desc-servicos img {
    margin-top: auto;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: #060030;
    border-radius: 10px;
}


.desc-servicos p {

    line-height: 1.3;
    text-align: justify;
}

/* ------------------------------------------ fim servicos ----------------------------- */

/* ------------------------------------------ inicio texto tecnologia ------------------ */

.texto-tec {
    width: 80%;
    text-align: center;
    margin: 0 auto;
    padding: 4% 0 10% 0;
}

.texto-tec h1 {
    font-family: "Michroma", sans-serif;
    width: 90%;
    color: #00039E;
    margin: 0 auto;
}

/* -------------------------------------- fim texto tex ------------------------------ */
/* -------------------------------------- inicio diferenciais ------------------------------ */

.diferenciais {
    padding-top: 4%;
    width: 100%;
    text-align: center;
    background-color: #555555;
    color: aliceblue;
    padding-bottom: 6%;
}

.texto-diferenciais p {
    color: #8AFFE2;
    font-size: 2.0em;
}

.inline-diferenciais {
    display: flex;
    width: 85%;
    margin: 0 auto;
    gap: 20px;
}

.item-diferenciais {
    width: 25%;
    margin: 0 auto;
    border-right: 1px solid #8AFFE2;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 10px 20px 10px 0px;
}

.item-diferenciais p {
    line-height: 1.3;
}

.item-diferenciais img {
    width: auto;
    height: 60px;
}

/* ===================== RESPONSIVIDADE ===================== */

/* Tablets (até 1024px) */
@media (max-width: 1024px) {
    .banner-slide {
        height: 500px;
    }

    .conteudo-banner {
        top: 30%;
        transform: translateX(0);
        width: 90%;
        left: 5%;
    }

    .texto-banner {
        font-size: 1.6em;
    }

    .inline-produtos {
        flex-wrap: wrap;
    }

    .item-produto {
        width: 45%;
    }

    .info-solucao {
        flex-wrap: wrap;
        justify-content: center;
    }

    .desc-solucao,
    .desc-solucao4 {
        width: 45%;
    }

    .inline-diferenciais {
        flex-wrap: wrap;
    }

    .item-diferenciais {
        width: 45%;
        border-right: none;
        border-bottom: 1px solid #8AFFE2;
    }
}

/* Celulares (até 768px) */
@media (max-width: 768px) {
    .banner-slide {
        height: 350px;
    }

    .conteudo-banner {
        top: 25%;
        font-size: 0.9em;
        width: 90%;
        left: 5%;
    }

    .texto-banner {
        font-size: 1.2em;
    }

    .conteudo-link a {
        padding: 6px 18px;
        font-size: 14px;
    }

    .inline-produtos {
        flex-direction: column;
        align-items: center;
    }

    .item-produto {
        width: 90%;
    }

    .info-solucao {
        flex-direction: column;
        align-items: center;
    }

    .desc-solucao,
    .desc-solucao4 {
        width: 85%;
    }

    .info-servicos {
        flex-direction: column;
        align-items: center;
    }

    .desc-servicos {
        width: 90%;
        min-height: auto;
    }

    .inline-diferenciais {
        flex-direction: column;
        align-items: center;
    }

    .item-diferenciais {
        width: 90%;
        border: none;
        margin-bottom: 20px;
    }

    .texto-tec h1 {
        font-size: 1.4em;
    }
}

/* Telas muito pequenas (até 480px) */
@media (max-width: 480px) {
    .banner-slide {
        height: 350px;
    }

    .conteudo-banner {
        top: 30%;
        font-size: 0.8em;
    }

    .texto-banner {
        font-size: 1em;
    }

    .conteudo-link a {
        font-size: 12px;
        padding: 5px 15px;
    }

    .desc-solucao,
    .desc-solucao4 {
        width: 75%;
    }
}