:root {
    --blue: #0b3fc5;
    --dark-blue: #0033b0;
    --light-blue: #284cdc;
    --white: #ffffff;
    --red: #ff046c;
    --light-gray: #f8fcfc;
    --dark-gray: #737f8e;
}

html, body {
    width: 100%;
    height: 100%;
    position: relative;
}

body {
    background-color: var(--blue);
    font-family: 'Inter', sans-serif;
    color: white;
}

h1 {
    font-family: 'Fjalla One', sans-serif;
}

h2, h3, h4, h5, p {
    font-family: 'Inter', sans-serif;
}

h2 {
    font-size: 26px;
    letter-spacing: 0;
    text-align: center;
    line-height: 47px;
}

a {
    text-decoration: none;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.bloco {
    position: relative;
    width: 100%;
    padding: 85px 0;
}

.btn-main {
    background-color: var(--red);
    border-radius: 24px;
    font-size: 15px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    padding: 12px 26px;
    border: 2px solid var(--red);
    transition: all .3s ease-in-out;
    cursor: pointer;
    font-weight: 600;
}

.btn-main:hover {
    background-color: #082c9c;
    border: 2px solid #082c9c;
}

.btn-main.new_hover {
    background-color: #082c9c;
    border-radius: 24px;
    font-size: 15px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    padding: 12px 26px;
    border: 2px solid #082c9c;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.btn-main.new_hover:hover {
    background-color: var(--red);
    border: 2px solid var(--red);
}

.btn-alternative {
    background: transparent;
    border-radius: 24px;
    font-size: 15px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    padding: 12px 26px;
    border: 1px solid #FFFFFF;
    transition: all .3s ease-in-out;
    font-weight: 600;
}

.btn-alternative:hover {
    background: white;
    color: black;
}

.btn-third {
    font-size: 17px;
    color: #FFFFFF;
    background-color: #022C9D;
    letter-spacing: 0;
    font-weight: 300;
    margin: 0 5px;
}

body.open {
    overflow: hidden;
}


.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.row,
.form-group {
    margin: 0 !important;
    overflow: hidden;
}

.display-flex {
    flex-wrap: wrap;
    display: flex;
}

.display-flex.justify-content-center {
    justify-content: center;
}

.display-flex.align-items-center {
    align-items: center;
}

.display-flex.align-content-center {
    align-content: center;
}

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

.iframe_holder {
    position: relative;
    padding-bottom: 53.35%;
    padding-top: 25px;
    height: 0;
}

.iframe_holder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


@media (min-width: 768px) {
    .custom_container {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .custom_container {
        max-width: 970px;
    }
}


@media (min-width: 1200px) {
    .custom_container {
        max-width: 1099px;
    }
}


@media (min-width: 1300px) {
    .custom_container {
        max-width: 1199px;
    }
}

@media (min-width: 1400px) {
    .custom_container {
        max-width: 1299px;
    }
}

@media (min-width: 1500px) {
    .custom_container {
        max-width: 1399px;
    }
}

@media (min-width: 1600px) {
    .custom_container {
        max-width: 1499px;
    }
}

.custom_container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/

.menu_holder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: transparent;
    padding: 20px 0;
    width: 100%;
    z-index: 6;
}

.menu_holder .custom_container {
    padding: 2% 50px 2%;
}

.custom_container {
    padding: 3% 50px 6%;
}

.navbar-header {
    float: unset;
}

.menu_holder .navbar-header {
    float: unset;
    display: inline-block;
}

.menu_holder .navbar-header img {
    height: 56px;
    max-width: 100%;
}

.menu_holder .menu-toggler {
    position: absolute;
    background: transparent;
    border: 0;
    width: 35px;
    top: 10px;
    right: 2%;
    cursor: pointer;

    display: none;
}

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 38px;
    height: 45px;
    position: relative;
    margin: 0 auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon1 span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #fff;
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu_holder.scroll #nav-icon1 span {
    background: #fff;
}

#nav-icon1.black span {
    background: #35353a;
}

#nav-icon1.white span {
    background: #fff;
}

#nav-icon1.open span {
    background: #fff;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 0px;
}

#nav-icon1 span:nth-child(2) {
    top: 10px;
}

#nav-icon1 span:nth-child(3) {
    top: 20px;
}

#nav-icon1.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(140deg);
    -moz-transform: rotate(140deg);
    -o-transform: rotate(140deg);
    transform: rotate(140deg);
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-icon1.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-140deg);
    -moz-transform: rotate(-140deg);
    -o-transform: rotate(-140deg);
    transform: rotate(-140deg);
}

.menu_holder .menu {
    display: inline-block;
    margin: 0;
    float: unset;
}

.menu_holder.scroll {
    background-color: var(--blue);
    box-shadow: 0 0 11px rgba(14, 14, 14, 0.25);
    transition: all .3s ease-in-out;
}

.menu_holder .menu ul {
    padding: 0;
    margin-top: 10px;
}


.menu_holder .menu {
    display: inline-block;
    color: #fff;
    width: Calc(100% - 164px);
    text-align: right;
    vertical-align: middle;
}

.menu_holder .mais_menus {
    display: inline-block;
    color: #fff;
    width: 300px;
    max-width: 100%;
    text-align: right;
    vertical-align: middle;
}

.menu_holder .mais_menus a {
    font-size: 17px;
    color: #FFFFFF;
    letter-spacing: 0;
    font-weight: 300;
    margin: 0 5px;
}

.menu_holder .menu {
    float: right;
}

.menu_holder .menu-nav {
    list-style: none;
    margin: 0;
}

.menu_holder .menu-nav .dropdown {
    display: inline-block;
    margin: 0 25px;
    cursor: pointer;
    color: #fff;
}

.dropdown #m4 {
    display: inline-block;
    margin: 0;
    cursor: pointer;
    color: #fff;
}

.dropdown #m6 {
    display: inline-block;
    margin: 0;
    color: var(--red);
}

.menu_holder .menu-nav .dropdown.redes_sociais img {
    width: 28px;
    margin: 0 3px;
}

.menu_holder .menu-nav .dropdown a {
    font-size: 15px;
    color: #d7d7d7;
    letter-spacing: 0;
    font-weight: 600;
    text-decoration: none !important;
}

.menu_holder .menu-nav .dropdown.language a {
    color: #298e2a;
}

#m4 {
    background: var(--red);
    border-radius: 24px;
    font-size: 15px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    padding: 14px 28px;
}

#m6 {
    background: white;
    border-radius: 24px;
    font-size: 15px;
    color: var(--red);
    letter-spacing: 0;
    text-align: center;
    padding: 14px 28px;
}


#m6 img {
    width: 23px;
}

#m4 a {
    color: #FFFFFF;
}

#m6 a {
    color: var(--red);
}

.menu_holder .menu-nav .dropdown a:hover,
.menu_holder .menu-nav li.active > a,
.menu_holder .menu-nav li.active:hover > a {
    color: #ffffff;
    text-decoration: none !important;
}

