/*
Theme Name: Flash Child
description: >-
  Flash Child Theme
Template: flash
Version: 1.0.0
Text Domain: flash-child
*/


*{
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:  1.5rem;
    letter-spacing: .05rem;
    line-height: 135%;
}
h1, h2, h3, h4, h5, h6, a{
    font-family: "Jost", sans-serif;
}
a{
    color: #333;
}
a:hover{
    color: #122645;
}
.no-padding{
    padding-left: 0;
    padding-right: 0;
}
.site{
    background-color: #e8e8e8;
}

/*--------------------------------------------------------------
}
Preloader CSS
--------------------------------------------------------------*/

.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}
.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}
.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}
.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}
.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}
.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}
.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}
.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}
.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}
.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}
.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}
.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}
@-webkit-keyframes lds-default {
  0%, 20%, 80%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    background: #005daf; 
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    background: #4e9f38; 
  }
}
@keyframes lds-default {
  0%, 20%, 90%, 100% {
    transform: scale(1);
    background: #005daf; 
  }
  50% {
    transform: scale(1.8);
    background: #4e9f38; 
  }
}



body #site-navigation ul li.current-menu-ancestor > a, body #site-navigation ul li.current-menu-item > a, body #site-navigation ul li.current_page_item > a{
    color: #ccc;
}

/* --- CONTENT */
.logo {
    padding-right: 110px;
}
#site-navigation {
    float: right;
    display: flex;
    flex-direction: row;
}
#site-navigation ul li a {
    text-transform: uppercase;
    color: #bcb0ab;
    font-size: 13px;
}
#site-navigation ul li, #site-navigation ul li:last-child {
    padding: 0;
}
#site-navigation ul li a{
    padding: 20px 20px 0;
}

header #site-navigation ul li a {
    position: relative;
}
header #site-navigation ul li.current-flash-item a, header #site-navigation ul li.current-menu-item a {
    color: #30893f;
    font-weight: 900;
}
.header-bottom {
    background: #fff;
    padding: 30px 0 0;
    position: relative;
}
.header-bottom, .header-sticky .is-sticky .header-bottom{
    background-image: url(imgs/header-bg.jpg);
    background-repeat: no-repeat;
    background-position: center 10px;

}
.header-bottom:after {
  content:'';
  background-image: url(imgs/linha_menu.png);
  background-position: center;
  z-index: 9;
  position: absolute;
  bottom: -20px;
  width: 100vw;
  height: 20px;
}

.header-bottom .site-navigation-wrapper {
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
    display: inline-flex;
    flex-flow: row-reverse;
}
header #site-navigation .menu-menu-externo-container{
    float: right;
}
header #site-navigation .menu-menu-externo-container ul {
    margin: 0;
}
header #site-navigation .menu-menu-externo-container ul li {
    float: left;
    position: relative;
    list-style: none;
    background-color: #d465bd;
    padding: 0;
    border-radius: 8px;
    margin: 8px 0 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
}
header #site-navigation .menu-menu-externo-container ul li:hover {
    background-color: #9e3388;
    -webkit-box-shadow: 2px 3px #721f61;
    box-shadow: 2px 3px #721f61;
}
header #site-navigation .menu-menu-externo-container ul li:hover a {
    text-decoration: none;
    color: #fff;
}
header #site-navigation .menu-menu-externo-container ul li:hover a:after{
            animation: bounce 1s infinite;  
       -moz-animation: bounce 1s infinite;  
    -webkit-animation: bounce 1s infinite;  
         -o-animation: bounce 1s infinite; 
}
header #site-navigation .menu-menu-externo-container a {
    color: #fff;
    font-weight: bold;
    padding: 10px 40px 10px 10px;
    display: block;
}
header #site-navigation .menu-menu-externo-container a:after {
    content: url(imgs/logout.png);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Animation Keyframes*/
@keyframes bounce {
    0% { right: 10px; }
    50% { right: 5px; }
    100% { right: 10px; }
}

@-moz-keyframes bounce {
    0% { right: 10px; }
    50% { right: 5px; }
    100% { right: 10px; }
}

@-webkit-keyframes bounce {
    0% { right: 10px; }
    50% { right: 5px; }
    100% { right: 10px; }
}

