@charset "UTF-8";
/*
@font-face {
  font-family: "ProximaNova-Bold";
  src: url("../webfonts/ProximaNova-Bold.woff2") format("woff2"),
       url("../webfonts/ProximaNova-Bold.woff") format("woff");
	font-weight: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

$ProximaNova-Bold: 'ProximaNova-Bold', sans-serif;
*/
html {
  scroll-behavior: smooth;
}

body {
  background-color: #F5F5F5;
  color: #1E1E1E;
}
@media (max-width: 640px) {
  body {
    background-image: none;
  }
}

#banner {
  width: 100vw;
  height: 100vh;
  background-image: url("../images/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.banner-text {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .banner-text {
    text-align: center;
  }
}
.banner-text h1 {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  font-size: 35px;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .banner-text h1 {
    font-size: 25px;
  }
}
.banner-text p {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  font-size: 17px;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .banner-text p {
    font-size: 17px;
  }
}

/*costum btn*/
/* Estiliza o container do botão */
.custom-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-btn .text {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  font-size: 17px;
}
@media (max-width: 640px) {
  .custom-btn .text {
    font-size: 17px;
  }
}

/* Estiliza o botão */
.custom-btn button {
  display: flex;
  align-items: center;
  gap: 10px; /* Espaço entre a seta e o texto */
  background: rgba(136, 136, 136, 0.59);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Ícone da seta */
.custom-btn .icon {
  background: linear-gradient(135deg, #5cf0a4, #2ea97b);
  width: 40px;
  height: 24px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Estiliza a seta (Font Awesome) */
.custom-btn .icon i {
  color: white;
  font-size: 18px;
}

/* Efeito de hover */
.custom-btn button:hover {
  background: linear-gradient(135deg, #1b4a40, #2ea97b);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Efeito hover na seta */
.custom-btn button:hover .icon {
  background: linear-gradient(135deg, #2ea97b, #5cf0a4);
}

/*stats box*/
#stats {
  margin: 100px 0;
}
@media (max-width: 640px) {
  #stats {
    display: none;
  }
}

.stats-box {
  text-align: center;
}
.stats-box_numbers {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  color: #2DDF82;
  font-size: 35px;
}
.stats-box_text {
  font-size: 15px;
  color: #1E1E1E;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.info {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
}
.info h2 {
  font-weight: 700;
  font-style: normal;
  color: #1E1E1E;
  display: inline-block;
  position: relative;
  /* Linha abaixo do texto */
}
@media (max-width: 640px) {
  .info h2 {
    font-size: 25px;
    margin-top: 30px;
    text-align: center;
  }
}
.info h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* Distância da linha em relação ao texto */
  width: 40%; /* Ajuste o comprimento da linha */
  height: 4px; /* Espessura da linha */
  background: #5cf0a4; /* Cor da linha */
  border-radius: 2px;
}
@media (max-width: 640px) {
  .info h2::after {
    bottom: -10px; /* Distância da linha em relação ao texto */
    width: 100%; /* Ajuste o comprimento da linha */
  }
}
.info p {
  font-weight: 300;
  font-style: normal;
  color: #1E1E1E;
  margin-top: 20px;
  font-size: 18px;
}
.info .custom-list {
  list-style: none; /* Remove o bullet padrão */
}
.info .custom-list li {
  display: flex;
  align-items: center; /* Centraliza verticalmente */
}
.info .custom-list li::before {
  content: "-";
  margin-right: 10px;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  color: #2DDF82;
  font-family: "Montserrat", serif;
  font-weight: 900;
  font-optical-sizing: auto;
}

.producao h2 {
  position: relative;
  text-transform: uppercase;
  text-align: center;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: #1E1E1E;
  font-size: 97px;
  margin-bottom: 120px;
  margin-top: 30px;
}
@media (max-width: 640px) {
  .producao h2 {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 35px;
  }
}
.producao h2 svg.seta-esquerda {
  position: absolute;
  bottom: -138px;
  left: 67px;
}
@media (max-width: 640px) {
  .producao h2 svg.seta-esquerda {
    display: none;
  }
}
.producao h2 svg.seta-direita {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 640px) {
  .producao h2 svg.seta-direita {
    width: 134px;
    bottom: -32px;
  }
}
.producao-img h6 {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: #1E1E1E;
  font-size: 32px;
  margin-top: 90px;
}
@media (max-width: 640px) {
  .producao-img h6 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
  }
}
.producao-info {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  padding-top: 25px;
}
.producao-info h6 {
  font-weight: 900;
  font-style: normal;
  color: #1E1E1E;
  font-size: 37px;
  margin-top: 90px;
}
@media (max-width: 640px) {
  .producao-info h6 {
    font-size: 26px;
    margin-top: 50px;
    text-align: center;
  }
}
.producao-info p {
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
}
@media (max-width: 640px) {
  .producao-info p {
    font-size: 18px;
    text-align: center;
  }
}
.producao-info p span {
  font-weight: 900;
  font-style: normal;
  color: #2DDF82;
}
.producao-info p.termos {
  font-size: 22px;
}
.producao-info p.termos span {
  color: #2DDF82;
}
.producao-img img {
  border-radius: 18px;
}

/*LOBBY*/
#lobby {
  overflow: hidden;
  margin-bottom: 80px;
}
@media (max-width: 640px) {
  #lobby {
    margin-bottom: 50px;
  }
}