.menu_holder .dropdown-menu {
    background-color: #fff;
    cursor: default;
    text-align: left;
    color: #000;
    margin-top: 20px;
    top: 5px;
}


.menu_holder .menu-nav .dropdown .dropdown-menu a {
    color: #000;
}

.menu_holder .menu-nav .dropdown .dropdown-menu a:hover,
.menu_holder .menu-nav .dropdown-menu li.active > a,
.menu_holder .menu-nav .dropdown-menu li.active:hover > a {
    color: #D43838;
    text-decoration: none !important;
}

.menu_holder .dropdown-menu hr {
    width: 80%;
    margin: 8px auto;
    border-top: 1px solid #ccc;
}

.menu_holder .dropdown-menu a:hover {
    background-color: transparent;
}

@media screen and (max-width: 1400px) {
    .menu_holder .menu-nav .dropdown {
        margin: 0 18px;
    }
}

@media screen and (max-width: 1300px) {
    .menu_holder .menu-nav .dropdown {
        margin: 0 25px;
    }

    .menu_holder .menu-nav .dropdown {
        margin: 0 15px;
    }
}

@media screen and (max-width: 1200px) {
    .menu_holder .menu-nav .dropdown a {
        font-size: 13px;
    }

    .menu_holder .menu-nav .dropdown {
        margin: 0 10px;
    }

    #m4, #m6 {
        padding: 14px 19px;
    }
}


@media screen and (min-width: 993px) {

    .menu_holder .menu {
        display: inline-block !important;
    }

}

@media screen and (max-width: 992px) {

    .menu_holder {
        background-color: var(--blue);
        box-shadow: 0 0 11px rgba(14, 14, 14, 0.25);
        transition: all .3s ease-in-out;
    }

    .menu_holder .container {
        padding: 0 20px;
        width: 90%;
    }

    .menu_holder .navbar-header {
        top: -15px;
    }

    .menu_holder .menu-toggler {
        display: block;
    }

    .menu_holder .menu {
        width: 100%;
        padding: 40px 0 30px 0;

        display: none;
    }

    .menu_holder .menu-nav {
        padding: 0;
    }

    .menu_holder .menu {
        text-align: left;
        padding-bottom: 100px;
    }

    .menu_holder .menu-nav .dropdown {
        display: block;
        width: 100%;
        margin: 15px 0;
    }

    .menu_holder .menu-nav .dropdown a {
        font-size: 14px;
    }

    .menu_holder .menu-nav .dropdown a {
        font-size: 17px;
        font-weight: 400;
    }

    .menu_holder .menu-toggler {
        display: inline-block;
    }

    .menu_holder .navbar-header {
        float: unset;
        display: inline-block;
        width: Calc(100% - 50px);
    }

    .menu_holder .menu-toggler {
        position: relative;
        top: 26px;
    }

    .menu_holder {
        padding: 0 0 20px 0;
    }
}


/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/


.banner {
    position: relative;
    width: 100%;
    margin-top: -68px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.banner .mask {
    position: absolute;
    width: 100%;
    bottom: -2px;
    z-index: 2;
}

.banner .mask img {
    width: 100%;
}

.banner .holder_slider {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.banner .holder_slider img {
    width: 100%;
}

.banner .holder_slider .single_banner,
.banner .holder_slider .single_banner .holder_content,
.banner .holder_slider .single_banner .holder_content_img {
    width: 100%;
    height: 750px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.banner .holder_slider .single_banner .holder_content_img .iframe_holder {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner.banner_interno ul li {
    height: 480px;
}

.banner .owl-carousel .owl-stage-outer {
}

.banner.internas li {
    height: 260px;
    background-position: top center;
}

.banner #slider_home .owl-controls {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 100px;
}

.banner #slider_home .owl-dots {
    position: absolute;
    bottom: 20px;
    text-align: center;
    margin: -25px auto 0;
    left: 0;
    right: 0;
}

.banner #slider_home .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 100%;
    border: 2px solid #fff;
    background: #fff;
}

.banner #slider_home .owl-dots .owl-dot.active {
    background: #F9BC23;
    border: 2px solid #F9BC23;
}

.banner #slider_home .owl-prev img,
.banner #slider_home .owl-next img {
    width: 32px !important;
}

.banner .holder_slider video {
    position: absolute;
    width: 100%;
    /* height: 100%; */
    top: Calc(50% - 36px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.banner .conteudo {
    position: absolute;
    top: 165px;
    left: 0;
    right: 0;
    text-align: left;
    margin: auto;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.banner.banner_interno .conteudo {
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.banner .conteudo .nome {
    font-size: 60px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 71px;
    font-weight: 600;
    width: 690px;
    margin-bottom: 30px;
}

.banner .conteudo .descricao {
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 25px;
    font-weight: 300;
    width: 690px;
    margin-bottom: 30px;
}

.banner .conteudo button {
    border: 0;
    padding: 20px 35px;
    border-radius: 0;
    font-size: 18px;
    color: #000000;
    letter-spacing: 0;
    text-align: center;
    line-height: 20px;
    background: #FFFFFF;
}


@media screen and (max-width: 1500px) {
    .banner .holder_slider .single_banner {
        width: 100%;
        height: 700px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }

    .banner #slider_home .owl-controls {
        width: 100%;
        text-align: center;
        position: absolute;
        bottom: 60px;
    }
}


@media screen and (max-width: 1400px) {
    .banner .conteudo .nome {
        font-size: 55px;
        line-height: 66px;
    }
}


@media screen and (max-width: 1200px) {
    .banner {
        margin-top: -97px;
    }

    .banner .conteudo .nome {
        font-size: 50px;
        line-height: 61px;
    }
}

@media screen and (max-width: 992px) {
    .banner {
        margin-top: 0;
    }

    .banner, .banner .holder_slider .single_banner {
        height: 650px;
    }

    .banner_interno, .banner_interno ul li {
        height: 480px;
    }

    .banner.internas,
    .banner.internas li {
        height: 200px;
    }

    .banner .holder_slider img {
        display: none;
    }

    .banner .conteudo {

    }

    .banner .conteudo .nome {
        font-size: 40px;
        line-height: 51px;
        width: 100%;
    }

    .banner .conteudo .descricao {
        width: 100%;
    }

    .banner .conteudo {
        text-align: center;
    }

    .banner .conteudo button {
        padding: 15px 35px;
        font-size: 16px;
    }

    .banner #slider_home .owl-controls {
        bottom: 70px;
    }

    .banner .holder_slider .single_banner {
        background-position: top right;
    }
}

@media screen and (max-width: 600px) {

    .banner .conteudo .nome {
        font-size: 35px;
        line-height: 46px;
    }

    .banner .conteudo .descricao {
        font-size: 16px;
    }

    .banner .holder_slider .single_banner {
    }
}

@media screen and (max-width: 500px) {

    .banner .conteudo .nome {
        font-size: 35px;
        line-height: 46px;
    }

    .banner .conteudo .descricao {
        font-size: 16px;
    }
}


/*==================================================================================================*/
/*BLOCOS*/
/*==================================================================================================*/

.bloco {
    position: relative;
    width: 100%;
    padding: 0 0 85px 0;
}

.bloco.no-margin {
    padding: 0;
}


@media screen and (max-width: 992px) {

    .bloco {
        padding: 40px 0;
    }
}


/*==================================================================================================*/
/*MIDDER*/
/*==================================================================================================*/


.midder {
    width: 100%;
    height: 650px;
    position: relative;

    /*background-attachment: fixed;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.midder .conteudo {
    width: 30%;
    top: 20%;
    left: 0;
    text-align: left;
    position: absolute;
    padding: 0 2%;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.midder .conteudo h2 {
    font-size: 48px;
    color: #111;
    text-transform: none;
}

.midder .conteudo p {
    font-size: 17px;
    color: #838383;
}


@media screen and (max-width: 992px) {

    .midder {
        height: 250px;
        background-attachment: initial;
    }

    .midder .conteudo h2 {
        font-size: 25px;
    }
}

/*@media screen and (max-width: 470px) {

	.midder {
		height: 250px;
	}
	.midder .conteudo h2 {
		font-size: 25px;
	}
}*/


/*==================================================================================================*/
/*HOMEPAGE*/
/*==================================================================================================*/

.main_landing {
    padding: 200px 0;
}

.main_landing .title.center h1 {
    font-size: 100px;
    width: 72%;
    margin: auto;
}

.main_landing .main_social_media {
    display: flex;
    max-width: 900px;
    margin: 20px auto 50px auto;
    flex-wrap: wrap;
    padding: 0 150px;
}

.main_landing .main_social_media .single_image {
    width: Calc(100% / 3);
}

.main_landing .main_social_media .single_image {
    margin-bottom: 5%;
}

.main_landing .main_social_media .single_image img {
    height: 40px;
}

.bloco.main_landing {
    padding-bottom: 0;
}

.table_holder_mobile {
    display: none;
    margin-top: 50px;
}

.mobile_card {
    padding: 5%;
    margin: 10% auto 0 auto;
    width: 90%;
}

.mobile_card .seperator {
    background-color: var(--blue);
    width: 100%;
    margin: 5% auto;
    height: 2px;
}

.mobile_card .wrap_servicos .titulo_principal {
    font-weight: 700;
    font-size: 15px;
}

.mobile_card .wrap_servico {
    padding: 10px;
}

.mobile_card .wrap_servicos .servico_titulo img {
    width: 30px !important;
    height: 30px !important;
}

.wrap_servicos .servicos {
    margin-bottom: 50px;
}

.mobile_card .wrap_servicos .servico_titulo  {
    font-size: 15px;
}

.mobile_card .wrap_servicos .servico_titulo span {
    margin: 0;
    padding-bottom: 2%;
    float: right;
}

.mobile_card .wrap_servicos .single_servico_titulo .servico_titulo {
    padding-bottom: 2%;
}

.mobile_card .wrap_servicos .titulo_principal {
    margin: 2% 0;
}

.mobile_card .plano_titulo {
    font-family: 'Fjalla One', sans-serif;
    padding: 20px;
    font-size: 30px;
}

.mobile_card .plano_detalhe .preco .colunas {
    width: 100%;
    text-align: center;
}

.mobile_card .plano_detalhe .preco .colunas {
    font-size: 35px;
    font-family: 'Fjalla One', sans-serif;
}



@media screen and (max-width: 992px) {
    .table_holder {
        display: none;
    }

    .table_holder_mobile {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    .mobile_card .wrap_servicos .servico_titulo  {
        font-size: 13px;
    }
}

/*==================================================================================================*/
/*VANTAGENS*/
/*==================================================================================================*/

.bloco.vantagens {
    padding-top: 0;
}

.vantagens .title.center h2 {
    font-size: 48px;
    margin-bottom: 100px;
    font-family: 'Fjalla One', sans-serif;
}

.single_vantagem .conteudo .texto p {
    font-size: 20px;
    letter-spacing: 0;
}

.single_vantagem .icon {
    position: relative;
    width: 100%;
}

.vantagens .vantagens_row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.vantagens_row .single_vantagem {
    width: calc(100% / 6);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.single_vantagem .arrow_up_vantagem,
.single_vantagem .arrow_down_vantagem {
    margin: 0 auto;
}

.single_vantagem .icon .imagem img {
    width: 160px;
}

.single_vantagem .icon .fundo {
    position: absolute;
    width: 228px;
    top: 50%;
    left: 44%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.single_vantagem:first-child .fundo {
    position: absolute;
    width: 228px;
    top: 50.5%;
    left: 57%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.single_vantagem.index_meio .icon .fundo {
    position: absolute;
    width: 256px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.single_vantagem:nth-child(even) .icon {
    order: 3;
}

.single_vantagem:nth-child(even) .arrow_up_vantagem {
    order: 2;
}

.single_vantagem:nth-child(even) .conteudo {
    order: 1;
}

.single_vantagem:nth-child(odd) .conteudo .texto {
    position: absolute;
    top: 50px;
    width: 100%;
    left: 50%;
    padding: 0 20px;
    transform: translateX(-50%);
}

.single_vantagem:nth-child(even) .conteudo .texto {
    position: absolute;
    bottom: 40px;
    width: 100%;
    left: 50%;
    padding: 0 15px;
    transform: translateX(-50%);
}

.single_vantagem .arrow_down_vantagem {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
}

.single_vantagem .arrow_up_vantagem {
    position: absolute;
    top: 125px;
    left: 50%;
    transform: translateX(-50%);
}

.single_vantagem .conteudo {
    position: relative;
    width: 100%;
}

.single_vantagem .icon .fundo img {
    width: 100%;
}

.single_vantagem .arrow_down_vantagem .arrow_down img,
.single_vantagem .arrow_up_vantagem .arrow_up img {
    width: 30px;
}

.single_vantagem .conteudo {
    height: 176px;
    padding: 17px;
}

@media screen and (max-width: 1600px) {
    .single_vantagem .icon .imagem img {
        width: 150px;
    }

    .single_vantagem .conteudo .texto p {
        font-size: 19px;
    }

    .single_vantagem .conteudo {
        height: 163px;
    }

    .single_vantagem.index_meio .icon .fundo {
        width: 245px;
    }

    .single_vantagem .arrow_up_vantagem {
        top: 115px;
    }

    .single_vantagem .icon .fundo {
        width: 215px;
    }
}

@media screen and (max-width: 1500px) {
    .single_vantagem .icon .imagem img {
        width: 140px;
    }

    .single_vantagem .conteudo .texto p {
        font-size: 18px;
    }

    .single_vantagem .conteudo {
        height: 150px;
    }

    .single_vantagem.index_meio .icon .fundo {
        width: 230px;
    }

    .single_vantagem .arrow_up_vantagem {
        top: 100px;
    }

    .single_vantagem .arrow_down_vantagem {
        top: 165px;
    }

    .single_vantagem .icon .fundo {
        width: 195px;
    }
}

@media screen and (max-width: 1400px) {
    .main_landing .title.center h1 {
        font-size: 96px;
    }

    .main_text h2 {
        font-size: 30px;
    }

    .single_vantagem .icon .imagem img {
        width: 130px;
    }

    .single_vantagem .conteudo .texto p {
        font-size: 18px;
    }

    .single_vantagem .conteudo {
        height: 139px;
    }

    .single_vantagem.index_meio .icon .fundo {
        width: 210px;
    }

    .single_vantagem .arrow_up_vantagem {
        top: 90px;
    }

    .single_vantagem .arrow_down_vantagem {
        top: 155px;
    }

    .single_vantagem .icon .fundo {
        width: 183px;
    }
}

@media screen and (max-width: 1300px) {
    .main_landing .title.center h1 {
        font-size: 87px;
    }

    .main_text h2 {
        font-size: 28px;
    }

    .single_vantagem .icon .imagem img {
        width: 120px;
    }

    .single_vantagem .conteudo .texto p {
        font-size: 14px;
    }

    .single_vantagem .conteudo {
        height: 125px;
    }

    .single_vantagem.index_meio .icon .fundo {
        width: 200px;
    }

    .single_vantagem .arrow_up_vantagem {
        top: 75px;
    }

    .single_vantagem .arrow_down_vantagem {
        top: 135px;
    }

    .single_vantagem .icon .fundo {
        width: 173px;
    }
}

@media screen and (max-width: 1200px) {
    .main_landing .title.center h1 {
        font-size: 76px;
    }

    .main_text h2 {
        font-size: 26px;
    }

    .main_landing .main_social_media .single_image img {
        height: 30px;
    }

    .single_vantagem .icon .imagem img {
        width: 110px;
    }

    .single_vantagem .conteudo .texto p {
        font-size: 12px;
    }

    .single_vantagem .conteudo {
        height: 111px;
    }

    .single_vantagem.index_meio .icon .fundo {
        width: 190px;
    }

    .single_vantagem .arrow_up_vantagem {
        top: 60px;
    }

    .single_vantagem .arrow_down_vantagem {
        top: 135px;
    }

    .single_vantagem .icon .fundo {
        width: 163px;
    }
}

@media screen and (max-width: 992px) {
    .main_landing .main_social_media.center {
        padding: 0;
    }

    .main_landing .title.center h1 {
        font-size: 50px;
    }

    .main_text h2 {
        font-size: 20px;
    }

    .single_vantagem .icon .fundo {
        display: none;
    }

    .vantagens_row .single_vantagem {
        width: calc(100%);
        display: unset;
    }

    .single_vantagem .imagem {
        border: 2px solid var(--red);
        width: 150px;
        height: 150px;
        display: flex;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
    }

    .single_vantagem .icon .imagem {
        margin: 0 auto;
    }

    .single_vantagem .arrow_down_vantagem {
        top: 165px;
    }

    .single_vantagem {
        display: flex;
    }

    .single_vantagem:nth-child(even) .icon {
        order: 1;
    }

    .single_vantagem:nth-child(even) .arrow_up_vantagem {
        order: 2;
    }

    .single_vantagem:nth-child(even) .conteudo {
        order: 3;
    }

    .single_vantagem .arrow_up_vantagem {
        transform: rotate(180deg);
        position: relative;
        top: 10px;
        left: unset;
    }

    .single_vantagem .icon .imagem img {
        width: 130px;
    }

}

@media screen and (max-width: 700px) {
    .main_landing .main_social_media.center {
        display: unset;
    }

    .main_landing .main_social_media.center .single_image {
        margin: 30px auto;
    }
}

/*==================================================================================================*/
/*PLANOS*/
/*==================================================================================================*/

.disclaimer_desktop {
    padding-top: 4%;
    font-size: 12px;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .disclaimer_desktop {
        text-align: center;
    }
}

.planos .title.center h2 {
    font-size: 48px;
    font-family: 'Fjalla One', sans-serif;
}

.planos .description.center h2 {
    font-size: 100px;
    margin-top: 50px;
    font-family: 'Fjalla One', sans-serif;
}

.planos .titulos_planos h2 {
    font-size: 40px;
}

.planos .titulos_planos .imagem {
    width: 65px;
    height: auto;
    margin: 0 auto;
}

.planos .servico_container .colunas img {
    width: 35px !important;
    height: auto !important;
    margin: 3px;
}

.planos .titulos_planos .imagem img {
    width: 100%;
}

.planos .single_servico .colunas.titulo {
    padding-left: 40px;
}

.planos .single_servico .colunas {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.planos_table {
    background-color: var(--dark-blue);
    width: 100%;
    border-radius: 19px;
    margin-top: 85px;
    padding: 50px;
}

.planos_table h2 {
    font-family: 'Fjalla One', sans-serif;
}

.planos .titulos_planos,
.planos .grupo_servico .single_servico {
    display: flex;
    flex-wrap: wrap;
}

.planos .titulos_planos {
    align-items: flex-end;
}

.planos .colunas {
    width: calc(60% / 3);
    text-align: center;
}

.planos .titulo.colunas {
    text-align: left;
    width: 40%;
}

.planos .grupo_servico:last-child .titulo_servico.single_servico .colunas {
    font-size: 40px;
    font-weight: 400;
    font-family: 'Fjalla One', sans-serif;
}

.planos .grupo_servico:last-child .titulo_servico.single_servico .colunas strong {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Fjalla One', sans-serif;
}

.planos .titulos_planos .plano_titulo {
    margin-top: 25px;
}

.planos .titulo.colunas h2 {
    text-align: left;
}

.planos .grupo_servico {
    margin-bottom: 20px;
}

.planos .titulo_servico.single_servico .titulo.colunas {
    padding-left: 20px;
}

.planos .servico_container .grupo_servico {
    padding-top: 30px;
}

.planos .titulo_servico.single_servico .titulo.colunas h3 {
    padding-top: 10px;
}

.planos .grupo_servico h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.planos .grupo_servico:last-child h3 {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}

.planos h4 {
    font-size: 18px;
    font-weight: 300;
}

.grupo_servico:not(:last-child) {
    border-top: 1px solid var(--blue);
}

@media screen and (max-width: 1200px) {
    .planos .servico_container .colunas img {
        width: 30px !important;
        height: auto !important;
        margin: 3px;
    }

    .planos .titulos_planos h2 {
        font-size: 35px;
    }

    .planos .single_servico .colunas {
        font-size: 18px;
    }

    .planos .grupo_servico h3 {
        font-size: 16px;
    }

    planos h4 {
        font-size: 14px;
    }

    .planos .grupo_servico:last-child .titulo_servico.single_servico .colunas {
        font-size: 35px;
    }

    .planos .grupo_servico:last-child .titulo_servico.single_servico .colunas strong {
        font-size: 22px;
    }

    .btn-main.new_hover {
        font-size: 14px;
        padding: 8px 20px;
    }
}

@media screen and (max-width: 992px) {
    .planos_table {
        width: 900px;
    }

    .table_holder {
        overflow: auto;
    }

    .planos .description.center h2 {
        font-size: 60px;
    }
}

@media screen and (max-width: 550px) {
    .planos .description.center h2 {
        font-size: 50px;
    }

    .disclaimer_desktop {
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 992px) {
    .custom_container {
        padding: 10px 15px;
    }
}


.mobile_card {
    background-color: var(--dark-blue);
    color: white;
    border-radius: 19px;
}


/*==================================================================================================*/
/*FOGUETÃO*/
/*==================================================================================================*/

.bloco.foguetao {
    overflow: hidden;
    padding-bottom: 25%;
    padding-top: 0;
}

.foguetao .single_quote .conteudo .titulo h3 {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
}

.foguetao .single_quote .conteudo .descricao p {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

.foguetao .single_quote {
    padding-top: 75px;
    width: 37%;
    margin: 0 auto;
}

/*
.foguetao .single_quote:nth-child(even) {
    margin-left: auto;
}
*/

.foguetao .single_quote:nth-child(1) {
    padding-bottom: 18%;
    width: 100%;
}

.foguetao .single_quote:nth-child(1) p {
    width: 37%;
    margin: 0 auto;
}

.foguetao .single_quote:nth-child(2),
.foguetao .single_quote:nth-child(3) {
    padding: 7.5% 0;
}

.foguetao .single_quote:nth-child(4),
.foguetao .single_quote:nth-child(5) {
    padding: 10% 0;
}

.foguetao .single_quote:nth-child(6),
.foguetao .single_quote:nth-child(7) {
    padding: 20% 0;
}

@media screen and (max-width: 1500px) {
    .foguetao .single_quote {
        padding-top: 59px;
        width: 35%;
    }
}

@media screen and (max-width: 1400px) {
    .foguetao .single_quote {
        padding-top: 39px;
        width: 35%;
    }
}

@media screen and (max-width: 1300px) {
    .foguetao .single_quote:nth-child(2) {
        width: 50%;
    }

    .foguetao .single_quote:nth-child(4), .foguetao .single_quote:nth-child(5) {
        padding: 15% 0;
    }

    .foguetao .single_quote:nth-child(2), .foguetao .single_quote:nth-child(3) {
        padding: 27.5% 0;
    }

    .foguetao .single_quote:nth-child(4), .foguetao .single_quote:nth-child(5) {
        padding: 6% 0 25%;
    }
}

@media screen and (max-width: 1200px) {
    .foguetao .single_quote {
        padding-top: 93px;
        width: 40%;
    }

    /*.foguetao_webp {
        width: 1800px;
    }*/
    .foguetao_parte1_desktop {
        width: 180% !important;
    }

    .foguetao_part2_desktop {
        width: 180% !important;
    }

    .foguetao_part3_desktop {
        width: 100% !important;
    }

    .foguetao .single_quote .conteudo .titulo h3 {
        font-weight: 700;
        font-size: 16px;
        text-align: center;
    }

    .foguetao .single_quote .conteudo .descricao p {
        font-weight: 400;
        font-size: 16px;
        text-align: center;
    }
}

@media screen and (max-width: 992px) {
    /*.foguetao .single_quote {
        margin: 0 auto;
    }

    .foguetao .single_quote:nth-child(even) {
        margin: 0 auto;
    }*/
    .foguetao .single_quote {
        padding-top: 3%;
        width: 90%;
    }

    @media screen and (max-width: 992px)
    .foguetao .single_quote:nth-child(2) {
        padding-top: 30%;
        padding-bottom: 10%;
    }

    .foguetao .single_quote:nth-child(3),
    .foguetao .single_quote:nth-child(4),
    .foguetao .single_quote:nth-child(5) {
        padding-top: 0;
    }

    .foguetao .single_quote:nth-child(2) {
        padding: 30% 0 0 0;
    }

    .foguetao .single_quote:nth-child(3) {
        padding: 10% 0 10% 0;
    }

    .foguetao .single_quote:nth-child(4) {
        padding: 10% 0 10% 0;
    }

    .foguetao .single_quote:nth-child(4), .foguetao .single_quote:nth-child(5), {
        padding: 10% 0 0 0;
    }

    .foguetao .single_quote:nth-child(6) {
        padding: 10% 0 0 0;
    }

    .foguetao .single_quote:nth-child(1) p {
        width: 70%;
        margin: 0 auto;
    }

}

@media screen and (max-width: 500px) {
    .foguetao .single_quote:nth-child(2) {
        padding: 20% 0 0 0;
    }

    .foguetao .single_quote:nth-child(2) {
        width: 90%;
    }

    .foguetao .single_quote:nth-child(5) {
        padding-bottom: 30%;
    }

    .foguetao .single_quote:nth-child(6) {
        padding-top: 40%;
    }

    .bloco.foguetao {
        padding-bottom: 150px !important;
    }
}

/*==================================================================================================*/
/*PLANETA (CTA REDES)*/
/*==================================================================================================*/

.bloco.planeta {
    overflow: hidden;
}

.planeta .middle .circle_lines img {
    max-width: 100%;
}

.planeta .middle .circle {
    position: relative;
}

.planeta .display-flex {
    align-items: center;
}

.planeta .middle .center_circle {
    position: absolute;
    max-width: 25%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.planeta .middle .center_circle img {
    width: 100%;
}

.planeta .left_side .left_text img,
.planeta .right_side .right_text img {
    max-width: 450px;
}

.planeta .right_side .right_text {
    float: right;
}

.planeta .single_planeta {
    width: calc(100% / 3);
}

.planeta .cta_button {
    padding-top: 50px;
}

.planeta .cta_button .btn-main.dp_goto {
    margin-right: 20px;
}

@media screen and (max-width: 1400px) {
    .planeta .right_side .right_text img,
    .planeta .left_side .left_text img {
        max-width: 400px;
    }
}

@media screen and (max-width: 1300px) {
    .planeta .right_side .right_text img,
    .planeta .left_side .left_text img {
        max-width: 300px;
    }
}

@media screen and (max-width: 1200px) {
    .planeta .right_side .right_text img,
    .planeta .left_side .left_text img {
        max-width: 250px;
    }
}

@media screen and (max-width: 992px) {
    .planeta .right_side .right_text img,
    .planeta .left_side .left_text img {
        display: none;
    }

    .planeta .logo_blob,
    .planeta .logo_blob2,
    .planeta .inverted_logo_blob,
    .planeta .inverted_logo_blob2 {
        display: none;
    }

    .planeta .single_planeta {
        width: calc(70%);
    }

    .planeta .middle .circle {
        transform: translateX(20%);
    }
}

/*==================================================================================================*/
/*PORTFOLIO*/
/*==================================================================================================*/

.bloco.portfolio {
    background-color: white;
    margin-top: 350px
}

.bloco.portfolio img {
    width: 100%;
    object-fit: cover;
}

.portfolio .title h3,
.portfolio .title strong h3 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 80px;
    text-align: center;
    margin: 0 auto;
    font-weight: 300;
    margin-top: -15%;
}

.portfolio .title {
    color: var(--blue);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio .title strong {
    color: var(--red);
}

.portfolio .slider_portfolio {
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
}

.portfolio .linha1,
.portfolio .linha2,
.portfolio .linha3 {
    display: flex;
}

.portfolio .coluna_mae.coluna1 {
    width: 52%;
}

.portfolio .coluna_mae.coluna2 {
    width: 48%;
}

.portfolio .linha2 .colunas {
    width: 57%;
    display: flex;
    flex-wrap: wrap;
}

.portfolio .linha2 .colunas2 {
    width: 43%;
}

.portfolio .coluna1 .imagem1 {
    width: 50%;
}

.portfolio .coluna1 .imagem2 {
    width: 50%;
    padding: 10% 3% 0 3%;
}

.portfolio .coluna1 .imagem3 {
    width: 50%;
    margin-top: 0;
    padding-left: 4%;
}

.portfolio .coluna1 .imagem4 {
    width: 50%;
    padding: 3% 3% 0 4%;
}

.portfolio .coluna1 .imagem5 {
    width: 37.5%;
    padding: 2% 2% 0 0;
}

.portfolio .coluna1 .imagem6 {
    width: 25%;
    padding: 2% 2% 0 1%;
}

.portfolio .coluna1 .imagem7 {
    width: 37.5%;
    padding: 2% 0 0 1%;
}

.portfolio .coluna2 .imagem8 {
    width: 50%;
    padding: 4% 0 4% 0;
}

.portfolio .coluna2 .imagem9 {
    width: 50%;
    padding: 5% 3% 0;
}

.portfolio .coluna2 .imagem10 {
    width: 100%;
    padding: 0 3% 0 2%;
}

.portfolio .coluna2 .imagem11 {
    width: 100%;
}

.portfolio .coluna2 .imagem12 {
    width: 50%;
    padding: 2% 0 0 3%;
}

.portfolio .coluna2 .imagem13 {
    width: 50%;
    padding: 2% 0 0 3%;
}

.portfolio .coluna2 .imagem14 {
    width: 100%;
    padding: 6% 2% 0 8%;
}

.portfolio .cta_button {
    margin-top: 50px;
}

.portfolio .listagem_imagens img {
    border-radius: 19px;
}

@media screen and (max-width: 992px) {
    .portfolio .coluna_mae.coluna1,
    .portfolio .coluna_mae.coluna2 {
        width: 100%;
    }

    .portfolio .title h3, .portfolio .title strong h3 {
        font-size: 72px;
    }

    .portfolio .red_like {
        width: 11%;
    }

    .portfolio .rectangle_top {
        top: -7% !important;
    }
}

@media screen and (max-width: 850px) {

    .portfolio .title h3, .portfolio .title strong h3 {
        font-size: 55px;
    }

    .portfolio .red_like {
        top: 42px;
        width: 10%;
    }
}

@media screen and (max-width: 767px) {
    .bloco.portfolio {
        margin-top: 250px;
    }
}

@media screen and (max-width: 695px) {
    .portfolio .rectangle_top {
        top: -6% !important;
    }
}

@media screen and (max-width: 600px) {

    .portfolio .title h3, .portfolio .title strong h3 {
        font-size: 50px;
    }

    .portfolio .red_like {
        top: 40px;
        left: 12px;
        width: 9%;
    }
}


@media screen and (max-width: 436px) {
    .portfolio .rectangle_top {
        top: -5% !important;
    }

    .bloco.portfolio {
        margin-top: 200px;
    }
}

/*==================================================================================================*/
/*TESTIMONIALS*/
/*==================================================================================================*/

.testimonials_fundo {
    background-image: url("/site/imagens/fundo_final.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonials .conteudo .text {
    margin: 50px auto;
}

.testimonials .writer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 80px auto;
}

.testimonials .writer .image img {
    width: 77px;
}

.testimonials .writer .name {
    font-family: 'Fjalla One', sans-serif;
    font-size: 28px;
    letter-spacing: 0;
    line-height: 28px;
    padding: 0 0 0 20px;
}

.testimonials .owl-dots {
    position: absolute;
    background-color: var(--light-blue);
    border-radius: 19px;
    margin: -40px auto;
    height: 7px;
    line-height: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonials .owl-dot.active {
    position: relative;
    width: 50px;
    border-radius: 19px;
    background-color: var(--red);
    height: 7px;
    top: -2px;
}

.testimonials .writer .image img {
    border-radius: 50%;
}

.testimonials .owl-dot {
    position: relative;
    width: 50px;
    border-radius: 19px;
    background-color: var(--light-blue);
    height: 7px;
    top: -2px;
}

.testimonials .slider_testimonials {
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

/*==================================================================================================*/
/*DESEMPENHO*/
/*==================================================================================================*/

.desempenho .title.center h2 {
    font-size: 48px;
    font-family: 'Fjalla One', sans-serif;
}

.desempenho .title.center .conteudo .text {
    margin: 50px auto auto auto;
    max-width: 960px;
}

/*==================================================================================================*/
/*FORMULARIO*/
/*==================================================================================================*/

.bloco_formulario .formulario .coluna.title h2 {
    font-size: 60px;
    font-family: 'Fjalla One', sans-serif;
}

.bloco_formulario .formulario .coluna .info h2 {
    text-align: start;
    font-family: 'Fjalla One', sans-serif;
}

.bloco_formulario .formulario .coluna .info .descricao a {
    font-family: 'Inter', sans-serif;
    color: white !important;
    font-size: 30px;
}

.bloco_formulario .formulario .coluna .info .descricao {
    margin-top: 40px;
}

.bloco_formulario .formulario .coluna .info .descricao a:hover {
    text-decoration: underline;
}

.bloco_formulario #form_contactos {
    background-color: white;
    border-radius: 10px;
    padding: 20px 20px 40px 20px;
}

.bloco_formulario #form_contactos .row {
    text-align: center;
}

.bloco_formulario .alert.alert-warning {
    margin: 30px auto;
}

.bloco_formulario .alert.alert-success {
    margin: 30px auto;
}

.form-control {
    background-color: var(--light-gray);
    border-radius: 50px;
    border: none;
    margin-bottom: 10px;
    padding: 15px
}

.form-control::placeholder {
    color: var(--dark-gray);
}

#form_contactos .row .col-md-12.form_check {
    color: var(--dark-gray);
    font-size: 14px;
    margin: 10px auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

#form_contactos select {
    color: var(--dark-gray);
    cursor: pointer;
}

#form_contactos .relative_div {
    position: relative;
}

#form_contactos .menu_icon {
    position: absolute;
    right: 15px;
    top: 40px;
    width: 13px;
    cursor: pointer;
}

@media screen and (max-width: 1200px) {
    .formulario .info h2 {
        font-size: 50px;
    }

    .formulario .coluna.title h2 {
        font-size: 50px !important;
    }

    .formulario .descricao a {
        font-size: 22px !important;
    }

    .formulario .btn-main {
        font-size: 13px;
    }
}

@media screen and (max-width: 992px) {
    .formulario .display_flex .coluna:first-child {
        order: 3;
        width: 100%;
    }

    .formulario .display_flex .coluna:last-child {
        width: 100%;
    }

    .bloco_formulario .floating_bolt {
        display: none;
    }

    .formulario .info {
        margin-top: 50px;
    }

    .formulario .coluna.title h2 {
        margin-bottom: 4px;
    }

    .formulario .info h2 {
        font-size: 40px;
    }

    .formulario .coluna.title h2 {
        font-size: 40px !important;
    }

    .formulario .descricao a {
        font-size: 20px !important;
    }
}

/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/


.footer {
    position: relative;
    width: 100%;
    background: #3D3D3D;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 300;
}

.footer h2 {
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.footer h3 {
    font-size: 19px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.footer p,
.footer label,
.footer a {
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 300;
}

.lower_footer {
    padding: 30px 0 30px 0;
    background: #0637BA;
    text-align: center;
    color: white;
    position: relative;
}

.lower_footer .links a:hover {
    text-decoration: underline;
}

.lower_footer {
    font-size: 14px;
}

.lower_footer .social_media_wrap img {
    margin-right: 20px;
    height: 25px;
}

.lower_footer hr {
    margin-top: 0;
    margin-bottom: 30px;
    border: 0;
    border-top: 1px solid #979797;
}

.lower_footer p,
.lower_footer a {
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 26px;
    font-weight: 300;
}

#newsletter_response {
    font-size: 13px;
}

.politica_privacidade table {
    max-width: 100% !important;
    border: none !important;
}

.politica_privacidade table tr td {
    width: Calc(100% / 3) !important;
    padding: 5px 10px;
    border: none !important;
}

.politica_privacidade table tr th {
    background: #c6c5c5;
    padding: 5px 10px;
}

@media screen and (max-width: 767px) {
    .lower_footer .text,
    .lower_footer .social_media_wrap,
    .lower_footer .links {
        margin: auto;
    }

    .lower_footer .social_media_wrap {
        margin: 20px auto;
    }
}

/*==================================================================================================*/
/*FLOATING ICONS*/
/*==================================================================================================*/

.bloco.main_landing {
    margin: 50px 0 0 0;
}

.main_landing .bg_oval {
    position: absolute;
    top: -50px;
    right: 0;
    width: 600px;
    z-index: -1;
}

.main_landing .bg_oval img {
    width: 100%;
}

.main_landing .bg_plane {
    position: absolute;
    top: 39%;
    right: 17%;
    width: 200px;
    z-index: -1;
}

.main_landing .bg_plane img {
    width: 100%;
}

.main_landing .bg_heart {
    position: absolute;
    top: 49.5%;
    right: 76%;
    width: 85px;
    z-index: -1;
}

.main_landing .bg_heart img {
    width: 100%;
}

.main_landing .bg_add {
    position: absolute;
    top: 25%;
    right: 79%;
    width: 75px;
    z-index: -1;
}

.main_landing .bg_add img {
    width: 100%;
}

.main_landing .bg_comment {
    position: absolute;
    top: 9%;
    right: 47.5%;
    width: 150px;
    z-index: -1;
}

.main_landing .bg_comment img {
    width: 100%;
}

.main_landing .bg_tab {
    position: absolute;
    top: 58%;
    right: 33.5%;
    width: 75px;
    z-index: -1;
}

.main_landing .bg_tab img {
    width: 100%;
}

.main_landing .floating_like {
    position: absolute;
    top: 28.5%;
    right: 16.5%;
    width: 70px;
    z-index: -1;
}

.main_landing .floating_like img {
    width: 100%;
}

.main_landing .floating_smile {
    position: absolute;
    top: 14.5%;
    right: 15.5%;
    width: 110px;
    z-index: -1;
}

.main_landing .floating_smile img {
    width: 100%;
}

.main_landing .inverted_floating_bolt {
    position: absolute;
    top: 9.5%;
    right: 26%;
    width: 50px;
    z-index: -1;
}

.main_landing .inverted_floating_bolt img {
    width: 100%;
}

.main_landing .floating_bolt {
    position: absolute;
    top: 40%;
    right: 77%;
    width: 50px;
    z-index: -1;
}

.main_landing .floating_bolt img {
    width: 100%;
}

.main_landing .floating_bolt_2 {
    position: absolute;
    top: 10.5%;
    right: 70%;
    width: 50px;
    z-index: 1;
}

.main_landing .floating_bolt_2 img {
    width: 100%;
}

.main_landing .floating_dart {
    position: absolute;
    top: 9%;
    right: 72%;
    width: 200px;
}

.main_landing .floating_dart img {
    width: 100%;
}

/*.foguetao_webp {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translatex(-50%);
    width: 1925px;
    z-index: -1;
}*/

.foguetao_parte1_desktop {
    position: absolute;
    top: 130px;
    left: 43%;
    transform: translatex(-50%);
    width: 90%;
    z-index: -1;
}

.foguetao_part2_desktop {
    position: absolute;
    top: 1200px;
    left: 50%;
    transform: translatex(-50%);
    width: 100%;
    z-index: -1;
}

.foguetao_part3_desktop {
    position: absolute;
    top: 1850px;
    left: 30%;
    transform: translatex(-50%);
    width: 80%;
    z-index: -1;
}

/*.foguetao_webp img {
    width: 100%;
}*/

.foguetao_parte1_desktop img {
    width: 100%;
}

.foguetao_part2_desktop img {
    width: 100%;
}

.foguetao_part3_desktop img {
    width: 100%;
}

.planeta .logo_blob {
    position: absolute;
    top: 16.5%;
    right: 81.5%;
    width: 2.6%;
}

.planeta .logo_blob img {
    width: 100%;
}

.planeta .logo_blob2 {
    position: absolute;
    top: 74.5%;
    right: 82.20%;
    width: 2.6%;
}

.planeta .logo_blob2 img {
    width: 100%;
}

.planeta .inverted_logo_blob {
    position: absolute;
    top: 7%;
    right: 15%;
    width: 2.6%;
}

.planeta .inverted_logo_blob img {
    width: 100%;
}

.planeta .inverted_logo_blob2 {
    position: absolute;
    top: 88%;
    right: 17.2%;
    width: 2.6%;
}

.planeta .inverted_logo_blob2 img {
    width: 100%;
}

.planeta .instagram_blob {
    position: absolute;
    top: 46%;
    right: 94.5%;
    width: 10.16%;
}

.planeta .instagram_blob img {
    width: 100%;
}

.planeta .facebook_blob {
    position: absolute;
    top: 9.5%;
    right: 79.5%;
    width: 10.16%;
}

.planeta .facebook_blob img {
    width: 100%;
}

.planeta .web_blob {
    position: absolute;
    top: 55.5%;
    right: 67%;
    width: 10.16%;
}

.planeta .web_blob img {
    width: 100%;
}

.planeta .wordpress_blob {
    position: absolute;
    top: 92.75%;
    right: 60%;
    width: 10.16%;
}

.planeta .wordpress_blob img {
    width: 100%;
}

.planeta .linkedin_blob {
    position: absolute;
    top: 12.5%;
    right: 52%;
    width: 10.16%;
}

.planeta .linkedin_blob img {
    width: 100%;
}

.planeta .huh_blob {
    position: absolute;
    top: 23.5%;
    right: 33%;
    width: 10.16%;
}

.planeta .huh_blob img {
    width: 100%;
}

.planeta .pinterest_blob {
    position: absolute;
    top: 8.5%;
    right: 12%;
    width: 10.16%;
}

.planeta .pinterest_blob img {
    width: 100%;
}

.planeta .twitter_blob {
    position: absolute;
    top: 41.5%;
    right: 12%;
    width: 10.16%;
}

.planeta .twitter_blob img {
    width: 100%;
}

.planeta .tiktok_blob {
    position: absolute;
    top: 62.5%;
    right: -2%;
    width: 10.16%;
}

.planeta .tiktok_blob img {
    width: 100%;
}

.planeta .youtube_blob {
    position: absolute;
    top: 72%;
    right: 26%;
    width: 10.16%;
}

.planeta .youtube_blob img {
    width: 100%;
}

.portfolio .heart_icon {
    position: absolute;
    top: -15%;
    right: 28%;
    width: 7%;
}

.portfolio .heart_icon img {
    width: 100%;
}

.portfolio .red_like {
    position: absolute;
    top: 55px;
    left: 15px;
    width: 12%;
}

.portfolio .red_like img {
    width: 100%;
}

.portfolio .curva_azul {
    position: absolute;
    bottom: -25%;
    left: 0;
    width: 100%;
}

.portfolio .curva_azul png {
    width: 100%;
}

.portfolio .share_buzz_text {
    padding-top: 50px;
}

.portfolio .share_buzz_text img {
    width: 100%;
}

.portfolio .rectangle_top {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
}

.portfolio .rectangle_top img {
    width: 100%;
}

.testimonials .ativo_socialmente {
    position: absolute;
    top: -230px;
    right: 35%;
    width: 26.5%;
}

.testimonials .ativo_socialmente img {
    width: 100%;
}

.desempenho .green_check {
    position: absolute;
    top: -22.5%;
    right: 50%;
    transform: translate(50%, 50%);
    width: 8%;
}

.desempenho .green_check img {
    width: 100%;
}

.desempenho .inverted_floating_bolt {
    position: absolute;
    top: -270px;
    right: 22%;
    width: 3%;
}

.desempenho .inverted_floating_bolt img {
    width: 100%;
}

.desempenho .inverted_floating_bolt2 {
    position: absolute;
    top: 380px;
    right: 29%;
    width: 3%;
}

.desempenho .inverted_floating_bolt2 img {
    width: 100%;
}

.desempenho .floating_smile {
    position: absolute;
    top: 400px;
    right: 22.5%;
    width: 6%;
}

.desempenho .floating_smile img {
    width: 100%;
}

.desempenho .calendar {
    position: absolute;
    top: 300px;
    right: 72.5%;
    width: 10%;
}

.desempenho .calendar img {
    width: 100%;
}

.desempenho .piechart {
    position: absolute;
    top: -50px;
    right: 10%;
    width: 10%;
}

.desempenho .piechart img {
    width: 100%;
}

.bloco_formulario .floating_bolt {
    position: absolute;
    top: 550px;
    right: 59%;
    width: 3%;
}

.bloco_formulario .floating_bolt img {
    width: 100%;
}


@media screen and (max-width: 1400px) {
    .testimonials .ativo_socialmente {
        top: -130px;
    }
}

@media screen and (max-width: 992px) {
    .desempenho .piechart,
    .desempenho .floating_smile,
    .desempenho .calendar,
    .desempenho .inverted_floating_bolt,
    .desempenho .inverted_floating_bolt2,
    .desempenho .green_check,
    .portfolio .heart_icon,
    .portfolio .red_like,
    .main_landing .floating_like,
    .main_landing .floating_smile,
    .main_landing .inverted_floating_bolt,
    .main_landing .floating_dart,
    .main_landing .floating_bolt,
    .main_landing .floating_bolt_2 {
        display: none;
    }

    .testimonials .ativo_socialmente {
        top: -110px;
    }

    .portfolio .curva_azul {
        position: absolute;
        bottom: -9%;
        left: 0;
        width: 100%;
    }

}

@media screen and (max-width: 400px) {
    .portfolio .curva_azul {
        position: absolute;
        bottom: -5.75%;
        left: 0;
        width: 100%;
    }

    .testimonials .ativo_socialmente {
        top: -90px;
    }
}

@media screen and (max-width: 650px) {
    .bloco.foguetao {
        padding-bottom: 100px;
    }

    .testimonials .ativo_socialmente {
        width: 150px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/*==================================================================================================*/
/*ANIMAÇÕES*/
/*==================================================================================================*/

.aparecer {
    opacity: 0;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.aparecer.apper {
    opacity: 1;
}

.deslizar_direita {
    right: -1500px;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.deslizar_direita.apper {
    right: 0;
}

.deslizar_direita_absoluto {
    right: -1500px;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.deslizar_direita_absoluto.apper {
    right: 0;
}

.deslizar_direita img {
    max-width: 1000px;
    width: 100%;
}

.deslizar_direita.img_big img {
    width: 80%;
    max-width: 700px;
}

.deslizar_esquerda {
    left: -1500px;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.deslizar_esquerda.apper {
    left: 0;
}

.small_to_big {
    transform: scale(0);
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.small_to_big.apper {
    transform: scale(1);
}

.bottom_top_fade {
    position: relative;
    top: 100px;
    opacity: 0;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.bottom_top_fade.apper {
    top: 0;
    opacity: 1;
}

@media screen and (min-width: 992px) {
    .bottom_top_fade.apper {
        top: 25px;
        opacity: 1;
    }
}

.fade_anim {
    opacity: 0;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.fade_anim.apper {
    opacity: 1;
}