@-o-keyframes bounce {
    0% { right: 10px; }
    50% { right: 5px; }
    100% { right: 10px; }
}
header .perfil {
    float: right;
    padding: 24px;
    margin: 15px 0 10px 20px;
    background-color: transparent;
    background-image: url(imgs/loginoff.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}
header .perfil.on {
    background-image: url(imgs/loginon.png);
}
.dropdown-item {
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
}
.dropdown-item.btn {
    padding: 10px 15px;
}

header #site-navigation ul li:hover > a {
    text-decoration: none;
    font-weight: bold;
    color: #335dab;
}
#site-navigation li ul.sub-menu {
    z-index: 99;
    display: block;
    border-radius: 8px;
    padding: 10px;
}
#site-navigation ul.sub-menu li{
    padding: 0;
    text-align: center; 
}
#site-navigation ul.sub-menu li a {
    width: 100%;
    padding: 10px 5px;
}
.single .panel-grid.panel-no-style {
    display: block;
}
.single .site-content, #content{ 
    background-image: url(imgs/nuvens.png);
    background-repeat: no-repeat;
    background-position: top;
}
.category-Dicas, #content {
    background-color: #fbece2;
    background-color: -moz-linear-gradient(top, #fbece2 0%, #fff2e8 100%);
    background-color: -webkit-linear-gradient(top, #fbece2 0%,#fff2e8 100%);
    background-color: linear-gradient(to bottom, #fbece2 0%,#fff2e8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbece2', endColorstr='#fff2e8',GradientType=0 );
}
.archive .category-Dicas {
    background-image: url(imgs/destaque-dicas.png);
    background-repeat: no-repeat;
    background-position: top;
}
.category-Mito {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d4ebef+0,e6f4f7+100 */
background-color: #d4ebef; /* Old browsers */
background-color: -moz-linear-gradient(top,  #d4ebef 0%, #e6f4f7 100%); /* FF3.6-15 */
background-color: -webkit-linear-gradient(top,  #d4ebef 0%,#e6f4f7 100%); /* Chrome10-25,Safari5.1-6 */
background-color: linear-gradient(to bottom,  #d4ebef 0%,#e6f4f7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4ebef', endColorstr='#e6f4f7',GradientType=0 ); /* IE6-9 */
}
.archive .category-Mito {
    background-image: url(imgs/nuvens.png);
    background-repeat: no-repeat;
    background-position: top;
}
.category-Fatos {
    background-color: #ffe4a0; /* Old browsers */
    background-color: -moz-linear-gradient(top,  #ffe4a0 0%, #ffeba3 100%); /* FF3.6-15 */
    background-color: -webkit-linear-gradient(top,  #ffe4a0 0%,#ffeba3 100%); /* Chrome10-25,Safari5.1-6 */
    background-color: linear-gradient(to bottom,  #ffe4a0 0%,#ffeba3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffe4a0', endColorstr='#ffeba3',GradientType=0 ); /* IE6-9 */
}
.archive .category-Fatos {
    background-image: url(imgs/nuvens.png);
    background-repeat: no-repeat;
    background-position: top;
}
ul.wpp-list img {
    width: 178px;
    margin-right: 1rem;
    display: inline;
    float: left;
}
.entry-thumbnail img {
    width: 100%;
}
.grid-view #primary .first .post {
    width: 100%;
}
.first .entry-title {
    margin: 20px 0 15px;
}
.first .entry-title a {
    font-size: 3rem;
    line-height: 3rem;
}
.cat-description {
    min-height: 60px;
}
.section{
    padding: 100px 0;
    position: relative;
}
.entry-content{
    margin-top: 0;
}
#content { 
    min-height: calc(100vh - 430px);
    padding: 80px 0;
}
.home #content {
    padding: 0 0;
}
.left-sidebar #primary {
    float: left;
}
.left-sidebar #secondary {
    float: right;
}
.negative, .negative p, .negative a, .entry-content .negative a, .negative h3{
    color: #fff;
}

.textwidget h3, .textwidget h3 b, .textwidget h3 strong {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 900;
}
.textwidget h3 b, .textwidget h3 strong {
    font-weight: 900;
}
h2.widget-title, h3.widget-title {
    color: #b3519f;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: none;
}
.title h3.widget-title{
    color: #6d9e43;
    font-size: 45px;
    margin-bottom: 30px;
    text-transform: uppercase;	
}

.blue h3.widget-title{
  color:#1067b4;
	
}



.call-to-action-section .section-title-wrapper .section-title{
  font-size: 2.8rem;  
}
.section-title{
  font-weight: 900;
  margin-bottom: 2.5rem;
}
#verdade {
    background: #0460a8; /* Old browsers */
    background: -moz-linear-gradient(top,  #0460a8 0%, #f0f9ff 0%, #ffb61f 0%, #ffd01f 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #0460a8 0%,#f0f9ff 0%,#ffb61f 0%,#ffd01f 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #0460a8 0%,#f0f9ff 0%,#ffb61f 0%,#ffd01f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0460a8', endColorstr='#ffd01f',GradientType=0 ); /* IE6-9 */

    color: #693d07;
}


.entry-title a {
    font-weight: 900;
    font-size: 2.1rem;
}

.call-to-action-section .btn-wrapper a, .item .btn, #primary .wppb-user-forms .button, #content input[type="reset"], #content input[type="submit"] {
  border: 2px dotted;
  border-radius: 50px;
  font-size: 1.7rem;
  height: 55px;
  line-height: 50px;
  position: relative;
  padding: 0 22px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 900;
}
.owl-fatos .owl-dots {
    counter-reset: dots;
    text-align: center;
    margin-top: 30px;
}
.owl-fatos .owl-dot:before {
    counter-increment:dots;
    content: counter(dots);
    margin: 0 5px;
    font-weight: 900 !important;
    opacity: 0.7;
}
.owl-fatos .owl-dot.active:before {
    opacity: 1;
}
.yellow .call-to-action-section .btn-wrapper a, .yellow .call-to-action-section .section-title-wrapper .section-title, .yellow .item .entry-title a, 
.yellow .item .entry-summary p, .yellow .item .btn, .yellow .item .btn a{
  color: #ffd01f;
  border-color: #ffd01f;
}
.yellow .call-to-action-section .section-title-wrapper .section-title{
  text-transform: none;
  font-weight: 900;
}


.yellow .call-to-action-section .btn-wrapper a:hover, .yellow .item .btn:hover{
  background-color: #ffd01f;
  border-color: #ffd01f;
}
.blue .call-to-action-section .btn-wrapper a, .blue .call-to-action-section .section-title-wrapper .section-title, .blue .item .entry-title a, 
.blue .item .entry-summary p, .blue .item .btn, .blue .item .btn a, #programa-somar .section-subtitle{
  color: #22589c;
  border-color: #22589c;
}
.yellow .call-to-action-section .section-title-wrapper .section-title{
  text-transform: none;
  font-weight: 900;
}


.blue .call-to-action-section .btn-wrapper a:hover, .blue .item .btn:hover{
  background-color: #22589c;
  border-color: #22589c;
}

.category-Dicas .call-to-action-section .btn-wrapper a, .category-Dicas .section-title, .category-Dicas .entry-title a, .category-Dicas .entry-content-block .entry-title a,
.category-Dicas .call-to-action-section .section-title-wrapper .section-title, .category-Dicas .read-more a, .category-Dicas .btn, .category-Dicas .btn a, 
.category-Dicas .blog-section .row:nth-child(odd) .blog-content .entry-title a{
  color: #b3519f;
  border-color: #b3519f;
}

.category-Dicas .call-to-action-section .btn-wrapper a:hover, .category-Dicas .item .btn:hover{
  background-color: #b3519f;
  border-color: #b3519f;
}
.category-Mito .call-to-action-section .btn-wrapper a, .category-Mito .section-title, .category-Mito .entry-title a, .category-Mito .entry-content-block .entry-title a,
.category-Mito .call-to-action-section .section-title-wrapper .section-title, .category-Mito .read-more a, .category-Mito .btn, .category-Mito .btn a, 
.category-Mito .blog-section .row:nth-child(odd) .blog-content .entry-title a{
  color: #1067b4;
  border-color: #1067b4;
}

.category-Mito .call-to-action-section .btn-wrapper a:hover, .category-Mito .item .btn:hover{
  background-color: #1067b4;
  border-color: #1067b4;
}

.green .call-to-action-section .btn-wrapper a, .green .call-to-action-section .section-title-wrapper .section-title, .green .item .entry-title a, 
.green .item .entry-summary p, .green .item .btn, .green .item .btn a, .call-to-action-section .btn-green .btn-wrapper a{
  color: #6d9e43;
  border-color: #6d9e43;
}
 .green .call-to-action-section .section-title-wrapper .section-title{
  font-size: 2rem;
  text-transform: none;
 }

.green .call-to-action-section .btn-wrapper a:hover, .green .item .btn:hover{
  background-color: #6d9e43;
  border-color: #6d9e43;
}
.call-to-action-section .btn-highlight-green .btn-wrapper a, #primary .wppb-user-forms .button, #content input[type="button"], #content input[type="reset"], #content input[type="submit"]{
  background-color: #6d9e43;
  border-color: #6d9e43;
  color: #fff;
  font-size: 20px;

}
.category-Fatos .section-title, .category-Fatos .entry-title a, .category-Fatos .entry-content-block .entry-title a,
.category-Fatos .call-to-action-section .section-title-wrapper .section-title, .category-Fatos .read-more a, .category-Fatos .btn, .category-Fatos .btn a, 
.category-Fatos .blog-section .row:nth-child(odd) .blog-content .entry-title a
.category-Fatos .call-to-action-section .btn-wrapper a, .category-Fatos .call-to-action-section .section-title-wrapper .section-title, .category-Fatos .entry-title a, 
.category-Fatos .item .entry-summary p, .category-Fatos .item .btn, .category-Fatos .item .btn a{
  color: #693d07;
  border-color: #693d07;
}