.lobby {
  position: relative;
  margin: 200px 0 100px;
}
@media (max-width: 640px) {
  .lobby {
    margin: 30px 0 50px;
  }
}
.lobby p.sub-title {
  text-align: center;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-size: 65px;
  color: #1E1E1E;
  font-weight: 700;
  font-style: normal;
}
.lobby p.sub-title span {
  position: relative;
}
@media (max-width: 640px) {
  .lobby p.sub-title {
    font-size: 25px;
    text-align: center;
  }
}
.lobby p.sub-text {
  text-align: center;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-size: 22px;
  color: #1E1E1E;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 640px) {
  .lobby p.sub-text {
    font-size: 18px;
  }
}
.lobby p.sub-text span {
  font-weight: bold;
}
.lobby img {
  position: absolute;
  top: 100px;
  right: -300px;
}

/* Customização das setas */
.swiper-container-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.custom-button {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(144, 238, 144, 0.4) 20%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease-in-out;
}

/* Setas específicas */
.swiper-button-next {
  right: -55px;
}
@media (max-width: 640px) {
  .swiper-button-next {
    right: 0;
  }
}

.swiper-button-prev {
  left: -55px;
}
@media (max-width: 640px) {
  .swiper-button-prev {
    left: 0;
  }
}

/* Ícone das setas */
.custom-button i {
  color: black;
  font-size: 24px;
}

/* Efeito hover */
.custom-button:hover {
  background: radial-gradient(circle, rgba(144, 238, 144, 0.7) 20%, rgba(255, 255, 255, 0) 70%);
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "";
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "";
}

.custom-button {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(144, 238, 144, 0.4) 20%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease-in-out;
}

/* Adicione a imagem como camada superior, sem remover o gradiente */
.custom-button::after {
  content: "";
  width: 19px;
  height: 19px;
  background-image: url("../images/arrow_gallery.png"); /* Certifique-se de que o caminho está correto */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Direção da seta */
.custom-button.swiper-button-prev {
  transform: translateY(-50%) rotate(180deg); /* Seta para a esquerda */
}

/*FALTA*/
section#falta {
  background-color: #2DDF82;
  padding: 50px 0;
  overflow: hidden;
}
section#falta .sub-title {
  text-align: center;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-size: 65px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 640px) {
  section#falta .sub-title {
    font-size: 22px;
  }
}
section#falta .sub-text {
  text-align: center;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-size: 22px;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 640px) {
  section#falta .sub-text {
    font-size: 16px;
  }
}
section#falta .falta-text {
  text-align: left;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
}
section#falta .falta-text h3 {
  font-size: 35px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 640px) {
  section#falta .falta-text h3 {
    font-size: 22px;
  }
}
section#falta .falta-text p {
  font-size: 22px;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 640px) {
  section#falta .falta-text p {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  section#falta .falta-text {
    text-align: center;
  }
}
section#falta .falta-img {
  display: flex;
}
section#falta .falta-img-single {
  border-radius: 33px;
  overflow: hidden;
}
section#falta .falta-img-single:nth-child(2) {
  margin: 0 20px;
}

