/* CUSTOM */
h2 {
  font-family: 'GT-Pressura-Black';
  color: var(--primary-500);
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
}

.uppercase {
  text-transform: uppercase;
}

.text-custom-15 {
  font-size: 15px;
}

.text-custom-20 {
  font-size: 20px;
}

.text-custom-24 {
  font-size: 24px;
}

.text-custom-26 {
  font-size: 26px;
}

.text-custom-28 {
  font-size: 28px;
}

.text-custom-36 {
  font-size: 36px;
}

.text-custom-60 {
  font-size: 60px;
}

.text-custom-70 {
  font-size: 70px;
}

.logo-youtube {
  width: 84px;
  height: 19px;
}

.max-w-260 {
  width: 100%;
  max-width: 260px;
}
.max-w-520 {
  width: 100%;
  max-width: 520px;
}

.max-w-540 {
  width: 100%;
  max-width: 540px;
}

.max-w-560 {
  width: 100%;
  max-width: 560px;
}

.max-w-750 {
  width: 100%;
  max-width: 750px;
}

.max-w-700 {
  width: 100%;
  max-width: 700px;
}

.max-w-620 {
  width: 100%;
  max-width: 620px;
}

.max-w-630 {
  width: 100%;
  max-width: 630px;
}

.max-w-670 {
  width: 100%;
  max-width: 630px;
}

.max-w-800 {
  width: 100%;
  max-width: 800px;
}

.max-w-860 {
  width: 100%;
  max-width: 860px;
}

.max-w-1085 {
  width: 100%;
  max-width: 1085px;
}

.max-w-1170 {
  width: 100%;
  max-width: 1170px;
}

.max-w-1230 {
  width: 100%;
  max-width: 1230px;
}

.max-w-1330 {
  width: 100%;
  max-width: 1330px;
}

.max-w-1380 {
  width: 100%;
  max-width: 1380px;
}

.max-w-1400 {
  width: 100%;
  max-width: 1400px;
}

.max-w-1520 {
  width: 100%;
  max-width: 1520px;
}

.max-w-1600 {
  width: 100%;
  max-width: 1600px;
}

.max-w-1900 {
  width: 100%;
  max-width: 1900px;
}


.img-banners {
  width: 100%;
  max-width: 980px;
  height: 500px;
}

.underline {
  text-decoration: underline;
}

.dot {
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 100%;
  margin: 11px 16px 11px 4px;
  flex-shrink: 0;
}

footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-500);
}

.btn-inscription {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-300);
  border: 2px solid #fff;
  position: fixed; 
  bottom: 20px;
  border-radius: 60px;
  right: 20px;
  gap: 8px;
  z-index: 999;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.btn-inscription.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 20px));
}

/* ACCORDION */
.accordion-header {
  cursor: pointer;
  border: 0;
  width: 100%;
  transition: background-color 0.4s ease;
  text-align: left;
  gap: 16px;
}

.accordion-header p {
  transition: color 0.4s ease;
  line-height: normal;
}

