@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */

* {
    font-family: 'Poppins', sans-serif;
}

:root {
    --preto: #000;
    --azul: #000e29;
    --azul-claro: #002c85;
    --azul-hover: #014981;
    --azul-hover-menu: #0191ff2f;
    --azul-quadradinho: #003964;
    --cinza: #ddd;
    --branco: #fff;
    --verde: rgb(0, 148, 0);
    --azul-btn-plano: #4f718a;
}

html {
    scroll-behavior: smooth;
}

a {
    color: var(--preto);
}

header {
    width: 100%;
    box-shadow: 0 3px 10px 0 #000000af;

    position: sticky;
    top: 0px;

    z-index: 55;
}

main {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.limitacao {
    width: 1300px;

    /* border: 1px solid red; */
}

.title {
    font-size: 13px;
    font-weight: 600;
}

input:focus,
textarea:focus {
    outline: none;
}

/* Menu ================================================================================ */
.sectionMenu {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--azul);

    position: sticky;
    top: 0;
}

.limiteDeArea {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1300px;
    width: 100%;
    height: 60px;
}

nav {
    font-size: 13px;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    padding: 20px 20px;
    font-weight: 600;
    color: var(--branco);
    /* letter-spacing: 1px\ */
}

nav ul li a:hover {
    /* color: #d3d3d3; */
    background-color: var(--azul-hover-menu);
    padding: 20px 20px;
}

.botaoMenuMobile {
    font-size: 25px;

    background-color: transparent;
    color: var(--branco);

    display: none;
}