section#auditorio {
  margin: 100px 0 70px;
}
@media (max-width: 640px) {
  section#auditorio {
    margin: 65px 0 40px;
  }
}
section#auditorio .auditorio-title {
  text-align: left;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-size: 82px;
  color: #1E1E1E;
  font-weight: 900;
  font-style: italic;
}
@media (max-width: 640px) {
  section#auditorio .auditorio-title {
    font-size: 35px;
  }
}
section#auditorio .auditorio_img {
  display: flex;
  justify-content: flex-end;
}

.accordion-title {
  text-align: left;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-size: 33px;
  color: #1E1E1E;
  font-weight: 600;
  font-style: italic;
}

.accordion-content {
  text-align: left;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 22px;
  background: transparent;
  border: none;
  border-left: 1px solid #2DDF82;
  margin-left: 20px;
  padding: 0 0 0 20px;
}
@media (max-width: 640px) {
  .accordion-content {
    font-size: 18px;
  }
}

section#form {
  background-color: #1E1E1E;
}
section#form .form-text ul {
  list-style: none;
  line-height: 1;
}
section#form .form-text ul li {
  text-transform: uppercase;
  text-align: left;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}
section#form .form-text ul li:first-child {
  font-weight: 700;
}
@media (max-width: 640px) {
  section#form .form-text ul li {
    text-align: center;
    font-size: 30px;
  }
}
section#form .wpcf7-response-output {
  border-color: #2DDF82;
  color: white;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 16px;
}

section#form {
  padding: 60px 0;
  /* Seleciona inputs de vários tipos */
}
@media (max-width: 640px) {
  section#form {
    padding: 30px 0;
  }
}
section#form .form-2column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 640px) {
  section#form .form-2column {
    grid-template-columns: 1fr;
  }
}
section#form label {
  color: #787878;
  text-align: left;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.54px;
}
section#form label span {
  color: #2DDF82;
  margin-left: 5px;
}
section#form label span a {
  color: #fff;
}
@media (max-width: 640px) {
  section#form label {
    font-weight: 700;
    font-size: 18px;
  }
}
section#form input[type=color],
section#form input[type=date],
section#form input[type=datetime-local],
section#form input[type=email],
section#form input[type=month],
section#form input[type=number],
section#form input[type=password],
section#form input[type=search],
section#form input[type=tel],
section#form input[type=text],
section#form input[type=time],
section#form input[type=url],
section#form input[type=week],
section#form textarea {
  background: transparent;
  border-bottom: 1px solid #2DDF82;
  box-shadow: none;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  color: white;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}
section#form textarea {
  height: 100px;
}
section#form input[type=button],
section#form input[type=submit] {
  text-transform: uppercase;
  text-align: left;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 15px;
  color: #1E1E1E;
  background-color: #2DDF82;
  padding: 10px 20px;
}

#espacos {
  padding: 20px 0;
}

.swiper-espacos .swiper-slide {
  border-radius: 18px;
  background-color: #fff;
  overflow: hidden;
}
.swiper-espacos .swiper-slide h6 {
  text-align: left;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-size: 22px;
  color: #1E1E1E;
  font-weight: 900;
  margin: 70px 20px 20px 20px;
}
@media (max-width: 640px) {
  .swiper-espacos .swiper-slide h6 {
    margin: 40px 20px 15px 20px;
    font-size: 22px;
  }
}
.swiper-espacos .swiper-slide p {
  color: #1E1E1E;
  text-align: left;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 15px;
  margin: 0 20px 20px 20px;
}
@media (max-width: 640px) {
  .swiper-espacos .swiper-slide p {
    font-size: 18px;
  }
}

/* Container do formulário */
.custom-email-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 5px 15px;
  width: 320px;
  position: relative;
  background-image: URL("/wp-content/themes/meowlp/assets/images/green_btn.png");
}
.custom-email-form .wpcf7-not-valid-tip {
  position: absolute;
  white-space: nowrap;
  margin: 10px auto;
}

/* Estiliza o input de email */
.custom-email-form input[type=email] {
  flex: 1; /* Ocupa o espaço disponível */
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  padding: 10px 15px;
  font-family: Arial, sans-serif;
}

/* Placeholder estilizado */
.custom-email-form input[type=email] {
  flex: 1;
  border: none;
  outline: none; /* Remove o contorno azul ao clicar */
  background: transparent;
  color: #fff;
  font-size: 16px;
  padding: 10px 15px;
  font-family: Arial, sans-serif;
}

