@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-solid-rounded/css/uicons-solid-rounded.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

body {
  background-color: white;
  /* padding: 5px; */
}

header {
  background-color: #0C5A4A;
  /* border-radius: 20px; */
  color: white;
  padding: 0px 1rem;
  position: relative;
  margin: 2px;
  border-radius: 6px;
}

@media (min-width: 420px) {
  header {
    padding: 0px 2rem;
  }
}

@media (min-width: 550px) {
  header {
    padding: 0px 4rem;
  }
}

@media (min-width: 680px) {
  header {
    padding: 0px 6rem;
  }
}

@media (min-width: 1000px) and (max-width: 1299px) {
  header {
    padding: 0px 8rem;
  }
}

@media (min-width: 1300px) {
  header {
    padding: 1rem 8rem;

    height: 99.4vh;
  }
}

@media (min-width: 1500px) {
  header {
    padding: 1rem 15rem;
  }
}

@media (min-width: 1800px) {
  header {
    padding: 1rem 18rem;
    /* height: auto; */
  }
}

p {
  font-size: 1rem;
}

@media (min-width: 1800px) {
  p {
    font-size: 1.1rem !important;
  }
}


@media (min-width: 1800px) {
  p {
    font-size: 1.1rem !important;
  }
}

.navbar {
  display: none;
}
@media screen and (min-width: 1300px) {
/* Estilos da barra de navegação */
  .navbar {
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0rem;
    background-color: #0C5A4A;
    color: white;
  }
}

.navigation {
  display: none;
}


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

header {
  padding-top: 110px;
}
.navigation {
  z-index: 500;
  pointer-events: none;
  position: fixed;
  inset: 0;
  display: block;
}

.navigation__dark-bg {
  opacity: 0;
  pointer-events: auto;
  visibility: hidden;
  background-color: #000;
  position: absolute;
  inset: 0;
}

.navigation__dark-bg {
  transition: all 0.7s cubic-bezier(0.5, 0.5, 0, 1);
}

[data-navigation-status="active"] .navigation__dark-bg {
  opacity: 0.15;
  visibility: visible;
}

.centered-nav {
  border-radius: .75em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 30em;
  display: flex;
  position: absolute;
  top: 2em;
  left: 50%;
  transform: translate(-50%);
}

