   :root {
        --verde: green;
        --branco: white;
    }
    
    .exibir{
        display: block !important;
    }
    
    .ocultar{
        display: none !important;
    }
    
    .imagem-sobre{
        padding: 0 30px 30px 30px;
        width: 100%;
        overflow: hidden;
        height: 90%;
    }
    
    .texto-verde {
        color: var(--verde);
    }
    
    .texto-branco {
        color: var(--branco);
    }
    
    .slide-formulario {
        background-color: var(--branco);
        padding: 40px 30px;
    }
   
    html {
        overflow-x: hidden;
        scroll-behavior: smooth;
        font-family: "Lato", sans-serif, Arial;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        text-decoration: none;
        font-family: "Lato", sans-serif, Arial;
    }

    .box-sucesso {
        position: relative;
        background: green;
        padding: 15px;
        color: white;
        font-weight: 600;
        text-align: center;
    }

    .box-sucesso .close {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 48px;
        background: red;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    header .topo {
        width: 100%;
        height: 120px;
        background-color: white;
    }



    header .topo_center {
        padding-top: 30px;
        display: flex;
        justify-content: center;
        background-color: white;
    }

    header .menu_itens {
        width: 55%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgb(255, 255, 255);
    }

    header .menu_itens {
        display: flex;
        justify-content: space-around;
        list-style: none;
    }

    header .menu_itens li a {
        font-size: 1.2em;
        color: #ffffff;
        font-weight: 900;
    }

    /*header*/
    nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
        background: #23232e;
        height: 17vh;
        z-index: 1;
    }

    main {
        background: url("bg.jpg") no-repeat center center;
        background-size: cover;
        height: 92vh;
    }

    .nav-list {
        list-style: none !important;
        display: flex;
        margin-bottom: 0 !important;
    }

    .nav-list li a {
        margin-bottom: 0 !important;
        color: #ffffff !important;
        text-decoration: none;
        font-family: "Lato", sans-serif, Arial;
        letter-spacing: 0;
        font-size: 1em;
        padding: 10px;
    }

    .nav-list li {
        overflow-y: hidden;
        letter-spacing: 3px;
        margin-left: 32px;
    }

    .mobile-menu {
        display: none;
        cursor: pointer;
    }

    .mobile-menu div {
        width: 32px;
        height: 2px;
        background: #11592b;
        margin: 8px;
        transition: 0.3s;
    }
    .logo{
        padding-left: 30px;
    }

    @media (max-width: 999px) {
        body {
            overflow-x: hidden;
        }
        .logo{
            padding-left: 0;
        }

        .nav-list {
            z-index: 999;
            position: absolute;
            top: 16vh;
            right: -1px;
            width: 75vw;
            height: 92vh;
            background: #23232e;
            flex-direction: column;
            align-items: center;
            justify-content: start;
            transform: translateX(100%);
            transition: transform 0.3s ease-in;
        }

        .nav-list li {
            margin-left: 0;
            opacity: 0;
            padding: 10px;
        }

        .mobile-menu {
            display: block;
        }
    }

    .nav-list.active {
        transform: translateX(0);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .mobile-menu.active .line1 {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .mobile-menu.active .line2 {
        opacity: 0;
    }

    .mobile-menu.active .line3 {
        transform: rotate(45deg) translate(-5px, -7px);
    }

    /* fecha aqui */

    .popup_glass {
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.35);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        position: fixed;
        z-index: 10000;
        display: none;
        justify-content: center;
        align-items: center;
    }

    .popup {
        width: 35%;
        height: 60%;
        background-color: white;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.212);
        border-radius: 20px;
    }

    .fecha {
        display: block;
        width: 100%;
        text-align: end;
        padding: 0 10px 0 0;
        cursor: pointer;
        color: #3748D6;
        font-size: 2.5em;
    }

    .texto_popup {
        width: 80%;
        padding-top: 15%;
        padding-left: 25%;
    }

    .texto_popup h1 {
        font-size: 1.3em;
    }

    .button_simulador {
        display: block;
        margin: 60px auto 0 auto;
        text-align: center;
        background-color: rgb(22, 139, 22);
        padding: 12px 16px;
        border-radius: 5px;
        border: 2px solid rgb(93, 197, 93);
        cursor: pointer;
        color: white;
        width: 200px;
    }

    .button_simulador a {
        color: white;
        font-size: 1.3em;
    }

    .content_blog {
        margin-top: 120px;
        padding-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #ffecb3;
    }

    .texto_blog {
        display: flex;
        width: 90%;
        justify-content: center;
        padding: 50px 0 0 0;
    }

    .texto_blog img {
        width: 50%;
        padding: 0 50px 50px 0;
    }

    #mainNav {
        position: fixed;
        z-index: 998;
        width: 100%;
        padding: 10px 30px;
        height: 120px;
        display: flex;
        box-shadow: 5px 5px 60px rgba(110, 100, 2, 0.123);
        justify-content: space-between;
        align-items: center;
        background-color: #202020;
    }

    .nav {
        display: flex;
        align-items: center;
        font-family: 'Scheherazade New', serif;
    }

    .nav li {
        margin-top: 5px;
        list-style: none;
    }

    .nav li a {
        font-size: 1.2em;
        text-decoration: none;
        color: #ffffff;
        margin: 0 15px;
    }

    .linha {
        height: 0.5px;
        margin: 0 0 0 10px;
        width: auto;
        background-color: #0070e000;
        transition: background 1s cubic-bezier(0.42, 0.0, 0.58, 2);
    }

    .linha:hover {
        height: 0.5px;
        margin: 0 0 0 10px;
        width: auto;
        background: #0070E0;
    }

    .nav button {
        margin: 0 10px;
        width: 90px;
        height: 30px;
        background-color: #0070E0;
        border: 2px solid #0070E0;
        transition: border 0.5s cubic-bezier(0.42, 0.0, 0.58, 2);
    }

    .nav button a {
        color: aliceblue;
        text-decoration: none;
    }

    .nav button:hover {
        border: 2px solid #3a99f8;
    }

    .nav button:active {
        border: 2px solid #74baff;
    }

    #btn-mobile {
        display: none;
    }

    .div.op2 {
        width: 38%;
        display: inline-block;
        margin-right: 0vw;
        font-size: 3vw;
        text-align: center;
        padding: 5vw 0vw 5vw 0vw;
        min-width: 40vw;
    }

    @media (min-width: 1025px) {
        .bttn {
            margin: 5px;
            width: 90px;
            height: 30px;
            background-color: whitesmoke;
            border: 1px solid #0070e023;
            padding: 5px;
            transition: 0.5s cubic-bezier(0.42, 0.0, 0.58, 2);
            text-decoration: none;
            color: #0070e09d;
            font-size: 0.8rem;
            font-family: 'Inconsolata', monospace;
        }

        .bttn:active {
            background-color: #0070E0;
            color: whitesmoke;
        }

        .choose {
            text-decoration: none;
            color: #0070e09d;
            font-size: 0.8rem;
            text-transform: lowercase;
            font-family: 'Inconsolata', monospace;
        }

        .bttn-enviar {
            display: block;
            text-align: center;
            margin: 5px auto;
            width: 95%;
            height: 30px;
            background-color: #0070E0;
            border: 1px solid #0070E0;
            padding: 5px;
            transition: 1s cubic-bezier(0.42, 0.0, 0.58, 2);
            text-decoration: none;
            color: white;
            font-size: 0.8rem;
            font-family: 'Inconsolata', monospace;
        }

        .bttn-enviar:hover,
        .bttn-enviar:active {
            background-color: #3a99f8;
            border: 1px solid #3679bd;
        }
    }

    @media (max-width: 1024px) {
        .content_blog {
            margin-top: 50px;
            padding-top: 30px;
            padding-bottom: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .titulo_blog {
            padding-top: 15px;
            padding-bottom: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .texto_blog {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 90%;
            padding: 10px 0 0 0;
        }

        .texto_blog img {
            padding: 0 0 19px 0;
        }

        .popup {
            width: 90%;
        }

        #btn-mobile {
            display: block;
        }

        #mainNav {
            height: 12%;
        }

        .nav {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-direction: column;
            position: fixed;
            width: 100%;
            top: 70px;
            right: 0px;
            background-color: whitesmoke;
            z-index: 1000;
            height: 0vh;
            transition: 1s;
            visibility: collapse;
            overflow-y: hidden;
        }

        .nav li {
            padding: 30px 0 30px 0;
            width: 100vw;
            text-align: center;
            background-color: #dbdbdb;
            border-bottom: 1.5px solid #dbdbdb;
        }

        .nav button {
            margin: 5px;
        }

        #mainNav.active .nav {
            visibility: visible;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            height: calc(100vh - 70px);
            justify-content: flex-start;
            align-items: center;
        }

        .linha:hover {
            background-color: rgba(255, 255, 255, 0);
        }

        #btn-mobile {
            display: flex;
            padding: .5rem 1rem;
            font-size: 1rem;
            border: none;
            background: none;
            cursor: pointer;
            gap: .5rem;
        }

        #hamburguer {
            display: block;
            border-top: 2px solid #0070E0;
            width: 20px;
        }

        #hamburguer::after,
        #hamburguer::before {
            content: "";
            display: block;
            height: 2px;
            width: 20px;
            background-color: #0070E0;
            margin-top: 3px;
        }

        #hamburguer:active {
            display: block;
            border-top: 2px solid #0070E0;
            width: 20px;
        }

        #hamburguer.active::after,
        #hamburguer.active::before {
            content: "";
            display: block;
            height: 2px;
            width: 20px;
            background-color: #0070E0;
            margin-top: 5px;
        }

        .bttn {
            margin: 5px;
            width: 90px;
            height: 30px;
            background-color: whitesmoke;
            border: 1px solid #0070E0;
            padding: 5px;
            transition: 0.5s cubic-bezier(0.42, 0.0, 0.58, 2);
            text-decoration: none;
            color: #0070E0;
            font-size: 0.8rem;
            font-family: 'Inconsolata', monospace;
        }

        .bttn:active {
            background-color: #0070E0;
            color: whitesmoke;
        }

        .choose {
            text-decoration: none;
            color: #0070E0;
            font-size: 0.8rem;
            text-transform: lowercase;
            font-family: 'Inconsolata', monospace;
        }

        .bttn-enviar {
            display: block;
            text-align: center;
            margin: 5px auto;
            width: 80vw;
            height: 30px;
            background-color: #0070E0;
            border: 1px solid #0070E0;
            padding: 5px;
            transition: 1s cubic-bezier(0.42, 0.0, 0.58, 2);
            text-decoration: none;
            color: white;
            font-size: 0.8rem;
            font-family: 'Inconsolata', monospace;
        }

        .bttn-enviar:hover,
        .bttn-enviar:active {
            background-color: #3a99f8;
            border: 1px solid #3679bd;
        }
    }

    /*encerra*/

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    footer {
        background: #202020;
    }

    .info-left {
        display: flex;
        height: 100%;
        flex-direction: column;
        padding-left: 20px;
    }

    .info-left img {
        padding: 0 0 10px 0;
    }

    footer .info-center h3 {
        color: #4d9744;
        font-size: 1.5em;
        padding: 10px;
    }

    footer .info-center ul li {
        padding: 10px;
        list-style: none;
        text-decoration: none;
    }

    footer .info-center ul li a {
        color: #ffffff;
        font-size: 1em;
        text-decoration: none;
    }

    footer .info-right ul li {
        padding: 10px;
        list-style: none;
    }

    footer .info-right ul li a {
        color: #ffffff;
        font-size: 1em;
        text-decoration: none;
    }

    footer .info-right h3 {
        color: #ffffff;
        font-size: 1.5em;
        padding: 10px;
    }

    footer .conteudo {
        padding: 90px 100px 80px 100px;
    }

    .span-footer {
        padding-top: 10px;
        color: #ffffff;
        padding-left: 25px;
    }

    footer .titulo {
        font-size: 18px;
        text-align: left;
        margin-bottom: 20px;
    }

    footer .footer-um {
        background-image: linear-gradient(to right, #e1e1e1 50%, #0083b9 50%);
    }

    footer .footer-um-grid {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    footer .sobre {
        grid-column: 1/7;
        background: #e1e1e1;
        padding: 30px 0;
        padding-right: 30px;
        line-height: 22px;
    }

    footer .sobre img {
        width: 40px;
        margin-right: 10px;
        margin-top: 30px;
    }

    footer .mapa {
        grid-column: 7/10;
        background: #e1e1e1;
        padding: 30px 0;
        line-height: 22px;
    }

    footer .contato {
        grid-column: 10/13;
        background: #0083b9;
        padding: 30px 0;
        padding-left: 15px;
    }

    footer .contato p,
    footer .contato span {
        display: inline-block;
        color: white;
    }

    footer .contato img {
        width: 40px;
        margin-right: 15px;
        margin-bottom: 10px;
        vertical-align: middle;
    }

    footer .footer-dois {
        padding: 30px 0;
    }

    footer .footer-dois-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        row-gap: 30px;
        align-items: center;
    }

    footer .footer-dois .logo-25-anos {
        width: 250px;
        max-width: 100%;
    }

    footer .footer-dois p {
        width: 100%;
        text-align: center;
        color: white;
    }

    footer .footer-dois .parceiros {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    footer .footer-dois .parceiros img {
        width: 70px;
    }

    footer .google-education {
        margin-left: auto;
        display: block;
    }

    footer .logo {
        width: 125px;
        max-width: 100%;
    }

    footer .footer-dois .elementos {
        display: flex;
        justify-content: space-evenly;
    }

    footer .footer-dois .elementos img {
        width: 50px;
    }

    footer .footer-dois .matricule-se {
        margin-left: auto;
        display: block;
    }

    footer .cookies {
        position: fixed;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        transition: 0.5s ease all;
    }

    footer .cookies-container {
        background: white;
        border-radius: 5px;
        padding: 15px;
        box-shadow: 0 0 3px 0 black;
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        align-items: center;
    }

    footer .cookies-container p {
        grid-column-start: 1;
        grid-column-end: 10;
    }

    footer .cookies-container button {
        background: #0084bb;
        border: none;
        padding: 10px;
        color: white;
        font-weight: 600;
        font-size: 16px;
        border-radius: 5px;
        grid-column-start: 11;
        grid-column-end: 13;
        cursor: pointer;
    }

    .banner_mobile {
        display: none;
    }

    .banner_desktop img {
        margin-top: 120px;
        display: block !important;
        height: 32.5vw;
        object-fit: cover;
    }

    .banner_desktop .slick-next {
        right: 0;
        z-index: 2;
    }

    .banner_desktop .slick-prev {
        left: 0;
        z-index: 2;
    }

    .links-home {
        background: #f8c83b;
        padding: 30px 0;
    }

    .links-home .links-home-grid {
        display: flex;
        width: 100%;
        justify-content: space-around;
        padding: 0 20px 60px 0;
    }

    .links-home .links-home-grid div {
        padding: 15px;
        display: grid;
        align-items: center;
    }

    .links-home .links-home-grid div.destaque {
        border-color: #ff9700;
        background: #ff9700;
    }

    .links-home .links-home-grid a {
        display: grid;
        grid-template-rows: repeat(3, minmax(0, auto));
        gap: 10px;
    }

    .links-home .links-home-grid .principal {
        color: white;
        font-weight: 600;
        font-size: 18px;
        text-transform: uppercase;
    }

    .links-home .links-home-grid .secundario {
        color: white;
        font-size: 14px;
    }

    .links-home img {
        width: 200px;
        display: block;
        margin: auto;
        margin-bottom: 15px;
    }

    .diferenciais {
        width: 100%;
        padding: 100px;
        background-color: #383BDD;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .diferenciais h1 {
        color: white;
        padding: 0 0 0 20px;
    }

    .diferenciais .video {
        width: 1200px;
        height: 800px;
    }

    #diferenciais .titulo {
        margin-top: 20px;
        font-size: 35px;
        text-align: center;
        padding-bottom: 40px;
        color: #52a248;
        font-weight: bold;
    }

    #diferenciais .titulo2 {
        margin-top: 20px;
        font-size: 25px;
        text-align: center;
        padding-bottom: 10px;
        color: #52a248;
    }

    #diferenciais .imagem {
        width: 25%;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .empreendimentos {
        width: 100%;
        padding: 100px;
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .empreendimentos h1 {
        color: white;
        padding: 0 0 0 20px;
    }

    .empreendimentos .video {
        width: 1200px;
        height: 800px;
    }

    #empreendimentos .titulo {
        margin-top: 20px;
        font-size: 35px;
        text-align: center;
        padding-bottom: 40px;
        color: #52a248;
        font-weight: bold;
    }

    #empreendimentos .titulo2 {
        margin-top: 20px;
        font-size: 25px;
        text-align: center;
        padding-bottom: 10px;
        color: #52a248;
    }

    #empreendimentos .imagem {
        width: 25%;
        padding-top: 10px;
        padding-bottom: 10px;
    }


    .home6 {
        width: 100%;
        padding: 100px;
        background-color: #383BDD;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    #home6 .titulo {
        margin-top: 20px;
        font-size: 35px;
        text-align: center;
        padding-bottom: 30px;
        color: #52a248;
    }

    #home6 p {
        text-align: justify;
        padding: 15px 14px 0 15px;
        font-size: 19px;
        color: #ffffff;
    }

    #home6 img {
        text-align: justify;
        padding-left: 20px;
        position: relative;
    }

    #home6 .text {
        padding-right: 200px;
        text-align: justify;
    }

    #home6 button {
        border-color: #3d3d3d;
        color: #f9fefe;
        background-color: #52a248;
        border-radius: 0;
        width: 150px;
    }

    .home7 {
        width: 100%;
        padding: 100px;
        background-color: #383BDD;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    #home7 .titulo {
        margin: 0px;
        font-size: 60px;
        text-align: center;
        color: #52a248;
    }

    #home7 .subtitulo {
        font-size: 25px;
        text-align: center;
        padding-bottom: 30px;
        color: #52a248;
    }

    #home7 h1 {
        text-align: justify;
        padding: 15px 28px 0 25px;
        font-size: 19px;
    }

    .home8 {
        width: 100%;
        padding: 100px;
        background-color: #383BDD;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    #home8 .titulo {
        margin-top: 10px;
        font-size: 25px;
        padding-left: 75px;
        padding-bottom: 20px;
        color: #dbdbdb;
    }

    #home8 .subtitulo {
        padding-top: 30px;
        font-size: 25px;
        text-align: center;
        padding-bottom: 10px;
        color: #52a248;
    }

    #home8 .imagem {
        width: auto;
        padding-left: 75px;
    }

    #home8 p {
        font-size: 20px;
        padding: 0px 14px 0 15px;
        padding-left: 75px;
        text-align: justify;
        padding-bottom: 30px;
        color: #ffffff;
    }

    #home8 .numero {
        font-size: 20px;
        padding: 7px 14px 0 15px;
        padding-left: 0px;
        text-align: justify;
        padding-bottom: 30px;
        color: #ffffff;
    }

    #home8 h1 {
        text-align: justify;
        padding: 15px 28px 0 25px;
        font-size: 19px;
    }

    #home8 button {
        border-color: transparent;
        color: #f9fefe;
        background-color: #52a248;
        border-radius: 0;
        width: 150px;
    }

    #home8 input {
        width: 100%;
        padding-left: 20px;
    }

    #home8 .form {
        padding: 10px 70px 25px 70px;
    }

    #home8 .button {
        padding-left: 241px;
        padding-top: 20px;
    }

    #home8 .input {
        padding-left: 30px;
    }

    #footer {
        text-align: justify;
        padding: 0 0 30px 0;
    }

    #footer .logo {
        padding: 30px 0px 10px 0px;
    }
    .devby span{
        color: #5a5a5a;
        display: flex;
        background: black;
        justify-content: center;
        padding: 30px;
    }

    #footer h3 {
        padding-top: 30px;
        color: #52a248;
        padding-left: 40px;
    }

    #footer .endereco {
        padding-left: 29px;
    }

    .simulador {
        background-color: #F8CC17;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .simulador img {
        width: 45%;
    }

    .formulario {
        display: flex;
        flex-direction: column;
        /* width: 50%; */
    }

    .formulario h1,
    .simulador-grid {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-self: center;
    }

    .simulador-grid {
        display: grid;
        grid-template-columns: 400px;
        gap: 15px 15px;
    }

    .simulador-grid div input,
    select {
        height: 50px;
        border-radius: 3px;
        border: 1px solid #ffffff;
        background-color: #ffffff;
        font-size: 1.1em;
        padding: 7px;
        color: #4d9744;
    }

    .simulador-grid div input::placeholder {
        color: #4d9744;
    }

    .botao-simular {
        cursor: pointer;
        margin: 40px 0 0 0;
        width: 100px;
        height: 30px;
        align-self: center;
        background-color: #383BDD;
        border: 2px solid #797ae4;
        border-radius: 3px;
        color: rgb(238, 238, 238);
    }

    .simulador h1 {
        margin: 50px 0 40px 0;
        color: #383BDD;
        font-size: 2.5em;
        font-weight: bolder;
    }

    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .faq {
        display: flex;
        align-items: center;
        height: 600px;
    }

    summary::-webkit-details-marker {
        display: none;
    }

    .perguntas-faq details {
        border: 1px solid #3748D6;
        padding: 10px 30px;
        margin: 3px;
        width: 600px;
        color: #383BDD;
        border-radius: 15px;
        min-height: 70px;
    }

    .perguntas-faq details summary {
        font-size: 1.2em;
        cursor: pointer;
        color: #383BDD;
    }

    .perguntas-faq details p {
        font-size: 1em;
        margin: 15px;
    }

    .content3 {
        display: flex;
    }

    .conteudo-fale-conosco {
        width: 50%;
        background-color: #0048d7;
        padding-left: 100px;
        padding-top: 100px;
    }

    .conteudo-fale-conosco div {
        padding-top: 15px;
    }

    .conteudo-fale-conosco div a {
        color: white;
        font-size: 1.5em;
        font-weight: bolder;
        display: block;
    }

    .conteudo-fale-conosco div h1 {
        color: white;
        font-size: 2.5em;
    }

    .carrossel-home {
        background-color: #dbdbdb;
    }

    .carrossel-home {
        padding: 30px 0 0 0;
    }

    .carrossel-home .item {
        padding: 15px;
    }

    .carrossel-home .item .img {
        position: relative;
        width: 100%;
        padding-bottom: 75%;
    }

    .carrossel h1 {
        color: white;
        font-size: 1.3em;
        font-weight: lighter;
    }

    .carrossel-home .item .img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .carousel-caption {
        bottom: 6% !important;
    }

    .content1 .titulo {
        margin-top: 30px;
        margin-bottom: 30px;
        padding-bottom: 10px;
        font-size: 3em;
        color: white;
        text-align: center;
    }

    .content1 .subtitulo {
        color: white;
        text-align: center;
    }

    .content2 .titulo {
        margin-top: 20px;
        margin-bottom: 30px;
        font-size: 3em;
        color: white;
        text-align: center;
    }

    .content2 .item p {
        color: white;
        text-align: center;
        font-size: 1.5em;
        font-weight: bolder;
        padding-bottom: 20px;
    }

    .carrossel-home .item .titulo {
        font-size: 16px;
        font-weight: 600;
        margin: 10px 0;
    }

    .carrossel-home .item .subtitulo {
        font-size: 14px;
        min-height: 65px;
    }

    .content1 {
        position: relative;
        width: 1300px;
        max-width: 100%;
        height: 100%;
        margin: auto;
        padding: 0 30px;
    }

    .content {
        width: 100%;
        
    }

    .content .titulo {
        font-size: 35px;
        width: 80%;
        margin: 20px auto;
        text-align: center;
    }

    .content .texto {
        width: 80%;
        margin: 20px auto;
    }

    .content .imagem {
        width: 80%;
        margin: 20px auto;
    }
    
    .imagemFull{
       width: 100%;
       margin: 0;
    }

    .content .video {
        width: 80%;
        margin: 20px auto;
        text-align: center;
    }

    .content3 {
        position: relative;
        width: 1300px;
        max-width: 100%;
        height: 100%;
        margin: auto;
        padding: 0 30px;
        background-image: url(/imagens/home/BANNER\ 4\ FUNDO.png);
    }

    @keyframes updown {
        from {
            transform: matrix(1, 0, 0, 1, 0, 10);
        }

        to {
            transform: matrix(1, 0, 0, 1, 0, -10);
        }
    }

    .estrutura-home .content {
        display: flex;
        justify-content: space-between;
    }

    .inicio .content div {
        width: 50%;
    }

    .img-princial {
        width: 100%;
    }

    .estrutura-home .conteudo {
        width: 60%;
        display: flex;
        flex-direction: column;
        margin-right: 100px;
    }

    .estrutura-home .conteudo .titulo {
        margin-left: 30px;
        width: 100%;
        padding: 90px 0 20px 0;
        color: #383BDD;
        font-weight: bolder !important;
    }

    .estrutura-home .conteudo .texto {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 0 30px 0;
        color: #383BDD !important;
    }

    .banner-home {
        padding: 30px 0;
    }
    
    .banner-content {
        justify-content: center;
        align-items: center;    
    }
    
    .banner-desktop{
           display: block !important;
        }
    
    
    .banner-mobile{
        display: none !important;
    }
    
    .banner-home .banner-home-grid .item {
        padding: 15px;
    }

    .banner-home img {
        width: 100%;
    }

    #instagram-api {
        padding: 30px 0;
    }

    #instagram-api .subtitulo a,
    #instagram-api .subtitulo span {
        color: #0083b9;
    }

    #instagram-api .conteudo {
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        margin: 50px 0;
    }

    #instagram-api .conteudo img {
        width: 100%;
        border: 1px solid #ccc;
    }

    

    .pagina .content>img,
    .pagina .content>a>img {
        margin: 15px auto;
        display: block;
        max-width: 100%;
    }

    .pagina .content>.texto {
        width: 80%;
        margin: 20px auto;
    }

    .pagina .content>.texto * {
        color: revert;
        margin: revert;
        padding: revert;
    }

    .pagina .content>.texto td {
        padding: 15px;
    }

    .pagina .content>.galeria {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 15px;
        margin: 30px 0;
    }

    .pagina .content>.galeria a {
        position: relative;
        padding-bottom: 75%;
        overflow: hidden;
    }

    .pagina .content>.galeria img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s ease all;
    }

    .pagina .content>.galeria img:hover {
        transform: scale(1.1);
        filter: brightness(0.5);
    }

    .pagina .content>.iframe {
        position: relative;
        margin: 30px 0;
        width: 100%;
        padding-bottom: 50%;
    }

    .pagina .content>.iframe iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .pagina.fale_conosco .form {
        max-width: 620px;
        margin: 50px auto 0;
    }

    .pagina.fale_conosco input,
    .pagina.fale_conosco textarea {
        width: 100%;
        margin-bottom: 15px;
        border: 1px solid #333;
        border-radius: 3px;
        padding: 10px;
        font-size: 16px;
    }

    .pagina.fale_conosco textarea {
        height: 200px;
        resize: none;
    }

    .pagina.comunicados .comunicados_grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .pagina.comunicados .comunicado {
        border: 1px solid #ccc;
        padding: 15px;
    }

    .pagina.comunicados .comunicado .titulo {
        font-size: 18px;
    }

    .pagina.comunicados .comunicado .data,
    .pagina.comunicados_detalhes .data {
        text-align: center;
        margin: 10px 0;
    }

    .pagina.comunicados_detalhes .img_container {
        max-width: 575px;
        margin: auto;
    }

    .pagina.comunicados .comunicado .img,
    .pagina.comunicados_detalhes .img {
        position: relative;
        width: 100%;
        padding-bottom: 75%;
    }

    .pagina.comunicados .comunicado .img img,
    .pagina.comunicados_detalhes .img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .pagina.comunicados .comunicado .texto {
        min-height: 75px;
        margin: 15px 0;
        text-align: justify;
    }

    .pagina.comunicados .paginacao {
        margin-top: 30px;
        text-align: center;
    }

    .pagina.comunicados .paginacao>* {
        margin-right: 10px;
    }

    .pagina.comunicados .paginacao strong {
        color: #ff9700;
    }

    .pagina.comunicados .paginacao a {
        color: #0083b9;
    }
    #carouselExampleCaptions .banner_img{
        width: 100%;
    }

    @media only screen and (max-width: 770px) {
        
        .form-corretor{
            display: none;
        }
    
        .banner-desktop{
           display: none !important;
        }
        
        .banner-mobile{
           display: block !important;
        }
    
        footer .info-right {
            padding: 0 10px;
            border-left: 0px solid #383BDD;
        }

        #footer h3 {
            padding-top: 30px;
            color: #52a248;
            padding-left: 0px;
        }

        #footer .endereco {
            padding-left: 0px;
        }

        footer .info-right h3 {
            font-size: 1.3em;
        }

        footer .info-right ul li {
            font-size: 1em;
            padding: 10px 40px 0px 10px;
        }

        header .header-grid {
            grid-template-columns: auto 1fr auto;
            grid-template-rows: repeat(2, minmax(0, auto));
            padding: 5px 0;
        }

        header .header-grid a {
            grid-column: 2/3;
            grid-row: 1/2;
            text-align: center;
        }

        header .header-grid .elementos {
            grid-row: 1/3;
            grid-column: 3/4;
        }

        header .header-grid .links {
            grid-row: 2/3;
            grid-column: 2/3;
            text-align: center;
        }

        header .header-grid .menu_botao {
            display: block;
            width: 25px;
            height: 18px;
            border-top: 2px solid #0083b9;
            border-bottom: 2px solid #0083b9;
            cursor: pointer;
            grid-row: 1/3;
            grid-column: 1/2;
            position: relative;
            left: auto;
            top: auto;
            transform: none;
        }

        header .menu_botao:after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            border-top: 2px solid #0083b9;
        }


        header .header-grid .links img {
            width: 200px;
            margin: 0 auto 10px;
        }

        header .elementos img {
            width: 30px;
            margin-right: 0;
            margin-left: auto;
            margin-bottom: 5px;
            display: block;
        }

        header .menu_topo {
            position: absolute;
            top: 0;
            left: -100vW;
            width: 100vw;
            height: 100vh;
            background: #000000b5;
            padding: 0;
            cursor: pointer;
            z-index: 99;
            border: none;
            transition: 0.5s ease all;
        }

        header.fixo .menu_topo {
            height: 100vh;
        }

        header .menu_topo.active {
            left: 0;
        }

        header .menu_topo .menu_topo-grid {
            grid-template-columns: 1fr;
            grid-template-rows: auto 1fr auto;
            height: 100%;
            padding: 0;
        }

        header.fixo .menu_topo .menu_topo-grid {
            padding: 0;
        }

        header .menu_topo .content {
            width: 250px;
            background: #0083b9;
            margin: 0;
            padding: 0;
        }

        header .menu_topo .content .menu_logo {
            display: block;
            width: 100%;
            height: 200px;
            display: block;
            background: white;
            position: relative;
        }

        header .menu_topo .content .menu_logo img {
            position: absolute;
            display: block;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            margin: 0;
            width: 85%;
        }

        header .menu_topo .menu_topo-grid .links {
            grid-column: 1/2;
            flex-direction: column;
            align-content: start;
        }

        header .menu_topo .content .links li {
            display: block;
            width: 100%;
            margin: 0;
            text-align: left;
            padding: 15px;
        }

        header .menu_topo .content .links li a {
            color: white;
        }

        header .menu_topo .menu_topo-grid .sociais {
            background: white;
            padding: 10px;
            text-align: center;
        }

        header .menu_topo .sociais img {
            width: 30px;
        }

        footer .footer-um {
            background-image: linear-gradient(to bottom, #e1e1e1 33.333%, #0083b9 33.333%, #0083b9 66.666%, #e1e1e1 66.666%);
        }

        footer .footer-um-grid {
            grid-template-rows: 1fr 1fr 1fr;
        }

        footer .sobre,
        footer .mapa,
        footer .contato {
            grid-column: 1/13;
            text-align: center;
            padding: 15px 0;
        }

        footer .mapa {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        footer .contato {
            grid-row: 2/3;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        footer .titulo {
            font-size: 16px;
            text-align: center;
            margin-bottom: 15px;
            display: block !important;
        }

        footer .contato span {
            font-size: 14px;
        }

        footer .contato img {
            width: 35px;
        }

        footer .footer-dois-grid {
            grid-template-columns: 1fr;
            grid-template-rows: auto;
        }

        footer .footer-dois .logo-25-anos {
            width: 175px;
            margin: auto;
        }

        footer .google-education {
            margin: auto;
        }

        footer .logo {
            width: 175px;
            margin: auto;
        }

        footer .footer-dois .elementos img {
            width: 40px;
        }

        footer .footer-dois .matricule-se {
            margin: auto;
        }

        footer .cookies-container {
            grid-template-rows: repeat(2, minmax(0, 1fr));
            justify-items: center;
            gap: 10px;
        }

        footer .cookies-container p {
            grid-column-start: 1;
            grid-column-end: 13;
        }

        footer .cookies-container button {
            width: 100%;
            grid-column-start: 1;
            grid-column-end: 13;
        }

        #footer {
            text-align: center;
        }

        #footer .logo {
            padding: 25px 20px 0 0;
        }

        #footer .span-footer {
            padding-right: 20px;
            text-align: center;
        }

        #empreendimentos .titulo {
            font-size: 30px;
        }

        #home6 .p {
            text-align: center;
            font-size: 30px;
        }

        #home6 img {
            border-radius: 0;
            padding-left: 0px;
            width: 325px;
        }

        #home6 div .img {
            padding-bottom: 30px;
        }


        #home6 .text {
            padding-right: 10px;
            padding-left: 10px;
            text-align: justify;
        }

        #home6 button {
            border-color: #3d3d3d;
            color: #f9fefe;
            background-color: #52a248;
            border-radius: 0;
            width: 150px;
            padding-left: 0;
        }

        #home8 .form {
            padding-top: 10px;
            text-align: center;
            padding: 0 0 20px 0;
        }

        #home8 input {
            padding: 0 15px 0 15px;
        }

        #home8 .titulo {
            padding-left: 10px;
        }

        #home8 p {
            padding-bottom: 20px;
            padding-left: 10px;
        }

        #home8 .numero {
            padding-bottom: 20px;
            height: 30px;
            overflow: hidden
        }

        #home8 .subtitulo {
            padding: 25px 0 10px 28px;
        }

        #home8 .button {
            text-align: center;
            padding: 10px 0 10px 25px;
        }

        .nav li a {
            font-size: 1.2em;
            text-decoration: none;
            color: #11592b;
            margin: 0 15px;
        }

        .main .banner_mobile {
            display: block;
        }

        .main .banner_desktop {
            display: none;
        }

        .links-home .links-home-grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }

        .estrutura-home .estrutura-home-grid {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto;
        }

        .estrutura-home .galeria-home {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        #instagram-api .conteudo {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            margin: 50px 0 0;
        }

        .pagina .content>.texto td {
            padding: 15px;
        }

        .pagina .content>.texto tr {
            display: block;
        }

        .pagina .content>.texto td {
            display: block;
            width: 100%;
            padding: 15px 0;
        }


        .pagina .content>.galeria {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .pagina.comunicados .comunicados_grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }

        .estrutura-home .img img {
            width: 100%;
        }

        .estrutura-home .content {
            display: flex;
            flex-direction: column;
        }

        .estrutura-home .content div img {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-right: 50px;
        }

        .estrutura-home .conteudo {
            display: flex;
            align-self: center;
            width: 90%;
        }

        .estrutura-home .conteudo .titulo {
            padding-top: 20px;
        }

        .content1 .titulo {
            margin-top: 20px;
            font-size: 35px;
            text-align: center;
        }

        .faq {
            display: flex;
            flex-direction: column;
            height: auto;
            padding-bottom: 20px;
        }

        .faq div img {
            width: 100%;
        }

        .banner_mobile {
            padding-top: 70px;
        }

        .perguntas-faq {
            width: 100%;
            display: flex;
            flex-direction: column;
            height: auto;
        }

        .perguntas-faq details {
            align-self: center;
            width: 90%;
        }

        .simulador form {
            width: 90%;
            margin: auto;
        }

        .simulador img {
            display: none;
        }

        .simulador {
            padding: 20px 0;
        }

        .simulador-grid {
            width: 90%;
            display: flex;
            flex-direction: column;
        }

        .fale-conosco div {
            display: flex;
            flex-direction: column;
            padding: 10px 0 0 10px;
        }

        .conteudo-fale-conosco {
            width: 100%;
            padding: 0;
        }

        .img-fale-conosco img {
            width: 100%;
            padding-top: 30px;
        }

        .footer-grid {
            display: flex;
            max-width: 100%;
            justify-content: center;
            padding: 20px 0;
        }

        footer .conteudo {
            padding: 0;
        }

        .info-center {
            display: none;
        }
    }

    @keyframes details-show {
        from {
            opacity: 0;
            transform: var(--details-translate, translateY(-0.5em));
        }
    }

    details[open]>*:not(summary) {
        animation: details-show 500ms ease-in;
    }

    [data-anime] {
        opacity: 0;
        transition: .4s;
    }

    [data-anime="left"] {
        transform: translate3d(-50px, 0, 0)
    }

    [data-anime="right"] {
        transform: translate3d(50px, 0, 0)
    }

    [data-anime].animate {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }