/*tooltip*/
.toolTip {
  position: relative;
  display: inline-block;
}
.toolTip span {
  position: relative;
  border: var(--brand-secondary-300) solid 1px;
  padding: 4px;
  cursor: pointer;
}
.toolTip span:after {
  content: attr(data-tooltip);
  color: #F5F3EE;
  opacity: 0;
  position: absolute;
  z-index: 3;
  padding: 16px;
  font-size: 0.875rem;
  background-color: var(--brand-secondary-300);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  left: 20%;
  transform: translateY(16%);
  margin-left: -24px;
  width: max-content;
  max-width: 200px;
  white-space: normal;
  text-align: left;
  border-radius: 0 24px 0 0;
  border-bottom: 1px solid var(--brand-secondary-100)
}
.span:hover::before,
.toolTip span:hover::after { 
  opacity: 1;
  visibility: visible;
}
.toolTip span::after { 
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/*LAYOUT ESTRUTURA*/
.container {
  display: flex; 
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  width: 360px;
}
.container, .container-left, .container-right, .content-f-row, .slogan{
  display: flex;  
  width: auto;
}
.container-left, .container-right, .content-f-row{  
  margin: 0 auto;
  padding: 0 16px;
}
.container-right{
  justify-content: center;
  text-align: right !important;
}
.container-left{
  justify-content: center;
}
.content-f-row{
  justify-content: center;
  width: auto !important;
}
.content {
  text-align: left;
  width: auto;  
}
.sep-sectn-top{
  margin-top: 40px;
}
.sep-sectn-btm{
  margin-bottom: 40px;
}
.content p{
  text-align: left;
  font-weight: 300;
  font-size: var(--font-m-20);
  line-height: 1.6;
  padding-bottom: 20px;  
}
.hide{
  display: none !important;
}
.hide-mobile{
  display: none;
}
.p-strg{
  font-weight: 400;
  color: var(--brand-primary-400);
  background-color: transparent;
}
.p-strg-1{
  font-weight: 400;
  color: var(--primary-black);
  background-color: transparent;
}
.p-strg-2{
  font-weight: 700;
  color: var(--brand-secondary-400);
  background-color: transparent;
}



/*ACCORDION*/

.duvidas{
  margin-bottom: 80px;
}
.duvidas h3{
  color: var(--brand-primary-300);
}
.duvidas dl dt{
  display: flex;
  justify-content: space-between;
}
.duvidas dl dt ul{
  display: flex;
  flex-wrap: nowrap;
  margin-right: 16px;
  align-items: baseline;
}
.duvidas dl dt ul li:first-child{
  color: var(--brand-primary-300);
  font-weight: 400;  
  margin-right: 0.5rem;  
}
.duvidas dl dt ul li:last-child {
  color: var(--primary-black);
  font-size: var(--font-m-20);
  font-weight: 400;
  transition: color 0.2s ease;
}
.duvidas dl dt ul li:last-child:hover{
  color: var(--brand-primary-300);  
}
.js-accordion dt ul{
  cursor: pointer;
}
.accordio-desc{  
  margin-left: 0;  
}
.accordio-desc a{
  color: var(--brand-secondary-400);
  font-weight: 400;
}
.accordion dd span{
  font-weight: normal;
}
.js-accordion dd{
  display: none;
  color: var(--primary-black);
  font-size: var(--font-m-20);
  line-height: 1.4;
  font-weight: 300;
}
.js-accordion dd.ativo{
  display: block;
  margin-top: 8px;
  margin-bottom: 160px;
  animation: slideDown .5s forwards ;  
}
.t-acdon-ajst ul li:last-child{
  letter-spacing: -0.9px;
}
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to{
    opacity: 1;
    max-height: 200px;
  }
}
.js-accordion dd.inativo{
  display: block;
  animation: slideUp .5s backwards ;
}
@keyframes slideUp {
  from {
    opacity: 1;
    max-height: 200px;
  }
  to{
    opacity: 0;
    max-height: 0;
  }
}
.acordion-sep{
  margin-top: 32px;
  border-bottom: 1px solid var(--brand-primary-300);  
}
.bt-info span::before{
  content: url(../icons/bt-mais-info.svg);
}
.bt-info span.ativo::before{
  content: url(../icons/bt-menos-info.svg); 
}
.det-exp-info{
  display: block;
}
.bt-duvidas{
  text-align: center;
  padding-top: 32px;
}
.bt-duvidas p{
  font-size: var(--font-m-24);
  padding-bottom: 16px;
}
.bt-duvidas button{
  display: flex;
  align-items: center;
  color: var(--neutral-primary-10);
  font-size: var(--font-m-24);
  padding: 16px;
  border-radius: 8px;
  background-color: var(--brand-primary-300);
  transition: background 0.2s ease, color 0.2s ease;  
}
.bt-duvidas button:hover {
  color: var(--neutral-primary-10);  
  background-color: var(--brand-primary-400);
}
.bt-width {
  flex: 1; 
  text-align: center;
}

