:root {
  --main-color: #0dcaf0;
  --main-color-dark: #1aafcc;
  --second-color: #e9fbff;
  --second-color-dark: #bcf3ff;
  --third-color: #fb4d5e;
  --third-color-dark: #cc1b2c;
  --text-color: #161c2d;
  --second-text-color: #8d97ac;
  --third-text-color: #646b7c;
}

html {
  scroll-behavior: smooth;
}

.action-button {
  background-color: var(--third-color);
  color: #fff;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  color: #fff !important;
  border: none;
}

.action-button:hover {
  background-color: var(--third-color-dark);
}

.action-button ~ .second-button:hover {
  background-color: var(--second-color-dark);
}

#topbar {
  border-radius: 15px;
  transform: translateY(30px);
  transition: all 200ms linear;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 475px) {
  #topbar {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

#topbar button:not(.action-button) {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--third-text-color);
  position: relative;
  border: 0;
  background-color: transparent;
}

#topbar.sticked {
  background-color: #fff !important;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1)
  ) !important;
  transition: all 200ms linear;
  border: 1px solid var(--second-color);
  /* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.089) !important; */
  transform: translateX(0) !important;
  border-radius: 0px 0 15px 15px !important;
}

#topbar.sticked {
  padding: 0 !important;
  padding-left: 15px !important;
  transition: all 200ms linear;
}

#topbar.sticked .action-button {
  padding: 18px 18px !important;
  border-radius: 0px 0px 15px 0px;
}

#topbar .highlight-menu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: var(--third-color);
  transition: width 0.3s ease;
  transform: translateY(5px);
}

#topbar .highlight-menu:hover::after {
  width: 100%;
}

#topbar #logo {
  color: var(--main-color);
}

#topbar .action-button {
  padding: 8px 18px !important;
  font-size: 1rem;
}

.second-button {
  background-color: var(--second-color);
  color: var(--main-color) !important;
}

.custom-shape-divider-bottom-1714840969 {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1714840969 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 130px;
}

.custom-shape-divider-bottom-1714840969 .shape-fill {
  fill: #f4f4f4;
}

main {
  /* background-color: #fafafa; */
}

main #header-content {
  /* transform: translateY(140px); */
  /* padding-top: 140px; */
}

@media (max-width: 475px) {
  main #header-content {
    /* transform: translateY(140px); */
    /* padding-top: 60px; */
  }
}

main #header-content .slogan {
  line-height: 1.7rem;
}

main #header-content h1 {
  font-size: 3.3rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--main-color);
}

@media (max-width: 475px) {
  main #header-content h1 {
    font-size: 2.5rem;
  }

  main #header-content .slogan {
    line-height: 1.7rem;
    font-size: 1.2rem !important;
  }
}

.second-text-color {
  color: var(--second-text-color);
}

#mouse-down-content {
  position: absolute;
  transform: translateY(40px) translateX(-12px);
}

#mouse-down-content img {
  width: 45px;
}

.bounce {
  animation: bounce 1.5s infinite alternate;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

.shapedividers_com-6119 {
  overflow: hidden;
  position: relative;
  height: 150px;
}
.shapedividers_com-6119::before {
  content: "";
  font-family: "shape divider from ShapeDividers.com";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 120px;
  background-position: 50% 100%;
  transform: rotateY(180deg);
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 476.62 100.69"><path fill="%23f4f4f4" d="M476.62 100.69V0l-238.3 95.47L0 0v100.69Z"/></svg>');
}

@media (min-width: 2100px) {
  .shapedividers_com-6119::before {
    background-size: 100% calc(2vw + 120px);
  }
}
@media (max-width: 475px) {
  #app {
    overflow-x: hidden !important;
  }
}

#app #content {
  background-color: #f4f4f4;
}

.session-highlight {
  font-size: 3rem;
  position: relative;
  color: var(--third-text-color);
}