@media(max-width: 800px) {
    .sectionMenu {
        position: relative;
        padding: 0 20px;
    }

    nav {
        display: none;
        position: absolute;

        width: 100%;
        height: 100vh;

        padding-top: 50px;

        font-size: 30px;
        z-index: 55;

        background-color: var(--azul);

        top: 0;
        /* left: 50%; */
        right: 0;
        bottom: 0;

        /* border: 1px solid red; */
    }

    @keyframes openMenu {
        from {
            left: 100%;
        }

        to {
            left: 0;
        }
    }

    @keyframes closeMenu {
        from {
            left: 0;
        }

        to {
            left: 100%;
        }
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        width: 100%;
        height: 80px;

        display: flex;
    }

    nav ul li a {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .botaoMenuMobile {
        display: block;
    }

    .botaoMenuMobile.fechar {
        font-size: 40px;
    }

}

/* Menu ================================================================================ */




/* Sessão Um =========================================================================== */
.sectionUm {
    display: flex;
    align-items: center;
    justify-content: center;

    /* max-width: 1300px; */
    width: 100%;
    height: 600px;

    padding-top: 50px;

    /* border: 1px solid green; */

    background-image: url('/assets/img/backcor2.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.chamadaSessaoUm {
    width: 50%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;

    /* text-align: center; */
    color: var(--azul);

    padding: 0 0 0 100px;

    /* border: 1px solid red; */
}

.chamadaSessaoUm p {
    font-size: 28px;
    font-weight: 600;

    width: 500px;

    /* border: 2px solid rgb(0, 228, 49); */
}

.chamadaSessaoUm button {
    background-color: var(--azul);
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    width: 200px;
    height: 40px;

    border-radius: 10px;
    /* border: 1px solid var(--cinza); */

    margin-top: 10px;
}

.chamadaSessaoUm button:hover {
    background-color: var(--azul-hover);
}

.imagemDestaqueSessaoUm {
    width: 50%;
    height: 100%;

    /* border: 1px solid blue; */

    display: flex;
    align-items: center;
    justify-content: center;
}

.imagemDestaqueSessaoUm div {
    /* border: 1px solid blue; */
    width: 600px;
    height: 100%;
}

.imagemDestaqueSessaoUm img {
    /* border: 1px solid blue; */
    object-fit: contain;
}

/* Sessão Um =========================================================================== */




/* Sessão Dois ========================================================================= */
.sectionDois {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 0;

    background-color: #e4e4e4;
}

.contianerSectionDois {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.sectionDois h1 {
    margin-bottom: 10px;
    color: var(--azul);
    text-align: center;
}

.sectionDois p {
    text-align: center;
    margin-top: 10px;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 2px;
    line-height: 25px;

    color: var(--azul);
}

.containerQuadradinhos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap row;

    padding: 50px 0;

}

.miniCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 3px solid var(--azul);
    border-radius: 10px;
    color: var(--azul);

    padding: 10px;

    margin: 10px;
}

.miniCard:hover {
    background-color: var(--azul-hover-menu);
}

.circulo {
    background-color: var(--azul);

    width: 80px;
    height: 80px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.miniCard i {
    font-size: 30px;

    color: var(--branco);
}

/* Sessão Dois ========================================================================= */




/* Sessão Tres ========================================================================= */
.sectionTres {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 0 0;

    /* border: 1px solid blue; */

}

.contianerSectionTres {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.textoBlocoTres {
    width: 1000px;

    letter-spacing: 1px;
    line-height: 25px;

    font-size: 16px;
    font-weight: 400;

    text-align: center;

    margin-bottom: 50px;

}

/* Sessão Tres ========================================================================= */




/* Sessão Quatro ======================================================================= */
.sectionQuatro {
    background-color: var(--azul);

    width: 100%;
    height: 300px;

    background-image: url('/assets/img/back2.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    /* border: 1px solid blue; */

    color: var(--branco);

    display: flex;
    justify-content: center;
    align-items: center;
}

.planosSecQuatro {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 25px;

    display: flex;
    align-items: center;
    flex-direction: column;
}

.botaoChamadaSecQuatro {
    width: 400px;
    height: 40px;

    margin-top: 30px;

    background-color: var(--verde);
    color: (var(--branco));

    border-radius: 10px;

    font-weight: 600;
    font-size: 12px;

    letter-spacing: 1px;
    line-height: 25px;
}

/* Sessão Quatro ======================================================================= */




/* Sessão Cinco ======================================================================== */
.sectionCinco {
    display: flex;
    justify-content: center;

    width: 100%;

    padding: 50px 20px;
}

.containerSecCinco {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap row;
}

.chamada-uso-demo {
    width: 50%;

    padding: 100px 50px;

    /* border: 1px solid green; */
}

.chamada-uso-demo p {
    /* letter-spacing: 1px; */
    line-height: 25px;

    text-align: justify;
    font-size: 15px;
    font-weight: 400;

    margin-bottom: 10px;
}

.img-login-demo {
    width: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    /* border: 1px solid red; */
}

.chamada-uso-demo button {
    background-color: var(--azul);
    color: var(--branco);

    width: 200px;
    height: 40px;

    font-weight: 600;

    border-radius: 10px;
}

.chamada-uso-demo button:hover {
    background-color: var(--azul-hover);
}

/* Sessão Cinco ======================================================================== */




/* Sessão Seis ========================================================================= */
.sectionSeis {
    display: flex;
    justify-content: center;
    align-items: center;

    /* background-color: var(--azul); */
    /* color: var(--branco); */

    width: 100%;
}

.img-back-modulos {
    background-image: url('/assets/img/bk-cor-3.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;


    width: 100%;
    height: 100%;

    /* padding: 0 0 100px; */
    /* margin: 50px 0; */

    display: flex;
    justify-content: center;
    align-items: center;
}

.limitacao.sec-seis{
    border-top: 1px solid #00000044; 
    border-bottom: 1px solid #00000044;  
    padding: 100px 0;
}

.containerSecSeis {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.containerCardsSectionSeis {
    display: flex;
    flex-flow: wrap row;
    justify-content: center;

    /* width: 50%; */
}

.cardModulo {
    border: 2px solid var(--preto);
    border-radius: 0 10px 0 10px;

    width: 240px;
    height: auto;

    padding: 10px;
    margin: 10px;

    background-color: var(--branco);
    box-shadow: 5px 5px 10px 0px #0000006e;
}

.cardModulo h3 {
    margin-bottom: 10px;
}

.cardModulo h5 {
    margin-top: 10px;
}

.cardModulo p {
    font-size: 13px;
    font-weight: 500;
    text-align: justify;
}

/* Sessão Seis ========================================================================= */




/* Sessão Sete ========================================================================= */
.sectionSete {
    width: 100%;

    padding: 0 30px 150px;

    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap row;
}

.container-Sec-Sete {
    display: flex;
    align-items: center;
    flex-flow: wrap row;
    flex-direction: column;
}

.chamada-planos {
    width: 50%;

    line-height: 25px;

    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;

    padding: 0 50px;

    font-size: 15px;
    font-weight: 400;
}

.chamada-planos p {
    margin-bottom: 20px;
}

.bloco-val-modulos {
    /* width: 50%; */

    display: flex;
    align-items: center;
    flex-flow: wrap row;
}

.cardValorModulo {
    border: 2px solid var(--azul);
    border-radius: 0 10px 0 10px;

    padding: 20px;
    margin: 5px;

    width: 140px;
    height: 100px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    text-align: center;
}

.containerCardsModulos {
    display: flex;
    flex-flow: wrap row;
    justify-content: center;

    width: 300px;

    /* border: 1px solid red; */
}

.cardValorBase {
    border: 2px solid var(--azul);
    border-radius: 0 10px 0 10px;

    width: 300px;
    height: 500px;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 10px;
}

.titulo-card {
    background-color: var(--azul);
    color: var(--branco);

    width: 100%;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 0 8px 0 0;

    letter-spacing: 0.5x;

    font-size: 15px;
    font-weight: 500;

    text-transform: uppercase;
}

.display-valor {

    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.txt-descritivo-card {
    font-size: 13px;
    font-weight: 600;
    line-height: 25px;
    padding: 10px;
}

.aviso-desconto {
    font-size: 12px;
}

.display-valor h1 {
    height: 48px;
}

.aviso-desconto {
    height: 18px;
}

.btn-teste-gratis-card {
    background-color: var(--azul-claro);
    color: var(--branco);

    width: 200px;
    height: 40px;

    font-size: 15px;
    font-weight: 600;

    border-radius: 10px;

    margin-top: 10px;
    margin-bottom: 10px;
}

.btn-teste-gratis-card:hover {
    background-color: var(--azul);
}

/* Sessão Sete ========================================================================= */








/* Footer ============================================================================== */
footer {
    background-color: var(--azul);
    color: var(--branco);

    width: 100%;
    height: 250px;
    
    padding-top: 50px;

    display: flex;
    /* align-items: center; */
    justify-content: space-around;
    flex-flow: wrap row;

    letter-spacing: 1px;
    line-height: 25px;

    font-size: 13px;
    font-weight: 500;

    /* margin-top: 100px; */
}

.containerLogoFooter {
    width: 280px;
}

.containerLogoFooter img{
    object-fit: contain;
}

.containerSocial {
    display: flex;

    padding-top: 10px;
}

.redeSocial {
    color: var(----ver);

    margin-right: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.idEmpresaFooter {
    width: 280px;
        text-align: center;
}

/* Footer ============================================================================== */



/* Sobre =============================================================================== */
.sectionSobre {
    background-image: url('/assets/img/backcor.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.containerSecSobre {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap row;

    width: 100%;

    padding: 200px 60px;

    /* border: 1px solid green; */
}

.txt-sobre {
    /* padding: 60px; */
    margin-left: 40px;

    width: 500px;

    text-align: justify;
    font-size: 16px;

    letter-spacing: 1px;
    line-height: 25px;

    /* border: 1px solid blue; */
}

.img-sec-sobre {
    width: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.container-img-sobre {
    width: 500px;

    display: flex;
    justify-content: center;
    align-items: center;

    /* border: 1px solid red; */
}

/* Sobre =============================================================================== */




/* Modal =============================================================================== */
.containerModal {
    background-color: #00000023;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 99;
    position: fixed;
}

.boxModal {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
}

.boxConteudoModal {
    background-color: var(--branco);
    box-shadow: 5px 5px 10px 0 #00000056;

    width: auto;
    height: auto;

    border-radius: 10px;

    position: relative;

    padding: 40px 10px;
}

.btn-fechar {
    background-color: rgb(168, 0, 0);
    color: var(--branco);

    width: 30px;
    height: 30px;

    position: absolute;

    top: 0;
    right: 0;

    border-radius: 0 10px 0 0;
}

.btn-fechar:hover {
    background-color: rgb(226, 0, 0);
}

.conteudoModal {
    border-top: 1px solid #00000041;
    border-bottom: 1px solid #00000041;

    width: 100%;
    height: 100%;

    padding: 20px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap row;
}

#formContato {
    margin-left: 50px;
}

#formContato input {
    border: 1px solid #00000042;
    border-radius: 5px;

    width: 300px;
    height: 30px;

    padding-left: 5px;
}

#formContato textarea {
    border: 1px solid #00000042;
    border-radius: 5px;

    width: 300px;
    height: 200px;

    padding: 5px;
    margin: 0;

    resize: none;
}

/* Modal =============================================================================== */