.category-Fatos .call-to-action-section .btn-wrapper a:hover, .category-Fatos .item .btn:hover{
  background-color: #693d07;
  border-color: #693d07;
}

.call-to-action-section .btn-wrapper a:hover, .item .btn:hover a{
  color: #fff;
  text-decoration: none;
}

.white .call-to-action-section .btn-wrapper a, .white .call-to-action-section .section-title-wrapper .section-title, .white .item .entry-title a, 
.white .item .entry-summary p, .white .item .btn, .white .item .btn a{
  color: #fff;
  border-color: #fff;
}

.white .call-to-action-section .btn-wrapper a:hover, .white .item .btn:hover{
  background-color: #fff;
  border-color: #fff;
  color: #666666;
}
button:focus {
    outline: none;
}
.owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -10px;
}
.owl-prev span, .owl-next span {
    font-size: 60px;
    line-height: 0.6;
}
.owl-prev {
    position: absolute;
    margin-top: -10px;
    left: -10px;
}
.owl-next {
    position: absolute;
    margin-top: -10px;
    right: -10px;
}
.owl-mitos .item {
    background: #fff;
    margin: 15px 10px;
    padding: 25px;
    box-shadow: -1px 1px 2px rgba(100,60,5, 0.5);
    transform: rotate(-3deg);
}
.owl-mitos .owl-item:nth-child(even) .item{
    transform: rotate(4deg);
}
.owl-mitos .item a {
    color: #693d07;
}
.owl-mitos .item h3 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 2.5rem;
}
.owl-dicas img {
    margin-bottom: 15px;
}
.post-image a img {
    padding: 0;
    width: 100%;
}
#owl-beneficios .owl-item img{
    width: auto;
    margin: 30px auto;
}
#owl-beneficios .owl-prev span, #owl-beneficios .owl-next span {
    font-size: 80px;
    line-height: 0.6;
    color: #1067b4;
}
#owl-beneficios .owl-nav {
    position: absolute;
    width: 110%;
    top: 20%;
    transform: translateY(-50%);
    margin-top: -10px;
    margin-left: -5%;
}
#owl-beneficios .item{
    color: #693d07;
}
.cat-links a, .related-posts-wrapper .related-posts-main-title, .widget-title {
    font-weight: 900;
    text-transform: uppercase;
    color: #666666;
}

.trail-title {
    font-size: 3rem;
    font-weight: 900;
    margin-top: 10px;
}
.archive h1.trail-title {
    text-transform: uppercase;
    font-size: 5rem;
}
#secondary .widget ul li a {
    font-size: 1.5rem;
    font-weight: 900;
}


.category-Dicas .trail-title, .category-Dicas .entry-content a, .category-Dicas #secondary .widget ul li a {
    color: #b3519f; 
}
.category-Dicas .entry-content a{
  font-weight: 900;
}
.category-Mito .trail-title, .category-Mito .entry-content a, .category-Mito #secondary .widget ul li a {
    color: #1067b4; 
}
.category-Mito .entry-content a{
  font-weight: 900;
}
.category-Fatos .trail-title, .category-Fatos .entry-content a, .category-Fatos #secondary .widget ul li a {
    color: #693d07; 
}
.single .entry-thumbnail {
    margin-bottom: 20px;
}

#secondary h3.widget-title, .related-posts-wrapper .related-posts-main-title {
    font-size: 2.5rem;
}
#secondary .widget-title:before, #secondary .widget-title:after{
  content: none;
}

.wpp-thumbnail {
    padding: 0;
}
#secondary .widget ul li {
    padding-left: 0;
    font-weight: 900;
}
#secondary .widget ul li:after{
  content: none;
}

.related-posts-wrapper .post-thumbnails, .post .entry-thumbnail {
    margin-bottom: 20px;
}
#primary footer{
    background-color: transparent;
}
#top-footer .widget {
    margin-bottom: 20px;
    display: inline-block;
}
#top-footer .widget ul li {
    position: relative;
    padding: 0 15px 20px 3px;
    font-size: 12px;
    display: inline-block;
}
#top-footer .widget ul li:after {
    content: none;
}
#top-footer .widget ul#menu-menu-rodape li:after {
    color: #fff;
    content: "\2027";
    font-family: "Jost", sans-serif;
    left: unset;
    right: 0;
    position: absolute;
    top: 0;
    font-size: 35px;
    line-height: 17px;
    opacity: 0.7;
}
#top-footer .widget-title {
    font-size: 14px;
    font-weight: bold;
    border: 0;
    padding-left: 3px;
    width: 100%;
    margin-bottom: 20px;
}
#top-footer .widget-title:first-letter {
  color: inherit !important;
}
#top-footer .tg-column-wrapper .tg-column-3 {
    width: 74%;
}
#top-footer .tg-column-wrapper .tg-column-3:first-child, #top-footer .tg-column-wrapper .tg-column-3:last-child {
    width: 17%;
}
#top-footer .tg-column-wrapper .tg-column-3:last-child {
    width: 1%;
}
.widget_nav_menu, .a2a_follow_widget-2, #top-footer .a2a_kit, #top-footer .widget-title {
    float: left;
}
#top-footer .a2a_kit {
    margin-top: -5px;
}
#top-footer {
    background: #0460a8; /* Old browsers */
    background: -moz-linear-gradient(top,  #0460a8 0%, #f0f9ff 0%, #0460a9 0%, #03487f 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #0460a8 0%,#f0f9ff 0%,#0460a9 0%,#03487f 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #0460a8 0%,#f0f9ff 0%,#0460a9 0%,#03487f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0460a8', endColorstr='#03487f',GradientType=0 ); /* IE6-9 */

    padding: 65px 0 15px;
}
#menu-menu-rodape a {
    opacity: 0.7;
    text-transform: uppercase;
}
footer.footer-layout #top-footer .footer-block .widget a:hover {
    opacity: 1;
    color: #fff !important;
    text-decoration: none;
}
footer{
    padding-top: 20px;
    background: #045fa7;
}
a.ico-phone {
    font-size: 30px;
    color: #9bd867;
    font-weight: bold;
    padding-left: 45px;
    position: relative;
    letter-spacing: 2px;
    white-space: nowrap;
}
a.ico-phone:before {
    content: url(imgs/phone-call.png);
    display: block;
    position: absolute;
    top: 0;
}
.apoio-wrapper, .apoio-content {
    display: flex;
}
.apoio-content {
    align-items: center;
    text-transform: uppercase;
    font-size: 10px;
    color: #b3cbdf;
}
.apoio-content+.apoio-content {
    padding-left: 30px;
}
#localizadorWrapper {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}
#localizador {
    float: right;
    margin-bottom: -130px;
    transition: 1s margin ease-in-out;
    transition-delay: .5s;
}
#localizador:hover {
    margin-bottom: 0;
    transition: .2s margin ease-in;
    transition-delay: 0s;
}

#destaques .section-title-wrapper {
    padding: 40px 10px 10px;
    min-height: 282px;
}
#destaques .section-subtitle {
    font-size: 14px;
    line-height: 1.6;
}
#primary .wppb-user-forms input[type="text"],#primary .wppb-user-forms input[type="tel"] , #primary .wppb-user-forms input[type="number"], #primary .wppb-user-forms input[type="email"], #primary .wppb-user-forms input[type="url"], #primary .wppb-user-forms input[type="password"], #primary .wppb-user-forms input[type="search"], #primary .wppb-user-forms select {
    padding: 10px 15px;
    height: auto;
    border: 1px solid #3e2302;
    color: #3e2302;
    box-shadow: 0 5px #3e230230;
    width: 100%;
}
.wppb-user-forms label:hover, .wppb-user-forms input[type="radio"]:hover, .wppb-user-forms input[type="checkbox"]:hover{
    cursor: pointer;
}
#wppb-login-wrap p, .form-submit{
    text-align: center;
}
#wppb-register-user .off{
    display: none;
}

.wpsm_panel-title {
    position: relative;
}
#primary .wpsm_panel-title > a {
    padding: 0 20px;
    display: block;
    position: absolute;
    top: 10px;
    right: -5px;
}
.ac_open_cl_icon:before {
    content: "\f105";
    font-size: 30px;
    font-weight: bold;
    margin: 20px;
}
.collapsed .ac_open_cl_icon:before {
    content: "\f107";
    font-size: 30px;
    font-weight: bold;
    margin: 20px;
}
form br {
    display: none;
}
form input {
    margin-bottom: 10px !important;
}
#primary .read-more a {
    color: #b3519f;
}
.dropdown:hover .dropdown-menu{
	display:block;
	margin-top:0;
}
/* Grafismos */
.flowers1:after, .flowers2:after, .flowers3:after, .clouds:after, .kids-container, .cloud:before, .elephant:before, .balloon:before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    transition: .5s all ease-in-out;
}

.kids-container{
    top: -75px;
}
.k1, .k2, .k3, .k4{
    margin: 0 10px;
}
.k1:before, .k2:before, .k3:before, .k4:before{
    opacity: 1;
    margin-bottom: 0;
    transition: .5s all ease-in-out;
}
.kid.k1:before, .kid.k2:before, .kid.k3:before, .kid.k4:before{
    opacity: 0;
    margin-bottom: -50px;
}
.k1:before{
    content: url(imgs/crianca_A.png);
    transition-delay: 0s;
}
.k2:before{
    content: url(imgs/crianca_B.png);
    transition-delay: .2s;
}
.k3:before{
    content: url(imgs/crianca_C.png);
    transition-delay: .4s;
}
.k4:before{
    content: url(imgs/crianca_D.png);
    transition-delay: .6s;
}
.cloud:before{
    content: url(imgs/cloud.png);
    top:-40px;
}
.elephant:before {
    content: url(imgs/elefante.png);
    top: -80px;
    margin-left: -50px;
}
.balloon:before {
    content: url(imgs/balao.png);
    top: -185px;
}
.flowers1:after, .flowers2:after, .flowers3:after, .clouds:after {
    bottom: -5px;
}
.flowers1:after {
    content: url(imgs/flores_girafa.png);
}
.flowers2:after {
    content: url(imgs/flores_elefante.png);
}
.flowers3:after {
    content: url(imgs/flores_final.png);
}
.clouds:after {
    content: url(imgs/nuvens_azuis.png);
}
.before:before {
    left: 45%;
    opacity: 0;
    transition: .9s all ease-in-out;
}
.after:after {    
    opacity: 0;
    transition: .5s all ease-in-out;
    transition-delay: .5s;
}
.onetrust {
    padding: 0;
}
.onetrust a {
    color: #fff;
}
span.edit-link {
    position: absolute;
}
#lista {
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
    color: #b3519f;
}
#lista:after {
    content: '';
    background-image: url(imgs/linha.png);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 133px;
    height: 100%;
    background-size: 75%;
    background-position: center;
    background-repeat-x: no-repeat;
}
#lista .panel-grid-cell {
    opacity: 1;
}
#lista .panel-grid-cell:nth-child(odd) {
    padding-right: 30px;
    padding-left: 0;
    text-align: left;
}
#lista .panel-grid-cell:nth-child(even) {
    padding-right: 0;
    padding-left: 40px;
    text-align: left;
}

#lista .panel-grid:nth-child(even) .panel-grid-cell:nth-child(even) {
    padding-right: 30px;
    padding-left: 0;
    text-align: right;
}
#lista .panel-grid:nth-child(even) .panel-grid-cell:nth-child(odd) {
    padding-right: 0;
    padding-left: 30px;
    text-align: left;
}
#lista .panel-grid {
    padding: 40px;
    position: relative;
}
#lista .panel-grid:nth-child(even) {
    background-color: #ffffff99;
    display: -webkit-flex;
    display: flex;
    flex-direction: row-reverse;
}
#lista .tg-image-widget img {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
}
#lista .panel-grid:nth-child(even) .tg-image-widget img{
    transform: translate(-20%, -50%);
    right: 50%;
}
#primary .wpsm_panel-heading{
    padding: 0;
}
#primary span.ac_title_class {
    padding: 15px 20px;
}
#primary .wpsm_panel-body {
    padding: 30px 20px;
}
.wpsm_panel-heading br {
    display: none;
}
.wpsm_panel-group p {
    margin: 0;
}
#primary .wpsm_panel.wpsm_panel-default {
    border: 1px solid #3e2302;
    color: #3e2302;
    box-shadow: 0 10px #3e230230;
    margin-bottom: 20px;
}
#secondary h3.widget-title, .related-posts-wrapper .related-posts-main-title, #primary .blog-wrapper .entry-title a{
    margin-top: 10px;
    color: #6d9e43;
}
#modal-container.on {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
.on .modalbg {
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
}
#wppb_form_general_message.wppb-success {
    display: none;
}
.on .modal-popup {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 626px;
    height: 340px;
    padding: 80px 40px;
    background: url(imgs/popup.png);
    background-repeat: no-repeat;
    border: 0;
    z-index: 100;
    text-align: center;
}
.on .modal-popup:after {
    content: url(imgs/close.png);
    position: absolute;
    top: 30px;
    right: 30px;
}
.on .modal-popup h1 {
    font-size: 28px;
    color: #6d9e43;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 30px;
}
.on .modal-popup p {
    font-size: 20px;
    color: #bcb0ab;
}

/* Efeitos */

.init{
    opacity: 1;
    -webkit-transition: all 0.7s ease-in-out;
         -moz-transition: all 0.7s ease-in-out;
            -ms-transition: all 0.7s ease-in-out;
             -o-transition: all 0.7s ease-in-out;
                    transition: all 0.7s ease-in-out;
    
}
.delay1{
    transition-delay: .1s;
}
.delay2{
    transition-delay: .2s;
}
.delay3{
    transition-delay: .3s;
}
.delay4{
    transition-delay: .4s;
}
.delay5{
    transition-delay: .5s;
}
.delay6{
    transition-delay: .6s;
}
.delay7{
    transition-delay: .7s;
}
.delay8{
    transition-delay: .8s;
}
.delay9{
    transition-delay: .9s;
}
.delay10{
    transition-delay: 1s;
}
.init.ok.up{
    opacity: 0;
		-webkit-transform: translate(0, -100px);
			 -moz-transform: translate(0, -100px);
				-ms-transform: translate(0, -100px);
				 -o-transform: translate(0, -100px);
						transform: translate(0, -100px);
	}
.init.ok.down{
    opacity: 0;
		-webkit-transform: translate(0, 100px);
			 -moz-transform: translate(0, 100px);
				-ms-transform: translate(0, 100px);
				 -o-transform: translate(0, 100px);
						transform: translate(0, 100px);
	}
.init.ok.left{
    opacity: 0;
		-webkit-transform: translate(-100px, 0);
			 -moz-transform: translate(-100px, 0);
				-ms-transform: translate(-100px, 0);
				 -o-transform: translate(-100px, 0);
						transform: translate(-100px, 0);
	}
.init.ok.right{
    opacity: 0;
		-webkit-transform: translate(100px, 0);
			 -moz-transform: translate(100px, 0);
				-ms-transform: translate(100px, 0);
				 -o-transform: translate(100px, 0);
						transform: translate(100px, 0);
	}
.init.ok.fade{
    opacity: 0;
}
.init.ok.section-title:after {
    width: 0px;
    margin-left: 0;
}
#lista ul {
    list-style: none;
    margin-left: 0;
}
.read-more-container {
    margin-bottom: 30px;
}
@media (min-width:768px){

    #site-navigation ul li.menu-item-has-children .sub-toggle .fa{   
        color: #bcb0ab;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 13px); 
    }
    #site-navigation ul {
        display: inline-flex;
        text-align: center;
    }
    #site-navigation ul li{
        display: flex;
        flex-direction: row;
        align-items: center;  
    }
    header #site-navigation ul li a{
        word-break: normal;
    }
}

@media (max-width:768px){
    #beneficios {
        text-align: center;
        background-color: #ffffff;
        background-image: url(imgs/banner_mobile.jpg) !important;
        background-size: contain !important;
        background-repeat: no-repeat;
        background-position: bottom !important;
    }
    #page #site-navigation ul li.menu-item-has-children .sub-toggle{
        background-color: #335dab;
    }
    .header-bottom {
        padding: 10px 0 10px;
    }

    #site-navigation ul li,
    .transparent #site-navigation ul li {
        padding-left: 20px;
    }

    #content {
        padding: 80px 15px;
    }

    .section {
        padding: 50px 0;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    #content .call-to-action-section .btn-wrapper a,
    .call-to-action-section .btn-wrapper a:first-child {
        width: auto;
    }

    .kids-container:before {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        opacity: 1;
        transition: .5s all ease-in-out;
        content: url(imgs/criancas.png);
        top: 50px;
        margin-left: 0;
    }

    .k1,
    .k2,
    .k3,
    .k4 {
        display: none;
    }

    .related-posts .tg-column-2 {
        width: 97%;
    }

    #programa-somar {
        background-position: left !important;
    }

    #top-footer .tg-column-wrapper .tg-column-3:first-child,
    #top-footer .tg-column-wrapper .tg-column-3:last-child {
        width: 100%;
    }

    .apoio-wrapper,
    .apoio-content {
        display: grid;
        text-align: center;
    }

    .apoio-content img {
        margin: 10px auto;
    }

    .apoio-content+.apoio-content {
        padding: 0;
    }

    header #site-navigation .menu-menu-externo-container a br {
        display: none;
    }
    header #site-navigation .menu-menu-externo-container ul {
        text-align: center;
        position: absolute;
        top: calc(100vh - 100%);
    }
    header #site-navigation .menu-menu-externo-container ul li {
        margin: 10px auto;
        display: block;
        width: 100%;
    }
    header #site-navigation .menu-menu-externo-container ul li a {
        line-height: 1.5;
    }
    #destaques {
        background-size: cover;
    }
    .cloud:before {
        content: '';
        background-image: url(imgs/clouds.png);
        width: 100%;
        height: 130px;
        background-size: cover;
        background-position: center;
    }
    #destaques .section-title-wrapper{
        min-height: auto;
    }
    #destaques .btn-wrapper {
        margin-bottom: 50px;
    }
    #dicas {
        background-position: left !important;
    }
    #content .call-to-action-section .btn-wrapper a, .call-to-action-section .btn-wrapper a:first-child {
        width: fit-content;
    }
    #tratamento {
        padding-bottom: 300px;
        text-align: center;
        background-size: cover !important;
        background-position: bottom !important;
        background-repeat: no-repeat;
        background-image: url(imgs/tratamento-mobile.jpg) !important;
    }
    #programa-somar {
        padding-bottom: 350px;
        text-align: center;
        background-size: cover !important;
        background-position: bottom !important;
        background-repeat: no-repeat;
        background-image: url(imgs/duvidas-mobile.jpg) !important;
    }
    #top-footer {
        text-align: center;
    }
    .title h3.widget-title {
        font-size: 22px;
        text-align: center;
    }
    h2.widget-title, h3.widget-title {
        font-size: 22px;
        text-align: center;
    }
    .page .entry-content {
        text-align: left;
    }
    #lista {
        padding: 0;
    }
    #lista:after{
        display: none;
    }
    #lista .panel-grid-cell:nth-child(odd), #lista .panel-grid-cell:nth-child(even), #lista .panel-grid:nth-child(even) .panel-grid-cell:nth-child(odd), #lista .panel-grid:nth-child(even) .panel-grid-cell:nth-child(even) {
        padding-right: 0;
        padding-left: 0;
        text-align: center;
    }
	#lista .panel-grid-cell:nth-child(odd) p, #lista .panel-grid-cell:nth-child(even) p, #lista .panel-grid-cell:nth-child(odd) li, #lista .panel-grid-cell:nth-child(even) li {
		text-align: left;
	}
    #lista .panel-grid {
        padding: 20px 0;
        flex-direction: column-reverse !important;
    }
    #lista .panel-grid:nth-child(even){
        flex-direction: column;
        background-color: transparent;
    }
    #lista .tg-image-widget img, #lista .panel-grid:nth-child(even) .tg-image-widget img{
        position: static;
        transform: none;
    }
    #lista .tg-image-widget {
        margin: 50px 0 30px !important;
    }
    .blog-section .tg-blog-widget, .related-posts-wrapper .tg-column-3 {
        width: 100%;
    }
    #secondary{
        margin-top: 50px;
    }

    .on .modal-popup {
        width: 293px;
        height: 328px;
        padding: 80px 40px;
        background: url(imgs/popup-m.png);
    }
    .on .modal-popup h1 {
        font-size: 20px;
    }

}