.ease-in-out-effect {
  position: relative;
  opacity: 0; /* Começa com opacidade 0 para o efeito de transição */
  transform: translateY(100px); /* Começa posicionado abaixo da tela */
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.hidden {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.tab-content {
  display: none;
}

.tab-content p {
  font-size: 1.1rem;
}

.tab-content.active {
  display: block;
}

.tab-button {
  width: 100%;
  text-align: left;
  height: 65px;
  border: 0;
  background-color: transparent;
  border-right: 4px solid var(--third-color);
  border-radius: 15px 0 0 15px;
  font-size: 1.1rem !important;
  color: var(--third-color);
}

.tab-button i {
  color: #fff;
}

.tab-button.active {
  background-color: var(--third-color);
  border-right: 4px solid var(--third-color-dark);
  color: #fff;
}

.tab-button:hover {
  background-color: var(--third-color);
  border-right: 4px solid var(--third-color-dark);
  color: #fff;
}

.tab-button .circle {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: var(--third-color);
  margin-right: 12px;
}

.left-to-right {
  position: relative;
  transform: translateX(-100px);
  transition: all 0.5s ease-in-out;
}

.right-to-left {
  position: relative;
  transform: translateX(100px);
  transition: all 0.5s ease-in-out;
}

.up-to-down {
  position: relative;
  transform: translateY(-100px);
  transition: all 0.5s ease-in-out;
}

.down-to-up {
  position: relative;
  transform: translateY(100px);
  transition: all 0.5s ease-in-out;
}

.to-center {
  position: relative;

  transform: translateX(0px) translateY(0px);
  transition: all 0.5s ease-in-out;
}

.text-color-third {
  color: var(--third-color);
}

.text-color-main {
  color: var(--main-color);
}

.text-color-main-dark {
  color: var(--main-color-dark);
}

.bg-color-second {
  background-color: var(--second-color) !important;
}

.bg-color-form {
  background-color: #f0f0f0 !important;
}

.fnt-2 {
  font-size: 2.2rem !important;
  margin-right: 10px;
  top: 5px;
  position: relative;
  line-height: 0.8;
}

.border-outline {
  border: 3px solid var(--main-color);
}

.custom-shape-divider-top-1714697616 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1714697616 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.custom-shape-divider-top-1714697616 .shape-fill {
  fill: #f4f4f4;
}

.parallax {
  background-image: url("../images/parallax.jpg"); /* Substitua 'background.jpg' pelo caminho da sua imagem de fundo */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 800px;
  overflow: hidden;
  position: relative;
  animation: scaleAnimation 25s infinite alternate; /* 5s é o tempo da animação */
}

@media (max-width: 475px) {
  .parallax {
    height: 1200px;
  }
}

.parallax-inner {
  background: linear-gradient(
    135deg,
    rgba(4, 4, 56, 0.9),
    rgba(0, 255, 255, 0.5)
  ); /* Altere as cores e opacidades conforme desejado */
  backdrop-filter: blur(7px);
  color: white;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.parallax-inner h2 {
  font-size: 3.8rem;
  line-height: 3.5rem;
}

@media (max-width: 475px) {
  .parallax-inner h2 {
    font-size: 2.9rem;
  }
}

.parallax-inner h5 {
  font-size: 1.3rem;
}

.parallax-inner li {
  font-size: 1.1rem;
  margin-bottom: 5px;
  line-height: 1.7rem;
}

.custom-shape-divider-bottom-1714697877 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1714697877 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.custom-shape-divider-bottom-1714697877 .shape-fill {
  fill: #fff;
}

.carousel-button {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border: 0;
  background-color: #fff;
  border: 4px solid transparent;
  z-index: 2300 !important;
  transition: all 200ms linear;
  font-size: 1.5rem;
  color: var(--third-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-button:not(:last-child) {
  margin-bottom: 20px;
}

.carousel-button:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 20px;
  background-color: var(--third-color);
  z-index: -1;
  /* transform: translateY(42px) translateX(-50%); */
  left: 46.5%;
  top: 108%;
}

.carousel-button.active {
  border: 4px solid var(--third-color);
  background-color: var(--third-color);
  transition: all 200ms linear;
  color: #fff;
}

@keyframes scaleAnimation {
  0% {
    background-size: 100% auto; /* Tamanho original */
  }

  100% {
    background-size: 140% auto; /* Tamanho aumentado */
  }
}

#more {
  background-color: #fff;
}

#more.img {
  background-image: url(../images/svg/blob.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center right;
}

#more input {
  font-size: 1.2rem;
}

.hr-whatsapp {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 40px;
  bottom: 40px;
  background-color: #4d9b20;
  border: 2px solid #fff;
  border-radius: 90px;
  font-size: 1.6rem;
  z-index: 66;
}

#footer .borders-y {
  border-top: 2px solid var(--second-color);
  border-bottom: 2px solid var(--second-color);
}