.centered-nav__bg {
  background-color: #fff;
  border-radius: .75em;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.centered-nav__header {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  padding: 1.25em 1.5em 1.25em 1.625em;
  display: flex;
  position: relative;
}

.centered-nav__logo {
  pointer-events: auto;
  color: #131313;
  justify-content: center;
  align-items: center;
  width: 12.5em;
  display: flex;
}

.centered-nav__logo-svg {
  width: 100%;
  height: 100%;
}

.centered-nav__toggle {
  pointer-events: auto;
  cursor: pointer;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  padding: 0;
  display: flex;
  position: relative;
}

.centered-nav__toggle .centered-nav__toggle-bar {
  background-color: #131313;
  width: 1.875em;
  height: .125em;
  position: absolute;
  transition: transform 0.6s cubic-bezier(.65, 0, 0, 1);
  transform: translateY(-0.25em) rotate(0.001deg);
}

.centered-nav__toggle:hover .centered-nav__toggle-bar {
  transform: translateY(0.25em) rotate(0.001deg);
}

.centered-nav__toggle .centered-nav__toggle-bar:nth-child(2) {
  transform: translateY(0.15em) rotate(0.001deg);
}

.centered-nav__toggle:hover .centered-nav__toggle-bar:nth-child(2) {
  transform: translateY(-0.15em) rotate(0.001deg);
}

[data-navigation-status="active"] .centered-nav__toggle .centered-nav__toggle-bar {
  transform: translateY(0em) rotate(45deg);
}

[data-navigation-status="active"] .centered-nav__toggle .centered-nav__toggle-bar:nth-child(2) {
  transform: translateY(0em) rotate(-45deg);
}

.centered-nav__content {
  border-bottom-right-radius: .75em;
  border-bottom-left-radius: .75em;
  grid-template-rows: 0fr;
  display: grid;
  position: relative;
  overflow: hidden;
  transition: grid-template-rows 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}

[data-navigation-status="active"] .centered-nav__content {
  grid-template-rows: 1fr;
}

.centered-nav__inner {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  pointer-events: auto;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 10000%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.centered-nav__ul {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  position: relative;
}

.centered-nav__li {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: clip;
}

.hamburger-nav__a {
  color: #131313;
  justify-content: center;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  text-decoration: none;
  display: flex
;
  position: relative;
}

.hamburger-nav__a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
  transition-delay: inherit;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(.65, 0, 0, 1);
}

[data-navigation-status="active"] .hamburger-nav__a::after {
  transform: scaleX(1);
}

.hamburger-nav__a:hover::after {
  opacity: 0.4;
}

.hamburger-nav__a[aria-current]::after {
  opacity: 1;
}

.hamburger-nav__p {
  transition: transform 0.6s cubic-bezier(.65, 0, 0, 1);
  transform: translate(0px, 150%);
  transition-delay: inherit;
  text-decoration: none;
  text-align: center;
  color: #000;
  font-size: 1.2rem;
}

[data-navigation-status="active"] .hamburger-nav__p {
  transform: translate(0px, 0%);
}

.centered-nav__banner-w {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.centered-nav__banner {
  color: #fff;
  background-color: #CFDC75;;
  max-width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  text-decoration: none;
  transition: background-color .15s;
  overflow: hidden;
}

.centered-nav__banner:hover {
  background-color: #CFDC75;
}

.centered-nav__banner-row {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.centered-nav__banner-item {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.centered-nav__banner-inner {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding-right: 2em;
  display: flex;
}

.centered-nav__banner-text {
  text-transform: uppercase;
  margin-bottom: 0;
  /* font-family: RM Mono, Arial, sans-serif; */
  font-size: .875em;
  font-weight: 600; 
  line-height: 1;
  color: #0C5A4A;
}

  .centered-nav {
    width: auto;
    top: 1em;
    left: 1em;
    right: 1em;
    transform: none;
  }
}

@media (min-width: 650px) and (max-width: 1299px) {
    .centered-nav {
    width: 30em;
    left: 50%;
    right: none;
    transform: translate(-50%);
  }
}

@keyframes translateX {
  to {
    transform: translateX(-100%);
  }
}

[data-css-marquee-list] {
  animation: translateX 20s linear;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}

[data-navigation-status="active"] [data-css-marquee-list] {
  animation-play-state: running;
}

[data-navigation-status="active"] .centered-nav__banner:hover [data-css-marquee-list] {
  animation-play-state: paused;
}


.logo img {
  width: 250px;
  height: auto;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: .2s linear( 0, 0.0039, 0.0156, 0.0352, 0.0625, 0.0977, 0.1407, 0.1914, 0.2499, 0.3164, 0.3906 62.5%, 0.5625, 0.7656, 1 );
}

/* .nav-links a:hover {
  color: #CFDB74;
} */

/* .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #CFDB74; 
  transition: width 0.5s var(--sine-in-out);
}

.nav-links a:hover::after {
  width: 100%;
} */

.nav-button button {
  padding: 0.5rem 1rem;
  /* background-color: #555; */
  /* color: white; */
  border: none;
  cursor: pointer;
}

/* Estilos do menu hambúrguer */
/* .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
} */

/* Estilos responsivos */
/* @media (max-width: 1200px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #333;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    margin: 1rem 0;
  }

  .nav-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }
} */

@media (min-width: 1300px) {
  .header-content__text {
    display: flex;
    flex-direction: column;
  }
}


.header-content__text__gif {
  width: 32px;
  height: 32px;
}

.header-content__text {
  display: flex;
  flex-direction: column;
  /* width: 50%; */
  justify-content: center;
}

@media (min-width: 1300px) {
  .header-content__text {
    margin-top: 7rem;
    margin-bottom: 16rem;
  }
}

@media (min-width: 1800px) {
  .header-content__text {
    margin-top: 15rem;
    margin-bottom: 14rem;
    /* max-width: 32rem; */
  }
}

.header-content__text__title {
  font-weight: 600;
  font-size: 1rem;
}

.header-content__text__description {
  padding: 10px 0 40px 0;
  font-size: 1rem;
}

@media (min-width: 1300px) {
  .header-content__text__description {
    max-width: 34rem;
  }
}

@media (min-width: 1800px) {
  .header-content__text__description {
    max-width: 38rem;
  }
}
.header-content__button-div {
  padding-bottom: 3rem;
}

.btn-verde-claro {
  cursor: pointer;
  display: inline-block;
  font-size: var(--size, 1rem);
  font-weight: 500;
  transition: 0.8s;
  background-color: #CFDC75;
  border-radius: 83px;
  color: #0C5A4A;
  position: relative;
  overflow: hidden;
  align-items: center;
  box-shadow: 0 0 0 3px #0C5A4A, 0 0 0 5px #fff;
  transition: .5s linear( 0, 0.0039, 0.0156, 0.0352, 0.0625, 0.0977, 0.1407, 0.1914, 0.2499, 0.3164, 0.3906 62.5%, 0.5625, 0.7656, 1 );
}

.btn-verde-claro>span {
  display: flex;
  flex-direction: column;
  margin-left: 4px;
  height: 1.4em;
  overflow: hidden;
}

.btn-verde-claro>span span {
  display: block;
  position: relative;
  z-index: 2;
  transition: .3s ease-in-out;
  transition-property: color, transform;
}

.btn-verde-claro:hover>span span {
  transform: translateY(-100%);
}

.btn-verde-claro:hover {
  /* background-color: aliceblue; */
  box-shadow: 0 0 0 4px #CFDB74;
}

.btn-verde {
  display: inline-block;
  position: relative;
  overflow: hidden;
  align-items: center;
  cursor: pointer;
  font-size: var(--size, 1rem);
  font-weight: 500;
  transition: 0.8s;
  background-color: #0C5A4A;
  border-radius: 83px;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px #0C5A4A;
  transition: .5s linear( 0, 0.0039, 0.0156, 0.0352, 0.0625, 0.0977, 0.1407, 0.1914, 0.2499, 0.3164, 0.3906 62.5%, 0.5625, 0.7656, 1 );
}

.btn-verde:hover {
  /* background-color: aliceblue; */
  border: 2px solid #0C5A4A;
  box-shadow: 0 0 0 4px #0C5A4A;
}

.btn-verde>span {
  display: flex;
  flex-direction: column;
  margin-left: 4px;
  height: 1.4em;
  overflow: hidden;
}

.btn-verde>span span {
  display: block;
  position: relative;
  z-index: 2;
  transition: .3s ease-in-out;
  transition-property: color, transform;
}

.btn-verde:hover>span span {
  transform: translateY(-100%);
}

.btn-livro {
  background-color: #fff;
}

.btn-livro:hover {
  box-shadow: 0 0 0 4px #fff;
}

.btn-livro>span {
 height: 1.4em;
  padding-top: 2px;
}

.header-content {
  padding-top: 1rem;
}

@media (min-width: 1400px) and (max-width: 1550px) {
  .header-content {
    padding-top: 6rem;
  }
}

@media (min-width: 1551px) and (max-width: 1680px) {
  .header-content {
    padding-top: 8rem;
  }
}

/* .header-content__illustration {
    margin: 140px 0px 0 100px;
  } */
  
.header-content__illustration {
  position: relative;
}

.gui-ilustracao {
  width: 80%;
  height: auto;
  margin: 0 auto;
  max-width: 380px;
}



@media (min-width: 1300px) {
  .gui-ilustracao {
    /* width: 80%;
    max-width: 600px; */
    position: absolute;
    /* bottom: -269px; */
    right: 140px;
    /* top: 0; */
    bottom: 0;
    width: 70vh;
    max-width: none;
    height: auto;
    max-height: 90vh;
  }
}

@media (min-width: 1800px) {
  .gui-ilustracao {
    right: 260px;
    max-width: 610px;
  }
}

/* @keyframes draw {
  100% {
    stroke-dashoffset: 0; */
    /* Reduz o deslocamento para 0, criando o efeito de desenho */
  /* }
} */

.about-me {
  padding: 6rem 1rem;
}

@media (min-width: 420px) {
  .about-me {
    padding: 6rem 2rem;
  }
}

@media (min-width: 550px) {
  .about-me {
    padding: 6rem 4rem;
  }
}

@media (min-width: 680px) {
  .about-me {
    padding: 6rem 6rem;
  }
}

@media (min-width: 1000px) and (max-width: 1299px) {
  .about-me {
    padding: 6rem 8rem;
  }
}

@media (min-width: 1300px) {
  .about-me {
    padding: 8rem 8rem;
    display: flex;
    max-width: 90vw;
    margin: auto;
    gap: 7vw;
  }
}

@media (min-width: 1500px) {
  .about-me {
    padding: 12rem 15rem;
  }
}


.about-me__text__gif-title {
  display: flex;
}

.about-me__text__gif {
  width: 32px;
  height: 32px;
}

.about-me__text__title {
  font-weight: 600;
  font-size: 1rem;
}

.about-me__text__description {
  padding: 10px 0 30px 0;
  font-size: 0.9rem;
}


.about-me__illustration {
  display: block;
}

@media (min-width: 1300px) {
  .about-me__illustration {
    display: none;
  }
}

.about-me__illustration-pc {
  display: none;
}

@media (min-width: 1300px) {
  .about-me__illustration-pc {
    display: block;
  }
}

.about-me__button-div {
  padding-bottom: 3rem;
}

@media (min-width: 1300px) {
  .about-me__button-div {
    display: block;
    padding-bottom: 3rem;
  }
}

.video-gui {
  border-radius: 10px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px #0C5A4A, 0 0 0 5px #E9E2D8;
  margin-bottom: 30px;
  width: 100%;
  max-width: 350px;
}

.efeito-video {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 4px #CFDC75;
  }
}

@media (min-width: 1300px) {
  .video-gui {
    max-width: none;
    display: flex;
    margin: 50px 0;
  }
}

.help-you-mobile {
  background-color: #CFDB74;
  margin-top: 4px;
  padding: 6rem 1rem;
  margin: 2px 2px 0px 2px;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  border-radius: 6px 6px 0px 0px;
}

@media (min-width: 420px) {
  .help-you-mobile {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1000px) {
  .help-you-mobile {
    display: none;
  }
}

.help-you__slider {
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.3s ease-out;
  width: 100%;
  margin: 0 -1rem;
}

.slide {
  min-width: 100%;
  padding: 20px;
}

.help-you__title {
  padding: 10px 20px;
  background-color: #E9E2D8;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin-bottom: 10px;
  border: 5px solid white;
  font-size: 0.9rem;
  font-weight: 500;
}

.help-you__text-div {
  background: #E9E2D8;
  padding: 30px;
  border-radius: 15px;
  border: 5px solid white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.help-you__text-div img {
  position: absolute;
  top: -20px;
  left: -2px;
}

.help-you-pc {
  display: none;
}

@media (min-width: 1000px) {
  .help-you-pc {
    display: block;
    background-color: #CFDC75;
    margin: 2px 2px 0 2px;
    border-radius: 6px 6px 0 0;
    padding: 4rem 8rem;
  }

  .help-you-pc__container {
    padding-block: 2rem;
    display: grid;
    grid-template-columns: 0.9fr 200px;
    align-items: start;
    gap: 10rem;
  }
  aside {
    position: sticky;
    top: 2rem;
    transition: 10s ease;
  }

  .help-you-pc__title-div {
    position: relative;
  }

  .help-you-pc__title-gif-div {
    display: flex;
    align-items: center;
  }

  .help-you-pc__title-img {
    position: absolute;
    left: -20px;
  }

  .help-you-pc__title {
    padding: 5px 20px;
    margin: 6px 0px;
    border-radius: 8px;
    border: solid 4px #fff;
    display: inline-block;
    background-color: #e9e2d8;
    font-weight: 500;
  }

  .help-you-pc__text {
    margin-block-end: 1em;
    background-color: #e9e2d8;
    padding: 10px 20px;
    border-radius: 10px;
    border: solid 2px #fff;
    font-size: 0.9rem;
  }


  .help-you-pc__article {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

@media (min-width: 1000px) and (max-width: 1300px) {
  .help-you-pc__aside__gui-img {
    padding-top: 100px;
  }
}
@media (min-width: 1500px) {
  .help-you-pc {
    padding: 6rem 14rem;
  }

}

@media (min-width: 1800px) {
  .help-you-pc {
      padding: 8rem 20rem;
  }

  .help-you-pc__aside__gui-img {
    width: 300px !important;
    margin-top: 100px;
  }
}

.user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.help-you__text {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  height: 70px;
}

.dot-image {
  width: 36px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  /* Imagem sem saturação */
  opacity: 0.7;
  /* Opacidade reduzida para imagens inativas */
}

.dot-image.active {
  filter: grayscale(0%);
  /* Imagem com cores normais */
  opacity: 1;
  /* Opacidade total */
  transform: scale(1.3);
  /* Aumenta o tamanho da imagem ativa */
}

/* svg {
  width: 50px;
  height: auto;
} */

.my-approach {
  background-color: #0C5A4A;
  color: #fff;
  position: relative;
  margin: 0px 2px 2px 2px;
  border-radius: 0 0 6px 6px;
}

.my-approach-container {
  padding: 6rem 1rem 0rem 1rem;
}

@media (min-width: 420px) { 
  .my-approach-container {
    padding: 6rem 2rem 0rem 2rem;
  }
}

@media (min-width: 550px) { 
  .my-approach-container {
    padding: 6rem 4rem 0rem 4rem;
  }
}

@media (min-width: 680px) { 
  .my-approach-container {
    padding: 6rem 6rem 0rem 6rem;
  }
}

@media (min-width: 1000px) and (max-width: 1299px) {
  .my-approach-container {
    padding: 6rem 8rem 0rem 8rem;
  }
}

@media (min-width: 1300px) { 
  .my-approach-container {
    display: flex;
    margin: auto;
    justify-content: space-evenly;
    padding: 10rem 0rem 0rem 0;
  }
}

@media (min-width: 1800px) {
  .my-approach-container {
      padding: 12rem 0rem 3rem 0;
  }
}

@media (min-width: 1300px) { 
  .my-approach-container p {
    max-width: 46vw;
  }
}

.my-approach-svg, .my-approach-svg-mobile {
  width: 100%;
  position: absolute;
  top: -30px;
  left: 0;
}

.my-approach-svg {
  display: block;
}

@media (min-width: 680px) { 
  .my-approach-svg {
    display: block;
    top: -25px;
  }

  .my-approach-svg-mobile {
    display: none;
  }
}

.my-approach__button-div {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.my-approach__arrow {
  /* padding-top: 30px; */
  width: 50px;
}

.my-approach__brain-img {
  width: 150px;
  padding-bottom: 2.5rem;
}

@media (min-width: 1300px) { 
  .my-approach__brain-img {
    width: 220px;
  }
}

.consultancy {
  /* height: 60vh; */
  background-color: white;
  padding: 4rem 1rem 8rem 1rem;
  position: relative;
}

@media (min-width: 1300px) { 
  .consultancy {
    padding: 4rem 1rem 6rem 1rem;
  }
}

@media (min-width: 1500px) { 
  .consultancy {
    padding: 6rem 1rem 8rem 1rem;
  }
}


.consultancy p {
  text-align: center;
  padding-bottom: 0.6rem;
}

.line-my-approach {
  margin-top: 4px;
  height: 3px;
  background-color: #0C5A4A;
}

.slide img {
  width: 100%;
  display: block;

}

.slide-consul {
  max-width: 380px;
  margin: 20px auto;
  display: grid;
  /* box-shadow: 0 4px 20px 2px rgba(0, 0, 0, 0.4); */
}

@media (min-width: 1500px) { 
  .slide-consul {
    max-width: 450px;
  }
}


.slide-items {
  position: relative;
  grid-area: 1/1;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 0 3px #0C5A4A, 0 0 0 5px #E9E2D8;
  border: 2px solid #fff;
}

.slide-nav {
  grid-area: 1/1;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
}

.slide-nav button {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0;
}

.slide-items>* {
  position: absolute;
  top: 0px;
  opacity: 0;
  pointer-events: none;
}

.slide-items>.active {
  position: relative;
  opacity: 1;
  pointer-events: initial;
}

.slide-thumb {
  display: flex;
  grid-column: 1 / 3;
}

.slide-thumb>span {
  flex: 1;
  display: block;
  height: 3px;
  background: rgba(0, 0, 0, 0.4);
  margin: 5px;
  border-radius: 3px;
  overflow: hidden;
}

.slide-thumb>span.active::after {
  content: '';
  display: block;
  height: inherit;
  background: rgba(255, 255, 255, 1);
  border-radius: 3px;
  transform: translateX(-100%);
  animation: thumb 5s forwards linear;
}

@keyframes thumb {
  to {
    transform: initial;
  }
}

.consultancy-flower-left-svg {
  position: absolute;
  bottom: 0px;
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
}

.consultancy-flower-right-svg {
  position: absolute;
  bottom: 0px;
  width: 200px;
  right: 80px;
  transform: scaleX(-1);
  display: none;
}

@media (min-width: 1300px) { 

  .consultancy-flower-left-svg {
    width: 200px;
    left: 80px;
    transform: none;
  }

  .consultancy-flower-right-svg {
    display: block;
  }
}

.book {
  background-color: #0C5A4A;
  color: white;
  padding: 6rem 1rem;
}

@media (min-width: 420px) { 
  .book {
    padding: 6rem 2rem;
  }
}

@media (min-width: 550px) { 
  .book {
    padding: 6rem 4rem;
  }
}

@media (min-width: 680px) { 
  .book {
    padding: 6rem 6rem;
  }
}

@media (min-width: 1000px) and (max-width: 1299px) {
  .book {
    padding: 6rem 8rem;
  }
}

@media (min-width: 1300px) { 
  .book {
    display: flex;
    margin: auto;
    justify-content: center;
    padding: 7rem 0rem 7rem 0;
  }

  .slide__gui-face {
    left: -26px;
  }
}

@media (min-width: 1500px) { 
  .book {
    padding: 7rem 1rem 8rem 1rem;
  }
}

@media (min-width: 1800px) {
  .book {
      padding: 8rem 1rem 9rem 1rem;
  }
}
.slide-consul {
  position: relative;
}

.slide__gui-face {
  position: absolute;
  z-index: 1;
  bottom: -26px;
  left: 0px;
  transform: rotate(350deg);
}

@media (min-width: 1300px) { 
  .slide__gui-face {
    left: -26px;
  }
}

@media (min-width: 1300px) { 
  .book-container {
    max-width: 80%;
    display: flex;
    gap: 36px;
    justify-content: center;
    align-items: center;
  }
}


.book_vetor {
  width: 160px;
  /* padding-bottom: 40px; */
  display: none;
}

@media (min-width: 1300px) { 
  .book_vetor {
    display: block;
  }
}

.book_vetor-mobile {
  width: 120px;
  padding: 1.5rem 0 0 0;
}

@media (min-width: 1300px) { 
  .book_vetor-mobile {
    display: none;
  }
}

.testimonials {
  padding: 6rem 0 8rem 0;
  position: relative;
}

@media (min-width: 1300px) { 
  .testimonials {
    padding: 6rem 0 10rem 0;
  }
}

@media (min-width: 1800px) {
  .testimonials {
      padding: 8rem 0 12rem 0;
  }
}

.testimonials-cage-svg {
  position: absolute;
  bottom: 0px;
  width: 70px;
  left: 40px;
}

.testimonials-bird-svg {
  position: absolute;
  bottom: 20px;
  width: 50px;
  right: 40px;
}

@media (min-width: 1800px) {
  .testimonials-cage-svg {
    left: 100px;
  }

  .testimonials-bird-svg {
    right: 100px;
  }
}


.testimonials__text__gif-title, .my-approach__text__gif-title, .consultancy__text__gif-title {
  display: flex;
  align-items: center;
}

.testimonials__text__gif-title, .consultancy__text__gif-title {
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.book__text__gif-title {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}

.book-content__button-div {
  padding-top: 3rem;
  display: flex;
  gap: 40px;
}

/* .book-content__button-div a {

} */

.testimonials__text__gif-title {
  padding: 0rem 1rem 40px 1rem;
}

.marquee-container {
  width: 100%;
  /*   max-width: 1200px; */
  overflow: hidden;
  position: relative;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll 30s var(--none) infinite;
  gap: 1.2rem;
}

.testimonial {
  max-width: 300px;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: inset 0 0 0 3px #e9e2d8, inset 0 0 0 5px #fff;
  background-color: #e9e2d8;
  overflow: hidden;
}

.fi-sc-star {
  color: #f8be01;
}

.author {
  display: block;
  margin-top: 1rem;
  font-style: italic;
  color: #0C5A4A;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Hover effect to pause animation */
.marquee-container:hover .marquee {
  animation-play-state: paused;
}

.faq {
  background-color: #CFDB74;
  padding: 6rem 1rem;
}

@media (min-width: 420px) { 
  .faq {
    padding: 6rem 2rem;
  }
}

@media (min-width: 550px) { 
  .faq {
    padding: 6rem 4rem;
  }
}

@media (min-width: 1300px) { 
  .faq {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1500px) { 
  .faq {
    padding: 5rem 2rem 7rem 2rem;
  }
}

.faq-container {
  padding: 1rem;
  margin: 0 auto;
}

.faq-header {
  text-align: left;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subtitle {
  color: #0C5A4A;
  font-weight: 500;
  font-size: 0.875rem;
}

h1, h2 {
  font-size: 1.3rem !important;
  margin: 0.5rem 0;
  /* color: #1f2937; */
  line-height: 1.2;
  font-weight: 600 !important;
}

h3 {
  font-size: 1.2rem !important;
  line-height: 1.2;
  font-weight: 600 !important;
}
.trust-text {
  color: #6b7280;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.faq-item {
  border-bottom: 1px solid #fff;
}

.faq-question {
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #0C5A4A;
  transition: 0.5s var(--power1-in);
}

.icon {
  transition: transform 0.3s ease;
}

.faq-question.active .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 1s var(--power1-in);
  padding: 0 0.5rem 0 0;
}

.faq-answer p {
  color: #6b7280;
  padding-bottom: 1rem;
  margin: 0;
  font-size: 0.875rem;
}

.faq-answer.active {
  max-height: 200px;
}

/* Tablet and Desktop styles */
@media (min-width: 640px) {
  .faq-container {
    max-width: 800px;
    padding: 2rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .trust-text {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1.5rem 0;
  }

  .faq-answer {
    padding: 0 1rem 0 0;
  }

  .faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 1rem;
  }
}

.contact {
  background-color: #0C5A4A;
  color: white;
  padding: 6rem 1rem;
}

@media (min-width: 420px) {
  .contact {
    padding: 6rem 2rem;
  }
}

@media (min-width: 550px) {
  .contact {
    padding: 6rem 4rem;
  }
}

@media (min-width: 680px) {
  .contact {
    padding: 6rem 6rem;
  }
}

@media (min-width: 680px) and (max-width: 1299px) {
  .contact {
    padding: 6rem 8rem;
  }
}

@media (min-width: 1300px) {
  .contact {
    display: grid;
    grid-template-columns: 55% 40%;
    gap: 3rem;
    padding: 7rem 8rem;
  }
}

@media (min-width: 1500px) {
  .contact {
    padding: 10rem 12rem;
  }
}

@media (min-width: 1800px) {
  .contact {
    padding: 12rem 12rem;
  }
}

.contact__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__content h3 {
  padding-bottom: 5px;
}

.contact__content__contact_anchors {
  display: flex;
  flex-direction: column;
  padding: 0 0 1rem 0;
  gap: 4px;
}

.contact__content__contact_anchors a {
  cursor: pointer;
  align-self: flex-start;
  position: relative;
}


.contact__content__contact_anchors a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: #CFDB74; /* Cor da linha */
  transition: width 0.5s var(--sine-in-out);
}

.contact__content__contact_anchors a:hover::after {
  width: 100%;
}

.contact-content__button-div {
  padding-bottom: 3rem;
  padding-top: 1rem;
  display: flex;
  gap: 2rem;
}

.contact-content__button-div img {
  display: none;
}
@media (min-width: 420px) {
  .contact-content__button-div img {
    width: 120px;
    height: auto;
    padding-bottom: 10px;
    display: block;
  }
}


@media (min-width: 1300px) {
  iframe {
    width: 80%; 
    height: 100%; 
    border-radius: 4px;
    margin: auto 80px;
  }
}

footer {
  height: 100vh;
  background-image: url(assets/background-teste.png);
  background-position: cover;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
}

@media (min-width: 1300px) {
  footer {
    height: 100vh;
  }
}

.footer__logo {
  width: 40vw;
  animation: logoRotate 7s linear 0s infinite normal none;
}


@media (min-width: 800px) {
  .footer__logo {
    width: 14vw;
  }
}
@keyframes logoRotate {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.circle-text-div {
  display: grid;
  place-items: center;
  /* min-height: 100vh; */
  /* background: #003; */
  position: relative;
  width: 150px;
}


.circle-text-div img {
  position: absolute;
  width: 60px;
  transform: scaleX(-1);
}

.circle-text-div svg {
  /* max-width: 400px; */
  /* &:hover .textcircle {
    transform: scale(1.2) rotate(90deg);
  } */
  z-index: 1;
}

.textcircle {
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  transform-origin: 250px 250px;
}

text {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  fill: black;
  animation: rotate 25s linear infinite;
  transform-origin: 250px 250px;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

:root {
  --none: linear(0, 1);
  --power1-in: linear( 0, 0.0039, 0.0156, 0.0352, 0.0625, 0.0977, 0.1407, 0.1914, 0.2499, 0.3164, 0.3906 62.5%, 0.5625, 0.7656, 1 );
  --power1-out: linear( 0, 0.2342, 0.4374, 0.6093 37.49%, 0.6835, 0.7499, 0.8086, 0.8593, 0.9023, 0.9375, 0.9648, 0.9844, 0.9961, 1 );
  --power1-in-out: linear( 0, 0.0027, 0.0106 7.29%, 0.0425, 0.0957, 0.1701 29.16%, 0.2477, 0.3401 41.23%, 0.5982 55.18%, 0.7044 61.56%, 0.7987, 0.875 75%, 0.9297, 0.9687, 0.9922, 1 );
  --power2-in: linear( 0, 0.0014 11.11%, 0.0071 19.24%, 0.0188 26.6%, 0.037 33.33%, 0.0634 39.87%, 0.0978 46.07%, 0.1407 52.02%, 0.1925 57.74%, 0.2559 63.49%, 0.3295 69.07%, 0.4135 74.5%, 0.5083 79.81%, 0.6141 85%, 0.7312 90.09%, 1 );
  --power2-out: linear( 0, 0.2688 9.91%, 0.3859 15%, 0.4917 20.19%, 0.5865 25.5%, 0.6705 30.93%, 0.7441 36.51%, 0.8075 42.26%, 0.8593 47.98%, 0.9022 53.93%, 0.9366 60.13%, 0.963 66.67%, 0.9812 73.4%, 0.9929 80.76%, 0.9986 88.89%, 1 );
  --power2-in-out: linear( 0, 0.0036 9.62%, 0.0185 16.66%, 0.0489 23.03%, 0.0962 28.86%, 0.1705 34.93%, 0.269 40.66%, 0.3867 45.89%, 0.5833 52.95%, 0.683 57.05%, 0.7829 62.14%, 0.8621 67.46%, 0.8991 70.68%, 0.9299 74.03%, 0.9545 77.52%, 0.9735 81.21%, 0.9865 85%, 0.9949 89.15%, 1 );
  --power3-in: linear( 0, 0.0039 25%, 0.0117 32.89%, 0.0248 39.68%, 0.0457 46.22%, 0.0743 52.21%, 0.1113 57.77%, 0.1575 63%, 0.218 68.33%, 0.2901 73.39%, 0.3745 78.23%, 0.4718 82.88%, 0.5827 87.37%, 0.7074 91.71%, 0.8462 95.91%, 1 );
  --power3-out: linear( 0, 0.1538 4.09%, 0.2926 8.29%, 0.4173 12.63%, 0.5282 17.12%, 0.6255 21.77%, 0.7099 26.61%, 0.782 31.67%, 0.8425 37%, 0.8887 42.23%, 0.9257 47.79%, 0.9543 53.78%, 0.9752 60.32%, 0.9883 67.11%, 0.9961 75%, 1 );
  --power3-in-out: linear( 0, 0.0029 13.8%, 0.0184 21.9%, 0.0339 25.51%, 0.0551 28.81%, 0.0827 31.88%, 0.1168 34.76%, 0.1962 39.57%, 0.3005 44.02%, 0.4084 47.53%, 0.6242 53.45%, 0.7493 57.93%, 0.8495 62.97%, 0.8888 65.67%, 0.9213 68.51%, 0.9629 73.9%, 0.9876 80.16%, 0.998 87.5%, 1 );
  --power4-in: linear( 0, 0.0024 29.91%, 0.008 38.03%, 0.0179 44.72%, 0.035 51.16%, 0.0595 56.88%, 0.0922 62.08%, 0.1338 66.88%, 0.1914 71.85%, 0.262 76.5%, 0.3461 80.88%, 0.4447 85.04%, 0.5587 89.01%, 0.689 92.82%, 0.8359 96.48%, 1 );
  --power4-out: linear( 0, 0.1641 3.52%, 0.311 7.18%, 0.4413 10.99%, 0.5553 14.96%, 0.6539 19.12%, 0.738 23.5%, 0.8086 28.15%, 0.8662 33.12%, 0.9078 37.92%, 0.9405 43.12%, 0.965 48.84%, 0.9821 55.28%, 0.992 61.97%, 0.9976 70.09%, 1 );
  --power4-in-out: linear( 0, 0.0012 14.95%, 0.0089 22.36%, 0.0297 28.43%, 0.0668 33.43%, 0.0979 36.08%, 0.1363 38.55%, 0.2373 43.07%, 0.3675 47.01%, 0.5984 52.15%, 0.7121 55.23%, 0.8192 59.21%, 0.898 63.62%, 0.9297 66.23%, 0.9546 69.06%, 0.9733 72.17%, 0.9864 75.67%, 0.9982 83.73%, 1 );
  --quad-in: linear( 0, 0.0039, 0.0156, 0.0352, 0.0625, 0.0977, 0.1407, 0.1914, 0.2499, 0.3164, 0.3906 62.5%, 0.5625, 0.7656, 1 );
  --quad-out: linear( 0, 0.2342, 0.4374, 0.6093 37.49%, 0.6835, 0.7499, 0.8086, 0.8593, 0.9023, 0.9375, 0.9648, 0.9844, 0.9961, 1 );
  --quad-in-out: linear( 0, 0.0027, 0.0106 7.29%, 0.0425, 0.0957, 0.1701 29.16%, 0.2477, 0.3401 41.23%, 0.5982 55.18%, 0.7044 61.56%, 0.7987, 0.875 75%, 0.9297, 0.9687, 0.9922, 1 );
  --expo-in: linear( 0, 0.0085 31.26%, 0.0167 40.94%, 0.0289 48.86%, 0.0471 55.92%, 0.0717 61.99%, 0.1038 67.32%, 0.1443 72.07%, 0.1989 76.7%, 0.2659 80.89%, 0.3465 84.71%, 0.4419 88.22%, 0.554 91.48%, 0.6835 94.51%, 0.8316 97.34%, 1 );
  --expo-out: linear( 0, 0.1684 2.66%, 0.3165 5.49%, 0.446 8.52%, 0.5581 11.78%, 0.6535 15.29%, 0.7341 19.11%, 0.8011 23.3%, 0.8557 27.93%, 0.8962 32.68%, 0.9283 38.01%, 0.9529 44.08%, 0.9711 51.14%, 0.9833 59.06%, 0.9915 68.74%, 1 );
  --expo-in-out: linear( 0, 0.0053 17.18%, 0.0195 26.59%, 0.0326 30.31%, 0.0506 33.48%, 0.0744 36.25%, 0.1046 38.71%, 0.1798 42.62%, 0.2846 45.93%, 0.3991 48.37%, 0.6358 52.29%, 0.765 55.45%, 0.8622 59.3%, 0.8986 61.51%, 0.9279 63.97%, 0.9481 66.34%, 0.9641 69.01%, 0.9856 75.57%, 0.9957 84.37%, 1 );
  --circ-in: linear( -0, 0.0048 9.8%, 0.0192 19.5%, 0.043 29.02%, 0.0761 38.26%, 0.1181 47.13%, 0.1685 55.56%, 0.227 63.44%, 0.2929 70.71%, 0.3656 77.3%, 0.4445 83.15%, 0.5285 88.19%, 0.6173 92.39%, 0.7099 95.7%, 0.805 98.08%, 0.9021 99.52%, 1 );
  --circ-out: linear( 0, 0.0979 0.48%, 0.195 1.92%, 0.2901 4.3%, 0.3827 7.61%, 0.4715 11.81%, 0.5555 16.85%, 0.6344 22.7%, 0.7071 29.29%, 0.773 36.56%, 0.8315 44.44%, 0.8819 52.87%, 0.9239 61.74%, 0.957 70.98%, 0.9808 80.5%, 0.9952 90.2%, 1 );
  --circ-in-out: linear( -0, 0.0033 5.75%, 0.0132 11.43%, 0.0296 16.95%, 0.0522 22.25%, 0.0808 27.25%, 0.1149 31.89%, 0.1542 36.11%, 0.1981 39.85%, 0.2779 44.79%, 0.3654 48.15%, 0.4422 49.66%, 0.5807 50.66%, 0.6769 53.24%, 0.7253 55.37%, 0.7714 58.01%, 0.8142 61.11%, 0.8536 64.65%, 0.9158 72.23%, 0.9619 80.87%, 0.9904 90.25%, 1 );
  --sine-in: linear( 0, 0.0035, 0.0141 10.7%, 0.0318 16.09%, 0.0566 21.51%, 0.0885 26.98%, 0.1278 32.53%, 0.2288 43.93%, 0.3563 55.48%, 0.5171 67.92%, 0.7139 81.53%, 1 );
  --sine-out: linear( 0, 0.2861 18.47%, 0.4829 32.08%, 0.6437 44.52%, 0.7712 56.07%, 0.8722 67.47%, 0.9115 73.02%, 0.9434 78.49%, 0.9682 83.91%, 0.9859 89.3%, 0.9965, 1 );
  --sine-in-out: linear( 0, 0.007 5.35%, 0.0282 10.75%, 0.0638 16.26%, 0.1144 21.96%, 0.1833 28.16%, 0.2717 34.9%, 0.6868 62.19%, 0.775 68.54%, 0.8457 74.3%, 0.9141 81.07%, 0.9621 87.52%, 0.9905 93.8%, 1 );
  --back-in: linear( 0, -0.0029 4.31%, -0.0119 9.02%, -0.0837 31.27%, -0.0954 36.64%, -0.0998 41.45%, -0.0951 47.03%, -0.079 52.25%, -0.051 57.19%, -0.0108 61.92%, 0.0515 67.19%, 0.1312 72.27%, 0.2286 77.18%, 0.3445 81.96%, 0.4792 86.62%, 0.633 91.17%, 0.8066 95.63%, 1 );
  --back-out: linear( 0, 0.1934 4.37%, 0.367 8.83%, 0.5208 13.38%, 0.6555 18.04%, 0.7714 22.82%, 0.8688 27.73%, 0.9485 32.81%, 1.0108 38.08%, 1.051 42.81%, 1.079 47.75%, 1.0951 52.97%, 1.0998 58.55%, 1.0954 63.36%, 1.0837 68.73%, 1.0119 90.98%, 1.0029 95.69%, 1 );
  --back-in-out: linear( 0, -0.0059 4.51%, -0.0418 15.63%, -0.0499 20.72%, -0.0476 23.51%, -0.0395 26.12%, -0.0255 28.59%, -0.0055 30.95%, 0.0281 33.76%, 0.0717 36.47%, 0.1901 41.63%, 0.344 46.32%, 0.6156 52.65%, 0.7495 56.35%, 0.8757 60.97%, 0.9663 65.85%, 1.0006 68.58%, 1.0256 71.43%, 1.0417 74.43%, 1.0493 77.65%, 1.0452 83.02%, 1.0077 94.8%, 1 );
  --elastic-in: linear( 0, 0.0019 13.34%, -0.0056 27.76%, -0.0012 31.86%, 0.0147 39.29%, 0.0161 42.46%, 0.0039 46.74%, -0.0416 54.3%, -0.046 57.29%, -0.0357, -0.0122 61.67%, 0.1176 69.29%, 0.1302 70.79%, 0.1306 72.16%, 0.1088 74.09%, 0.059 75.99%, -0.0317 78.19%, -0.3151 83.8%, -0.3643 85.52%, -0.3726, -0.3705 87.06%, -0.3463, -0.2959 89.3%, -0.1144 91.51%, 0.7822 97.9%, 1 );
  --elastic-out: linear( 0, 0.2178 2.1%, 1.1144 8.49%, 1.2959 10.7%, 1.3463 11.81%, 1.3705 12.94%, 1.3726, 1.3643 14.48%, 1.3151 16.2%, 1.0317 21.81%, 0.941 24.01%, 0.8912 25.91%, 0.8694 27.84%, 0.8698 29.21%, 0.8824 30.71%, 1.0122 38.33%, 1.0357, 1.046 42.71%, 1.0416 45.7%, 0.9961 53.26%, 0.9839 57.54%, 0.9853 60.71%, 1.0012 68.14%, 1.0056 72.24%, 0.9981 86.66%, 1 );
  --elastic-in-out: linear( 0, -0.0028 13.88%, 0.0081 21.23%, 0.002 23.37%, -0.0208 27.14%, -0.023 28.64%, -0.0178, -0.0061 30.83%, 0.0588 34.64%, 0.0651 35.39%, 0.0653 36.07%, 0.0514, 0.0184 38.3%, -0.1687 42.21%, -0.1857 43.04%, -0.181 43.8%, -0.1297 44.93%, -0.0201 46.08%, 1.0518 54.2%, 1.1471, 1.1853 56.48%, 1.1821 57.25%, 1.1573 58.11%, 0.9709 62%, 0.9458, 0.9347 63.92%, 0.9349 64.61%, 0.9412 65.36%, 1.0061 69.17%, 1.0178, 1.023 71.36%, 1.0208 72.86%, 0.998 76.63%, 0.9919 78.77%, 1.0028 86.12%, 1 );
  --bounce-in: linear( 0, 0.0117, 0.0156, 0.0117, 0, 0.0273, 0.0468, 0.0586, 0.0625, 0.0586, 0.0468, 0.0273, 0 27.27%, 0.1093, 0.1875 36.36%, 0.2148, 0.2343, 0.2461, 0.25, 0.2461, 0.2344, 0.2148 52.28%, 0.1875 54.55%, 0.1095, 0, 0.2341, 0.4375, 0.6092, 0.75, 0.8593, 0.9375 90.91%, 0.9648, 0.9843, 0.9961, 1 );
  --bounce-out: linear( 0, 0.0039, 0.0157, 0.0352, 0.0625 9.09%, 0.1407, 0.25, 0.3908, 0.5625, 0.7654, 1, 0.8907, 0.8125 45.45%, 0.7852, 0.7657, 0.7539, 0.75, 0.7539, 0.7657, 0.7852, 0.8125 63.64%, 0.8905, 1 72.73%, 0.9727, 0.9532, 0.9414, 0.9375, 0.9414, 0.9531, 0.9726, 1, 0.9883, 0.9844, 0.9883, 1 );
  --bounce-in-out: linear( 0, 0.0078, 0, 0.0235, 0.0313, 0.0235, 0.0001 13.63%, 0.0549 15.92%, 0.0938, 0.1172, 0.125, 0.1172, 0.0939 27.26%, 0.0554 29.51%, 0.0003 31.82%, 0.2192, 0.3751 40.91%, 0.4332, 0.4734 45.8%, 0.4947 48.12%, 0.5027 51.35%, 0.5153 53.19%, 0.5437, 0.5868 57.58%, 0.6579, 0.7504 62.87%, 0.9999 68.19%, 0.9453, 0.9061, 0.8828, 0.875, 0.8828, 0.9063, 0.9451 84.08%, 0.9999 86.37%, 0.9765, 0.9688, 0.9765, 1, 0.9922, 1 );
}

[data-aos] {
  body[data-aos-easing="custom-ease"] &,
    &[data-aos][data-aos-easing="custom-ease"] {
  transition-timing-function: var(--power3-out);
  }

  body[data-aos-easing="custom-ease-2"] &,
  &[data-aos][data-aos-easing="custom-ease-2"] {
    transition-timing-function: var(--power1-in); /* Novo easing */
  }

  body[data-aos-easing="custom-ease-3"] &,
  &[data-aos][data-aos-easing="custom-ease-3"] {
    transition-timing-function: var(--bounce-out); /* Novo easing */
  }

  body[data-aos-easing="custom-ease-4"] &,
  &[data-aos][data-aos-easing="custom-ease-4"] {
    transition-timing-function: var(--elastic-out); /* Novo easing */
  }

  body[data-aos-easing="custom-ease-5"] &,
  &[data-aos][data-aos-easing="custom-ease-5"] {
    transition-timing-function: var(--back-in-out); /* Novo easing */
  }
}

.my-approach-svg ellipse {
  transition: rx 0.5s var(--power3-out), ry 0.5s var(--power3-out); /* Aplique easing */
}


.hover-effect-links>span {
  height: 1.5em;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.hover-effect-links>span span {
  height: 1.5em;
  transition: transform .3s ease-in-out;
  display: inline-block;

}

.hover-effect-links:hover>span span {
  transform: translateY(-100%);
}

.hover-effect-links__span {
  color: #CFDC75;
}