/* Remove a borda e o highlight ao focar no input */
.custom-email-form input[type=email]:focus {
  border: none;
  outline: none;
  box-shadow: none; /* Remove qualquer sombra no foco */
}

.custom-email-form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.custom-email-form input[type=email] {
  margin: 5px;
}

/* Botão de envio (ícone do avião) */
.submit-btn {
  background: #fff;
  border: none;
  outline: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-left: 10px; /* Adiciona um pequeno espaçamento */
  flex-shrink: 0; /* Evita que o botão encolha */
}

/* Estiliza o ícone do Font Awesome */
.submit-btn i {
  color: #000;
}

/* Efeito hover */
.submit-btn:hover {
  background: #ccc;
}

.submit-btn:hover i {
  color: #fff;
}

.custom-email-form p {
  display: flex;
  flex-direction: row;
  margin: 0;
  align-items: center;
}

#footer {
  background-color: #1E1E1E;
  color: #fff;
}
#footer h3 {
  text-transform: uppercase;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-size: 60px;
  color: #fff;
  margin: 80px auto 60px;
}
@media (max-width: 640px) {
  #footer h3 {
    font-size: 25px;
    margin: 60px auto 40px;
  }
}

.newsletter {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.newsletter .wpcf7-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.newsletter .wpcf7 input[type=email] {
  text-transform: uppercase;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 12px;
}
.newsletter .wpcf7 form.invalid .wpcf7-response-output, .newsletter .wpcf7 form.unaccepted .wpcf7-response-output, .newsletter .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #2DDF82;
}

ul.social {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
  margin: 0;
}
@media (max-width: 640px) {
  ul.social {
    justify-content: center;
    margin: 10px 0 40px;
  }
}

ul.morada {
  list-style: none;
  margin: 120px auto;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-size: 10px;
  color: #fff;
}
@media (max-width: 640px) {
  ul.morada {
    margin: 40px auto;
  }
}

ul.contactos {
  list-style: none;
  margin: 120px auto;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-size: 10px;
  color: #fff;
}
@media (max-width: 640px) {
  ul.contactos {
    margin: 0px auto 40px;
  }
}

p.copyright {
  text-align: center;
  margin-bottom: 34px;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-size: 10px;
  color: #fff;
}

svg.line1 {
  fill: none;
  position: absolute;
  top: -37px;
  left: -31px;
  stroke: #000;
  stroke-width: 2px;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  fill: transparent;
}
svg.line1.is-active {
  animation: animate 2s forwards;
}
@media (max-width: 640px) {
  svg.line1 {
    top: -15px;
    left: -15px;
  }
}

@keyframes animate {
  to {
    stroke-dashoffset: 0;
  }
}
/*-------------------------------*/
.p-relative {
  position: relative;
}

@media (max-width: 640px) {
  h2.section-title {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  h2.section-title span {
    margin-left: 140px;
  }
}

p.section-paragraph {
  font-size: 18px;
}
@media (max-width: 640px) {
  p.section-paragraph {
    font-size: 18px;
    margin-top: 1rem;
  }
}

.wedo-title,
.why-title,
.form-title {
  font-size: 40px;
}
@media (max-width: 640px) {
  .wedo-title,
  .why-title,
  .form-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .form-title {
    margin-bottom: 50px;
  }
}

section#logos {
  margin-top: 100px;
  margin-bottom: 100px;
}

.btn {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 17px;
  white-space: nowrap;
  transition: 0.3s ease-in;
}
.btn:hover {
  background-color: #2DDF82;
}
.btn a {
  padding: 5px 10px;
  color: #1E1E1E;
}

#btn-logos__mais span {
  border-bottom: 1px solid #2DDF82;
  padding-bottom: 2px;
  display: inline-block;
  padding-bottom: 2px;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
}
#btn-logos__menos span {
  border-bottom: 1px solid #2DDF82;
  padding-bottom: 2px;
  display: inline-block;
  padding-bottom: 2px;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
}
#btn-logos_mais_desktop span {
  border-bottom: 1px solid #2DDF82;
  padding-bottom: 2px;
  display: inline-block;
  padding-bottom: 2px;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
}
#btn-logos_menos_desktop span {
  border-bottom: 1px solid #2DDF82;
  padding-bottom: 2px;
  display: inline-block;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
}

.main-info__btn {
  margin: 80px 0 200px;
  background-color: #2DDF82;
  border: none;
}
@media (max-width: 640px) {
  .main-info__btn {
    margin: 20px 0 0;
    background: #f2f2f2;
    border: 1px solid black;
    color: black;
  }
}
.main-info__btn a.btn__pedir {
  margin: 29px 20px;
  line-height: 2;
  color: #fff;
  font-size: 20px;
  line-height: 2;
}
@media (max-width: 640px) {
  .main-info__btn a.btn__pedir {
    color: black;
  }
}
.main-info__btn.informacao_btn {
  margin: 100px 0 100px 0;
}

.events {
  display: flex;
  flex: 0 1 0;
  flex-direction: row;
  align-items: flex-start;
  border-radius: 15px;
  padding: 10px;
  margin: 20px 0;
}
@media (max-width: 640px) {
  .events {
    flex-direction: column;
  }
}

.logos {
  margin-bottom: 50px;
  display: flex;
}
.logos__box {
  padding: 10px 20px;
}
.logos__box_info {
  height: 100%;
  border-left: 1px solid #2DDF82;
}
.logos__box_info::before {
  content: "";
}
.logos__box__info {
  padding-left: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.logos__box__info img {
  width: 30px;
  height: 30px;
}
.logos-img {
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: 0.3s ease-in;
}
.logos-img:hover {
  filter: brightness(0) saturate(100%) invert(71%) sepia(63%) saturate(502%) hue-rotate(90deg) brightness(91%) contrast(95%);
}

.informacao {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: flex-start;
  justify-content: space-evenly;
}
@media (max-width: 640px) {
  .informacao {
    flex-direction: column;
    align-items: center;
  }
}
.informacao-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.informacao-numeros span {
  display: flex;
  align-items: center;
  flex-direction: row;
  font-size: 50px;
  color: #2DDF82;
  font-weight: bold;
}
.informacao-numeros h4 {
  font-size: 72px;
  color: #2DDF82;
  font-weight: bold;
}
.informacao-nome {
  font-size: 18px;
  text-align: center;
}

.galeria {
  overflow: hidden;
  transform: scale(0.6);
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .galeria {
    transform: scale(1);
  }
}
.galeria a.width-50 {
  width: 50%;
  display: inline-block;
}
@media (max-width: 640px) {
  .galeria a.width-50 {
    width: 100%;
  }
}
.galeria a.width-40 {
  width: 31%;
  display: inline-block;
}
@media (max-width: 640px) {
  .galeria a.width-40 {
    width: 100%;
  }
}
.galeria a.width-60 {
  width: 69%;
  display: inline-block;
}
@media (max-width: 640px) {
  .galeria a.width-60 {
    width: 100%;
  }
}
.galeria a {
  position: relative;
  border: 5px solid #F5F5F5;
  overflow: hidden;
}
@media (max-width: 640px) {
  .galeria a {
    max-height: 200px;
    min-height: 200px;
  }
}
.galeria a:hover > img {
  transition: 0.5s ease-in;
  height: 110%;
}
.galeria a img {
  object-fit: cover;
  transition: 0.5s ease-in;
  width: 100%;
  height: 100%;
}
.galeria-box {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}
.galeria-box-center {
  transform: translateY(-210px);
  overflow: hidden;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 640px) {
  .galeria-box-center {
    transform: translateY(0);
  }
}
.galeria-box__nome {
  font-size: 48px;
  color: #fff;
}
@media (max-width: 640px) {
  .galeria-box__nome {
    font-size: 28px;
  }
}
.galeria-box__descricao {
  font-size: 18px;
  color: #fff;
}
@media (max-width: 640px) {
  .galeria-box__descricao {
    font-size: 8px;
  }
}
.galeria-box:hover > .galeria-box-center {
  transform: translateY(0);
  transition-timing-function: ease-in;
  transition: 0.2s;
}

.why {
  height: 100%;
  border-left: 1px solid #2DDF82;
  margin: 10px 0;
}
.why-title span {
  position: relative;
}
.why__box {
  font-size: 21px;
  padding-left: 20px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.why__box img {
  width: 30px;
  height: 30px;
}

.accordion {
  background-color: transparent;
}

.accordion-title {
  font-size: 32px;
  border: none;
  color: #1E1E1E;
}
@media (max-width: 640px) {
  .accordion-title {
    font-size: 22px;
  }
}

.accordion-content {
  background: transparent;
  border: none;
  border-left: 1px solid #2DDF82;
  margin-left: 20px;
  padding: 0 0 0 20px;
}
.accordion-content:last-child {
  border-bottom: none;
}

a.accordion-title:focus,
a.accordion-title:hover {
  background-color: transparent;
  color: #1E1E1E;
}

:last-child > .accordion-content:last-child {
  border-bottom: none;
}

:last-child:not(.is-active) > .accordion-title {
  border-bottom: none;
}

.wedo_img {
  text-align: right;
}
@media (max-width: 640px) {
  .wedo_img {
    display: none;
  }
}
.wedo_img img {
  max-width: 350px;
}

.form {
  background: linear-gradient(56deg, rgb(214, 209, 209) 0%, rgba(255, 255, 255, 0.5564819678) 24%, rgb(255, 255, 255) 100%);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #F5F5F5;
  border-radius: 15px;
  padding: 20px 40px;
}
.form-title span {
  position: relative;
}
.form-box {
  position: relative;
}
.form-img {
  position: absolute;
  top: 25px;
  left: 50px;
}
@media (max-width: 640px) {
  .form-img {
    display: none;
  }
}

div.wpforms-container-full input[type=date], div.wpforms-container-full input[type=datetime], div.wpforms-container-full input[type=datetime-local], div.wpforms-container-full input[type=email], div.wpforms-container-full input[type=month], div.wpforms-container-full input[type=number], div.wpforms-container-full input[type=password], div.wpforms-container-full input[type=range], div.wpforms-container-full input[type=search], div.wpforms-container-full input[type=tel], div.wpforms-container-full input[type=text], div.wpforms-container-full input[type=time], div.wpforms-container-full input[type=url], div.wpforms-container-full input[type=week], div.wpforms-container-full select, div.wpforms-container-full textarea {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #F5F5F5 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background-color: transparent !important;
}

.wpforms-field-label {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 12px !important;
}

div.wpforms-container-full input[type=submit], div.wpforms-container-full button[type=submit], div.wpforms-container-full .wpforms-page-button {
  background-color: #2DDF82 !important;
  color: #1E1E1E !important;
  border-radius: 17px !important;
  font-size: 20px !important;
}

.wpforms-submit-container {
  text-align: right;
}

svg.line2 {
  position: absolute;
  width: 190px;
  top: -16px;
  left: -16px;
  fill: transparent;
  stroke: #2DDF82;
  stroke-width: 2px;
  stroke-dasharray: 452;
  stroke-dashoffset: 452;
}
svg.line2.is-active {
  animation: animate 2s forwards;
}
@media (max-width: 640px) {
  svg.line2 {
    width: 160px;
  }
}

@keyframes animate2 {
  to {
    stroke-dashoffset: 904;
  }
}
h2.footer {
  font-size: 32px;
  color: #1E1E1E;
}

.span-title {
  font-size: 14px;
  color: #B6B6B6;
}

.p-title {
  font-size: 14px;
  color: #1E1E1E;
}
.p-title a {
  color: #000;
}

ul.menu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
ul.menu li a {
  color: #1E1E1E;
  line-height: 0.2;
  padding-left: 0px;
}

.menu-1 {
  border-right: 1px solid #2DDF82;
}
@media (max-width: 640px) {
  .menu-1 {
    border: none;
  }
}

.footer-margin-top {
  margin-top: 30px;
}

.footer-copyright a,
.footer-privacidade a {
  color: #2DDF82;
}

#header {
  background: transparent;
}

/*
section#banner{
    background-image: url("../images/background-desktop-lp.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding-top: 100px;
    @include sm{
        padding: 0;
        background-image: url("../images/background_mobile-lp.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        }
}*/
.main-info__descricao {
  margin-top: 100px;
  line-height: 1.3;
  font-size: 36px;
  color: #1E1E1E;
}
@media (max-width: 640px) {
  .main-info__descricao {
    font-size: 30px;
  }
}
.main-info__destaque {
  margin-top: 60px;
  font-size: 18px;
}
@media (max-width: 640px) {
  .main-info__destaque {
    display: none;
  }
}
.main-info__especialidades {
  font-size: 18px;
}
@media (max-width: 640px) {
  .main-info__especialidades {
    display: none;
  }
}
.main-info__especialidades ul.especialidades {
  margin: 0 10px 0 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.main-info__especialidades ul.especialidades li {
  padding-right: 25px;
}

.banner-img {
  position: relative;
}
@media (max-width: 640px) {
  .banner-img {
    max-width: 350px;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: auto;
  }
}
.banner-img_donut {
  position: absolute;
  top: 50%;
  transform: translateY(0);
  z-index: 1;
}
.banner-img_donut img {
  max-width: max-content;
}
@media (max-width: 640px) {
  .banner-img_donut img {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .banner-img_donut {
    position: relative;
  }
}
.banner-img_triangle {
  position: absolute;
  top: 50%;
  transform: translateY(25%);
  z-index: 2;
  mix-blend-mode: screen;
}
@media (max-width: 640px) {
  .banner-img_triangle {
    top: 0;
  }
}
.banner-img_triangle img {
  max-width: max-content;
}
@media (max-width: 640px) {
  .banner-img_triangle img {
    max-width: 100%;
  }
}

.sticker-cell {
  position: absolute;
  top: -120px;
  right: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 640px) {
  .sticker-cell {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
  }
}

.sticker-text {
  width: 100px;
  position: relative;
}

.sticker-arrow {
  position: absolute;
}

.sticker-text img {
  animation: rodar 3s infinite;
  animation-delay: 0s;
}

@keyframes rodar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
html {
  scroll-behavior: smooth;
}

#header {
  background-color: transparent;
  position: fixed;
  z-index: 999;
  width: 100%;
  padding: 20px 0;
  transition: background-color 0.3s ease;
}
@media (max-width: 640px) {
  #header {
    position: absolute;
  }
}

/* Estilo quando o header tem a classe 'scrolled', com background branco */
#header.scrolled {
  background-color: #e7e7e7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Opcional: para adicionar uma sombra */
}