/*Footer*/

footer {  
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 24px;
  background-color: var(--neutral-primary-50);
  margin: 80px auto 0 auto;
  z-index: 99;
 
}
.footer-content {
  margin: 0 auto;
  text-align: center;
}
.footer2-content{
  width: auto;
}
footer h5{
    font-family: "Pero";
    font-size: var(--font-l-30);
    font-weight: 600;
    color: var(--primary-black);
    line-height: 1.6;
    padding-top: 40px;
    margin-bottom: 48px;
}
footer ul{
  margin-top: 80px;  
}
footer ul li{
  text-align: left !important;
  font-weight: 400;
  line-height: 1.6;  
}
footer ul li span {
  font-weight: 700;
}
.link-privacy{
  margin-top: 24px;
}
.link-privacy a {
  color: var(--brand-secondary-300);
  transition: color 0.2s ease;  
}
.link-privacy a:hover {
  color: var(--brand-secondary-400);
}
.cta-bt-footer {
  display: flex;
  align-items: center;
  font-size: var(--font-l-30);
  line-height: 1.5;
  color: var(--neutral-primary-25);
  padding: 24px;
  border-radius: 8px;
  background-color: var(--brand-primary-200);
  transition: background 0.2s ease, color 0.2s ease;  
}
.cta-bt-footer:hover {
  color: var(--neutral-primary-10);  
  background-color: var(--brand-primary-400);
}
.copyright{  
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--brand-primary-300);
  margin: 24px auto 32px auto;
  padding-top: 24px;
  height: 32px;
  width: 100%;
}
.copyright-2 {
  padding-top: 24px;
}
.copyright-2 ul{  
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--brand-primary-300);
  margin: 24px auto 32px auto;
  padding-top: 24px;
  height: 32px;
  width: 100%;
}
.copyright-2 ul{  
  margin-top: 0 !important;
}
.copyright li, .copyright-2 li{
  font-size: var(--font-s-12);
  font-weight: 300;
  padding-bottom: 8px;
}
.copyright li span, .copyright-2 li span{
  font-weight: 300;
}
.copyright li a, .copyright-2 li a{
  display: flex;
  color: var(--brand-primary-300);
}
.copyright li:last-child a span, .copyright-2 li:last-child a span{
  padding: 2px 6px 0 6px;
  transition: margin-top 0.3s ease; 
}
.copyright li a span:hover, .copyright-2 li a span:hover {
  margin-top: -3px; 
  color: var(--brand-secondary-300);
}

/*PAGINAS INTERNAS*/