.accordion-arrow {
  display: block;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.accordion-arrow.is-open {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease;
}

.accordion-content.is-open {
  opacity: 1;
}

/* ANIME */
.tags-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.tags-wrapper {
  display: flex;
  width: max-content;
  gap: 1rem;                    /* mesmo valor do gap interno */
  animation: scroll-left 50s linear infinite;
}

.tags-group {
  display: flex;
  align-items: center;
  gap: 1rem;                    /* mesmo valor */
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Base para elementos com animação */
[data-anime] { opacity: 0; animation-play-state: paused; /* Animação pausada até entrar na tela */ }

/* Tipos de animação */
[data-anime="top"] { animation-name: fromTop; }
[data-anime="right"] { animation-name: fromRight; }
[data-anime="left"] { animation-name: fromLeft; }
[data-anime="bottom"] { animation-name: fromBottom; }
[data-anime="center"] { animation-name: fromCenter; }

/* Tempos de animação */
[data-time="fast"] {
  animation-duration: 0.2s;
  animation-delay: 0.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="medium"] {
  animation-duration: 0.4s;
  animation-delay: 0.4s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow01"] {
  animation-duration: 0.6s;
  animation-delay: 0.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow02"] {
  animation-duration: 0.8s;
  animation-delay: 0.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow03"] {
  animation-duration: 1.0s;
  animation-delay: 1.0s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow04"] {
  animation-duration: 1.2s;
  animation-delay: 1.1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow05"] {
  animation-duration: 1.4s;
  animation-delay: 1.4s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow06"] {
  animation-duration: 1.6s;
  animation-delay: 1.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow07"] {
  animation-duration: 1.8s;
  animation-delay: 1.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow08"] {
  animation-duration: 2s;
  animation-delay: 2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow09"] {
  animation-duration: 2.2s;
  animation-delay: 2.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow10"] {
  animation-duration: 2.4s;
  animation-delay: 2.4s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow11"] {
  animation-duration: 2.6s;
  animation-delay: 2.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow12"] {
  animation-duration: 2.8s;
  animation-delay: 2.8s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

[data-time="slow13"] {
  animation-duration: 3s;
  animation-delay: 3s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

/* Dispara a animação quando a classe 'visible' é adicionada */
[data-anime].visible { animation-play-state: running; }

/* Definição das animações */
@keyframes fromTop {
  from { opacity: 0; transform: translate3d(0, -50px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fromRight {
  from { opacity: 0; transform: translate3d(50px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fromLeft {
  from { opacity: 0; transform: translate3d(-50px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fromBottom {
  from { opacity: 0; transform: translate3d(0, 50px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes fromCenter {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* TESTIMONIAL CAROUSEL */
.bg-gradient {
  position: relative;
  overflow: hidden;
}

.bg-gradient .relative {
  position: relative;
  overflow: hidden;
}

.bg-gradient .relative > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.bg-gradient .testimonial-slide-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(30px);
  z-index: 1;
}

.bg-gradient .testimonial-slide-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}

/* CAROUSEL BENEFIT */
.image-carousel-benefit {
  position: relative;
  overflow: hidden;
}

.image-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.image-carousel-slide-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(30px);
  z-index: 1;
}

.image-carousel-slide-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}

/* *************************** */

/* IMAGE CAROUSEL */
.image-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.image-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.image-carousel-slide-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(30px);
  z-index: 1;
}

.image-carousel-slide-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}

/* MEDIA QUERYS */
@media (max-width: 640px) {
  .movie {
    max-width: 360px;
    height: 200px;
  }
  .max-w-120 {
    width: 100%;
    max-width: 120px;
  }
  .max-w-140 {
    width: 100%;
    max-width: 140px;
  }

  .mt-40-neg{
    margin-top: -40px;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .movie {
    max-width: 600px;
    height: 330px;
  }

  .sm\:mt-55-neg {
    margin-top: -55px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .movie {
    max-width: 700px;
    height: 390px;
  }

  .md\:mt-80-neg {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .text-custom-8 {
    font-size: 8px;
  }
  .text-custom-10 {
    font-size: 10px;
  }
  .text-custom-11 {
    font-size: 12px;
  }
  .text-custom-12 {
    font-size: 12px;
  }
  .text-custom-20 {
    font-size: 20px;
  }
  .text-custom-22 {
    font-size: 22px;
  }
  .text-custom-60 {
    font-size: 60px;
  }
  .text-custom-70 {
    font-size: 70px;
  }

  .custom-text-secondary-400 { color: var(--primary-400); }

  .accordion-arrow {
    width: 14px;
    height: 7px;
  }

  .calendar, .time {
    width: 16px;
    height: 16px;
  }

  .button-arrow {
    width: 33px;
    height: 33px;
    cursor: pointer;
  }

  .icon {
    width: 36px;
    height: 36px;
  }

  .bullets {
    width: 23px;
    height: 23px;
  }

  /* Container externo (define a perspectiva) */
  .card-dev-plan-wrapper {
    perspective: 1000px;
    width: 100%;           /* ajuste conforme o layout */
    height: 220px;         /* altura fixa importante para o flip */
  }

  /* Elemento que gira */
  .card-dev-plan-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
  }

  /* Gira no hover */
  .card-dev-plan-wrapper:hover .card-dev-plan-inner {
    transform: rotateY(180deg);
  }

  /* Estilos comuns das faces */
  .card-dev-plan-front,
  .card-dev-plan-back {
    /* width: 100%;
    max-width: 280px;
    min-height: 330px; */
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 1rem;           /* ajuste para o seu design */
    backface-visibility: hidden;   /* esconde o verso quando não está virado */
    -webkit-backface-visibility: hidden;
  }

  /* Frente */
  .card-dev-plan-front {
    background-color: var(--primary-400);     /* cor de exemplo – troque pela sua */
  }

  /* Verso */
  .card-dev-plan-back {
    background-color: var(--primary-500);     /* mesma cor da frente = parece o mesmo card */
    transform: rotateY(180deg);
    text-align: center;
  }

  .circle {
    width: 64px;
    height: 59px;
  }

  .chat {
    width: 64px;
    height: 56px;
  }

  .book {
    width: 64px;
    height: 59px;
  }

  .lamp {
    width: 64px;
    height: 64px;
  }

  .notebook {
    width: 64px;
    height: 54px;
  }
  
  .file {
    width: 64px;
    height: 54px;
    
  }
  
  .peoples {
    width: 64px;
    height: 60px;
  }
  
  .rocket {
    width: 62px;
    height: 64px;
  }
}

@media (min-width: 768px) {
  .md\:max-w-620 {
    width: 100%;
    max-width: 620px;
  }

  h2 {
    font-family: 'GT-Pressura-Black';
    color: var(--primary-500);
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
  }

  .md\:text-custom-20 {
    font-size: 20px;
  }
  .md\:text-custom-22 {
    font-size: 22px;
  }
  .md\:text-custom-24 {
    font-size: 24px;
  }
  .md\:text-custom-28 {
    font-size: 28px;
  }
  .md\:text-custom-30 {
    font-size: 30px;
  }
  .md\:text-custom-32 {
    font-size: 32px;
  }
  .md\:text-custom-33 {
    font-size: 33px;
  }
  .md\:text-custom-36 {
    font-size: 36px;
  }
  .md\:text-custom-40 {
    font-size: 40px;
  }
  .md\:text-custom-50 {
    font-size: 50px;
  }
  .md\:text-custom-64 {
    font-size: 64px;
  }
  .md\:text-custom-70 {
    font-size: 70px;
  }
  .md\:text-custom-80 {
    font-size: 80px;
  }
  .md\:text-custom-90 {
    font-size: 90px;
  }

  .md\:bg-white {
    background-color: var(--white);
  }

  .accordion-arrow {
    width: 31px;
    height: 15px;
  }

  .button-arrow {
    width: 66px;
    height: 66px;
    cursor: pointer;
  }

  .icon {
    width: 32px;
    height: 32px;
  }

  .bullets {
    width: 32px;
    height: 32px;
  }

  .circle {
    width: 84px;
    height: 79px;
  }

  .chat {
    width: 84px;
    height: 76px;
  }

  .book {
    width: 84px;
    height: 79px;
  }

  .lamp {
    width: 84px;
    height: 84px;
  }

  .notebook {
    width: 84px;
    height: 74px;
  }
  
  .file {
    width: 84px;
    height: 74px;
    
  }
  
  .peoples {
    width: 84px;
    height: 80px;
  }
  
  .rocket {
    width: 82px;
    height: 84px;
  }

  /* Container externo (define a perspectiva) */
  .card-dev-plan-wrapper {
    perspective: 1000px;
    width: 100%;           /* ajuste conforme o layout */
    height: 280px;         /* altura fixa importante para o flip */
  }

  /* Elemento que gira */
  .card-dev-plan-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
  }

  /* Gira no hover */
  .card-dev-plan-wrapper:hover .card-dev-plan-inner {
    transform: rotateY(180deg);
  }

  /* Estilos comuns das faces */
  .card-dev-plan-front,
  .card-dev-plan-back {
    /* width: 100%;
    max-width: 280px;
    min-height: 330px; */
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 1rem;           /* ajuste para o seu design */
    backface-visibility: hidden;   /* esconde o verso quando não está virado */
    -webkit-backface-visibility: hidden;
  }

  /* Frente */
  .card-dev-plan-front {
    background-color: var(--primary-400);     /* cor de exemplo – troque pela sua */
  }

  /* Verso */
  .card-dev-plan-back {
    background-color: var(--primary-500);     /* mesma cor da frente = parece o mesmo card */
    transform: rotateY(180deg);
    text-align: center;
  }

  .calendar, .time {
    width: 16px;
    height: 16px;
  }
}

@media(min-width: 768px) and (max-width: 1520px) {
  .custom-max-w-400 {
    max-width: 400px;
  }
}

/* MENU MOBILE - Telas MENORES que 1024px */
@media (max-width: 1023px) {
  #check {
    display: none;
  }
  .checkbtn {
    width: 56px;
    height: 40px;
    font-size: 24px;
    float: right;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-400);
    border-radius: 8px;
    padding: 8px;
  }

  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-500);
    top: 52px;
    left: -100%;
    text-align: center;
    transition: all 0.5s;
  }
  nav ul li {
    display: block;
  }
  nav ul li a p{
    color: var(--white);
  }
  #check:checked ~ ul {
    left: 0;
  }
}

/* MENU DESKTOP - Telas 1024px ou MAIORES */
@media (min-width: 1024px) {
  .movie {
    max-width: 480px;
    height: 270px;
  }
  .lg\:w-460 {
    width: 460px;
  }
  .lg\:w-500 {
    width: 500px;
  }
  .lg\:max-w-484 {
    width: 100%;
    max-width: 484px;
  }
  .lg\:max-w-560 {
    width: 100%;
    max-width: 560px;
  }

  .lg\:max-w-600 {
    width: 100%;
    max-width: 600px;
  }
  .lg\:max-w-630 {
    width: 100%;
    max-width: 630px;
  }
  .lg\:max-w-1230 {
    width: 100%;
    max-width: 1230px;
  }

  .lg\:max-w-1920 {
    width: 100%;
    max-width: 1920px;
  }
  .lg\:top-370 {
    top: 280px
  }
  .lg\:mt-80-neg {
    margin-top: -80px;
  }

  .lg\:text-custom-36 {
    font-size: 36px;
  }
  .lg\:text-custom-90 {
    font-size: 90px;
  }

  .img-woman {
    width: 480px;
    height: 440px;
  }

  .lg\:pr-52 { padding-right: 13rem; /* 208px */ }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  #check {
    display: none;
  }
  .checkbtn {
    width: 56px;
    height: 40px;
    font-size: 30px;
    float: right;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-400);
    border-radius: 8px;
    padding: 8px;
  }

  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-500);
    top:72px;
    left: -100%;
    text-align: center;
    transition: all 0.5s;
  }
  nav ul li {
    display: block;
  }
  nav ul li a p{
    color: var(--white);
  }
  #check:checked ~ ul {
    left: 0;
  }

  
  .lg\:max-w-995 {
    width: 100%;
    max-width: 995px;
  }
}

@media (min-width: 1280px) {
  .checkbtn {
    display: none;
  }
  #check {
    display: none;
  }
  ul {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    text-align: left;
    transition: none;
  }
  nav ul li {
    display: inline-flex;
  }
  nav ul li a p {
    color: var(--white);
  }

  .xl\:max-w-140 {
    width: 100%;
    max-width: 140px;
  }

  .xl\:max-w-340 {
    width: 100%;
    max-width: 340px;
  }

  .xl\:max-w-460 {
    width: 100%;
    max-width: 460px;
  }

  .xl\:max-w-560 {
    width: 100%;
    max-width: 560px;
  }

  .xl\:max-w-574 {
    width: 100%;
    max-width: 574px;
  }

  .xl\:max-w-600 {
    width: 100%;
    max-width: 600px;
  }

  .xl\:max-w-615 {
    width: 100%;
    max-width: 615px;
  }

  .xl\:max-w-1000 {
    width: 100%;
    max-width: 1000px;
  }

  .xl\:max-w-1920 {
    width: 100%;
    max-width: 1920px;
  }

  .movie {
    max-width: 580px;
    height: 326px;
  }
}

@media (min-width: 1366px) {
  .xxl\:pl-0 {
    padding-left: 0; /* 0 */;
  }

  .xxl\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .xxl\:max-w-620 {
    width: 100%;
    max-width: 620px;
  }

  .xxl\:top-330 {
    top: 330px
  }

  .xxl\:gap-8 {
    gap: 32px;
  }
}

@media (min-width: 1520px) {
  .movie {
    max-width: 600px;
    height: 337px;
  }

  .full\:max-w-1400 {
    width: 100%;
    max-width: 1400px;
  }

  .full\:max-w-560 {
    width: 100%;
    max-width: 560px;
  }

  .full\:max-w-560 {
    width: 100%;
    max-width: 560px;
  }

  .full\:max-w-750 {
    width: 100%;
    max-width: 750px;
  }

  .full\:max-w-1920 {
    width: 100%;
    max-width: 1920px;
  }

  h2 {
    font-family: 'GT-Pressura-Black';
    color: var(--primary-500);
    font-size: 70px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
  }

  .full\:text-custom-20 {
    font-size: 20px;
  }
  .full\:text-custom-22 {
    font-size: 22px;
  }
  .full\:text-custom-24 {
    font-size: 24px;
  }
  .full\:text-custom-28 {
    font-size: 28px;
  }
  .full\:text-custom-30 {
    font-size: 30px;
  }
  .full\:text-custom-32 {
    font-size: 32px;
  }
  .full\:text-custom-33 {
    font-size: 33px;
  }
  .full\:text-custom-36 {
    font-size: 36px;
  }
  .full\:text-custom-40 {
    font-size: 40px;
  }
  .full\:text-custom-64 {
    font-size: 64px;
  }
  .full\:text-custom-70 {
    font-size: 70px;
  }
  .full\:text-custom-80 {
    font-size: 80px;
  }
  .full\:text-custom-90 {
    font-size: 90px;
  }

  .img-woman {
    width: 580px;
    height: 540px;
  }

  .full\:top-350 {
    top: 350px
  }
}