.header-btn {
  display: flex;
  justify-content: flex-end;
}
.header-btn_pdf {
  margin-right: 15px;
}
@media (max-width: 640px) {
  .header-btn_pdf {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
@media (max-width: 640px) {
  .header-btn_proposta {
    display: none;
  }
}

@media (max-width: 640px) {
  .main-menu {
    display: none;
  }
}

section.video a {
  position: relative;
}
section.video .galeria-box-center {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 10px);
  height: auto;
  display: flex;
  flex-direction: row;
}
section.video .galeria-box-center .galeria-box__img svg {
  width: 40px;
}
section.video .galeria-box-center .galeria-box__descricao {
  font-size: 52px;
}

section.video-mobile a img {
  object-fit: cover;
  width: 100%;
}
section.video-mobile .galeria-box-center__video {
  display: flex;
  align-items: center;
}
section.video-mobile .galeria-box-center__video__video {
  display: flex;
}
section.video-mobile .galeria-box__descricao {
  white-space: nowrap;
  font-size: 30px;
  text-transform: uppercase;
  margin: 5px;
}
section.video-mobile .galeria-box__video {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  flex-direction: row;
}
section.video-mobile .galeria-box__img svg {
  width: 40px;
}

#menu-main-menu {
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
}
#menu-main-menu li a {
  font-weight: bold;
  color: #000;
}
#menu-main-menu li a:hover {
  color: #2ddf82;
}
@media (max-width: 1024px) {
  #menu-main-menu {
    gap: 15px;
  }
}

ul.socials-itens {
  margin: 30px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  list-style-type: none;
}
ul.socials-itens li a img {
  height: 30px;
}
ul.socials-itens li:hover img {
  filter: brightness(0) saturate(100%) invert(71%) sepia(63%) saturate(502%) hue-rotate(90deg) brightness(91%) contrast(95%);
}

.logo-meow {
  text-align: right;
}
@media (max-width: 640px) {
  .logo-meow {
    text-align: center;
    margin-top: 30px;
  }
}

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

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

.custom-hr {
  border: none;
  height: 2px;
  background-color: #2DDF82;
  width: 100%;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .text-center-mobile {
    text-align: center;
  }
}

.inf-box-img {
  transition: all 0.3s ease-in-out;
  scale: 1;
}
.inf-box-img:hover {
  scale: 1.05;
}

.full-mobile {
  padding-right: 0;
  padding-left: 0;
}

/*# sourceMappingURL=main.css.map */