.heading{
  width: auto;
  margin-top: 104px;
}
.heading-container{
  display: flex;
  flex-wrap: wrap;
}
.heading-content{
  padding: 0 16px 40px 16px;
  width: 100%;
}
.heading h1{
  font-family: "Pero";
  text-align: right;
  color: var(--primary-black);
  font-size: var(--font-x-48);
  font-weight: 600;
  margin-bottom: 40px;
  padding-right: 16px;
}
.h-psy h1:before , .h-terap h1:before, .h-event h1:before, .h-privacy h1:before, .h-privacy h1 span:before {
  content: '';
  background-color: var(--neutral-secondary-50);
  position: absolute;
  margin-top: 32px;
  height: 32px;
  z-index: -2;
}
.h-terap h1:before {
  width: 192px;
  margin-left: -13px;
}
.h-psy h1:before{
  width: 264px;
  margin-left: -13px;
}
.heading h2, h3{
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
.heading h2{
  font-size: var(--font-l-32);
  margin-bottom: 24px;
}
.heading h3{
  font-size: var(--font-m-20);
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}
.p-titles h2, h3{
  font-family: "Lato", sans-serif;
  font-size: var(--font-l-32);
  font-weight: 300;
}

.p-title-2 h4{
  font-family: "Lato", sans-serif;
  font-size: var(--font-m-20);
  font-weight: 400;
  margin-bottom: 24px;
}
.p-title-2 h4::before{
  content: " ";
  display: flex;
  float: left;
  border-left: 6px solid var(--brand-primary-300);
  margin-top: 5px;
  margin-right: 8px;
  height: 16px;
}
.copy > blockquote{
  font-size: var(--font-m-16);
  font-weight: 300;
  line-height: 1.6;
  color: var(--brand-primary-400);
  padding: 16px 32px;
  background-color: var(--brand-primary-100);
  border-radius: 0 40px 0 0;
}
.p-terap-2 p{
  font-size: var(--font-m-20);
}

/*terapia*/
.p-terap h5, .p-psy h5{
  font-size: var(--font-m-24);
  line-height: 1.6;
  font-weight: 300;
  padding-bottom: 40px;
}
.p-titles span::before, .p-psy h2 span::before{
  content: '';
  background-color: var(--brand-primary-100);
  position: absolute;
  height: 16px;
  z-index: -2;
}
.p-terap span:first-child::before{
  margin-top: 25px;
  margin-left: -1px;
  width: 67px;
}
.p-terap span:nth-child(2)::before{
  margin-top: 25px;
  margin-left: -158px;
  width: 236px;
}
.p-terap span:last-child::before{
  margin-top: 64px;
  margin-left: -231px;
  width: 154px;
}
.copy-compas p{
  font-size: var(--font-m-20);
}
.content > blockquote{
  font-size: var(--font-m-16);
  font-weight: 300 ;
  line-height: 1.6;
  color: var(--brand-primary-400);
  padding: 16px 32px;
  background-color: var(--brand-primary-100);
  border-radius: 0 40px 0 0;
}
.cog-img{
  text-align: center;
  margin: 16px 0;
}
/*foto copy-trilha mobile*/
.cog-img img:last-child{
  width: 80%;

}
/*slogan*/
.slogan-terap{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 80px auto;
  width: calc(100% - 32px);
  max-width: 351px;
  padding: 0 16px;
}
.slogan-terap h4{
  font-family: "Pero";
  font-size: var(--font-m-28);
  font-weight:600;
  color: var(--brand-secondary-300);
  line-height: 1.6;
  padding-top: 40px;
}
 .slogan-terap h4 span:first-child::before, .slogan-terap h4 span:nth-child(2)::before, .slogan-terap h4 span:last-child::before {
  content: '';
  display: inline;
  position: absolute;
  height: 18px;
  background-color: var(--brand-primary-100);
  z-index: -2;
}
.slogan-terap h4 span:first-child::before {
  margin-top: 25px;
  margin-left: -1px;
  width: 181px;
}
.slogan-terap h4 span:nth-child(2)::before {
  margin-top: 70px;
  margin-left: -305px;
  width: 309px;
}
.slogan-terap h4 span:last-child::before {
  display: block;
}

/*Alert*/
.attention ul li span::before{
  content: '';
  position: absolute;
  background-color: var(--brand-primary-100);
  margin-top: 24px;
  margin-left: -14px;
  width: 146px;
  height: 19px;
  z-index: -1;
}
.attention ul li:first-child{
  font-size: var(--font-l-32);
  font-weight: 400;
  padding-bottom: 24px;
}
.attention ul li:last-child{
  font-size: var(--font-m-20);
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 20px;
}
.attention p{
  font-size: var(--font-m-20);
  font-weight: 300;
  line-height: 1.6;
}
.attention{
  width: auto;
  position: relative;
  text-align: center;
  background-color: var(--brand-secondary-100);
  padding: 16px 24px;
  margin-top: 80px;
  margin-bottom: 24px;
  z-index: -9;
}

/*psicologa page*/
.heading-psy-m h4, .heading-psy-m h5 {
  display: block;
  float: right;
  margin-right: 20px;
  padding: 4px 8px;
  font-size: var(--font-m-20);
  font-weight: 300;
  color: var(--neutral-primary-10);
  background: var(--brand-primary-400);
}
.heading-psy-m h4{
  margin-top: -72px;
}
.heading-psy-m h5{
  display: block !important;
  margin-right: 20px;
  margin-top: -35px;
}
.heading-psy-m img{
  float: right;
  width: 80%;
  margin-top: 0;
  margin-right: -16px;
}
.title-3 h3 {
  font-family: "Pero";
  font-size: var(--font-l-32);
  color: var(--primary-black);
  font-weight: 600;
  line-height: 1.4;
  padding-bottom: 40px;
}
.p-psy h2 span:first-child::before{
  margin-top: 24px;
  margin-left: -1px;
  width: 249px;
}
.p-psy h2 span:last-child::before{
  margin-top: -17px;
  margin-left: -177px;
  width: 80px;
}
.psy-photos-m{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  width: 100%;
}
.psy-photos-m img{
  width: 99%;
}
.psy-photos-m ul:first-child li:first-child, .psy-photos-m ul:last-child li:last-child {
  font-size: 0.75rem;
  text-align: center;
  font-weight: 300;
  color: var(--neutral-secondary-10);
  padding: 4px;
  background-color: var(--brand-secondary-300);
}
.psy-photos-m ul:first-child li:first-child {
  width: auto;
  padding: 4px;
  margin-bottom: 8px;
}
.psy-photos-m ul:last-child li:last-child{
  width: auto;
  padding: 4px;
  margin-top: 8px;
}
.p-psy-abrdm-ajst {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.copy-mind{
  margin: 48px 0;
}
.ord-1{
  order: 1;
}
.ord-2{
  order: 2;
}
.p-title-3 h3, .p-title-3 h4{
  font-weight: 400;
}
.p-title-3 h3 {
  font-size: var(--font-l-32);
}
.p-title-3 h4 {
  font-size: var(--font-m-24);
}
.p-title-3 h5 {
  font-size: var(--font-m-20);
  color: var(--brand-primary-300);
}
.p-title-3 h5::before {
  content: "•";
  margin-right: 8px;  
}
.psy-form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.psy-form p{
  padding-bottom: 0;
}
.psy-form-2 img:last-child{
  padding-top: 80px;
  margin-left: -15px;
  display: none;
}
.psy-form-3 img:last-child{
  padding-top: 80px;
  margin-left: -15px;
}

/*EVENTS*/

.events-hide{
  display: none;
}
.past-events a{
  display: block;
  color: var(--brand-secondary-300);
  font-weight: 600;
  margin-bottom: 24px;

}
.show-no-events{
  display: block;
}
/*alert no events*/
.heading h6 {
  display: none;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  color: var(--brand-primary-400);
  font-size: var(--font-m-16);
  padding: 8px 16px;
  font-weight: 300;
  border-radius: 0 8px 0 8px;
  background-color: var(--brand-primary-100);
}
.heading h6 img{
  width: 24px;
}
.event-container{
  margin: 80px 0;
}
.h-event h1:before {
  width: 191px;
  margin-left: -6px;
}
.event-container{
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin: 40px 0;
}
.scheduling{
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 2px;
  margin-right: 20px;
}
.scheduling ul{
  padding: 0 12px;
  color: var(--neutral-secondary-10);
  background: var(--brand-secondary-400);
}
.scheduling ul:first-child{
  border-radius: 8px 0 0;  
}
.scheduling ul:last-child{
  border-radius: 0 0 8px;  
}
.scheduling ul li{
 text-align: center; 
}
.scheduling ul:first-child li:first-child{
  font-size: var(--font-l-40);
}
.scheduling ul:first-child li:last-child{
  font-size: var(--font-s-14);
  font-weight: 300;
  text-transform: uppercase;
  padding-bottom: 8px;
}
.scheduling ul:last-child {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
.scheduling ul:last-child li {
  padding: 4px 2px;
}
.scheduling ul:last-child li img{
  padding-top: 2px;
}
.event-container h4{
  font-size: var(--font-m-24);
  line-height: 1.4;
  font-weight: 300;
  width: 69%;
}
.event-container h4 span{
  font-weight: 600;
}
.past-events  {
  padding-top: 0 !important;
}
.past-events-cont{
  margin-bottom: 40px;
  border-bottom: 1px solid var(--brand-primary-400);
}
.hide-border{
  border-bottom: none !important;
}
.event-details, .past-events  {
  font-size: var(--font-m-20);
  font-weight: 300;
  padding-top: 32px;
}
.past-events ul{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 40px;
}
.event-details ul li:first-child{
  line-height: 1.4;
  padding-bottom: 24px;
  padding-top: 4px;
}
.event-details ul li span, .past-events ul li span{
  font-weight: 400;  
}
.event-details ul li:last-child{
  padding-bottom: 32px;
}
.past-events h4 {
  font-size: var(--font-m-24);
  margin-bottom: 24px;
}
.past-events h4 span{
  font-weight: 400;
}
.t-past-events h3{
  font-size: var(--font-l-30) !important;
  font-weight: 400;
}
.event-phts {
  padding-bottom: 40px;
}
.event-phts h5 {
  font-size: var(--font-m-24);
  font-weight: 400;
  padding-bottom: 24px;
}
.event-phts ul{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;  
}
.phts-container img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  cursor: pointer;
}
.bt-m-secondary button {
  display: flex;
  align-items: center;
  color: var(--neutral-secondary-10);
  font-size: var(--font-m-24);
  font-weight: 400;
  padding: 16px 24px;
  border-radius: 8px;
  background-color: var(--brand-secondary-300);;
  transition: background-color 0.3s ease;
}
.bt-m-secondary button:hover {
  color: var(--brand-secondary-400);
  border: 1px solid var(--brand-secondary-400);
  background-color: var(--neutral-secondary-10);
  transition: color 0.2s ease, background-color 0.3s ease;
}
/*POLITICA PRIVACIDADE*/
.h-privacy h1:before {
    width: 235px;
    margin-top: 27px;
    margin-left: -5px;
}
.h-privacy h1 span:before {
  width: 259px;
  margin-top: 92px;
  margin-left: -243px;
}

/*CHURN*/

    .heading-churn h1 {
        margin-bottom: 8px !important;
    } 

.psy-form-churn{
  display: flex;
  flex-direction: column;
}
.psy-form p{
  padding-bottom: 0;
}

.psy-form-churn > label{
  padding-bottom: 8px;
}

.psy-form-churn > input{
  margin-bottom: 24px;
}

.psy-form-churn > select{
  margin-bottom: 24px;
}

.heading-churn {
    width: auto;
    margin-top: 48px;
}

.heading-churn h1{
  font-family: "Pero";
  text-align: right;
  color: var(--primary-black);
  font-size: var(--font-x-48);
  font-weight: 600;
  margin-bottom: 40px;
  padding-right: 16px;
}

.btn-churn {
  display: flex;
  align-items: center;
  font-size: var(--font-l-30);
  color: var(--neutral-primary-25);
  padding: 24px;
  border-radius: 8px;
  margin-top: 48px;
  background-color: var(--brand-primary-200);
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-churn button:hover {
  color: var(--neutral-primary-10);
  background-color: var(--brand-primary-300)
}

