/* CUSTOM */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.max-w-320 {
  width: 100%;
  max-width: 320px;
}
.max-w-345 {
  width: 100%;
  max-width: 345px;
}
.max-w-420 {
  width: 100%;
  max-width: 420px;
}
.max-w-500 {
  width: 100%;
  max-width: 500px;
}
.max-w-530 {
  width: 100%;
  max-width: 530px;
}
.max-w-550 {
  width: 100%;
  max-width: 550px;
}
.max-w-585 {
  width: 100%;
  max-width: 585px;
}
.max-w-600 {
  width: 100%;
  max-width: 600px;
}
.max-w-610 {
  width: 100%;
  max-width: 610px;
}
.max-w-630 {
  width: 100%;
  max-width: 630px;
}
.max-w-650 {
  width: 100%;
  max-width: 650px;
}
.max-w-750 {
  width: 100%;
  max-width: 750px;
}
.max-w-800 {
  width: 100%;
  max-width: 800px;
}
.max-w-850 {
  width: 100%;
  max-width: 850px;
}
.max-w-880 {
  width: 100%;
  max-width: 880px;
}
.max-w-1010{
  width: 100%;
  max-width: 1010px;
}
.max-w-1090 {
  width: 100%;
  max-width: 1090px;
}
.max-h-fit {
  max-height: fit-content;
}

.mt-32-neg {
  margin-top: -32px;
}
.mb-48-neg {
  margin-bottom: -48px;
}

.text-gradient {
  background: linear-gradient(0deg, var(--primary-500) 0%, var(--primary-400) 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}

.bg-business {
  background-image: url('../img/bg-business.webp');
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-about-program {
  background-image: url('../img/bg-sobre-programa.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
}

.bg-steps {
  background-image: url('../img/bg-steps.webp');
  background-size: cover;
  background-repeat: no-repeat;
}

.background-linear {
  background: linear-gradient(0deg, var(--primary-500) 0%, var(--primary-400) 100%);
}

.box-steps {
  width: 263px;
  height: 263px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 32px;
}

.box-shadow-sm {
  box-shadow: 1px 4px 4px rgba(0, 0, 0, 0.30);
}

/* ACCORDION STYLES */
.accordion-trigger {
  position: relative;
  z-index: 10;
  margin-left: 20px;
  margin-right: 20px;
}

.accordion-content {
  position: relative;
  z-index: 10;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-icon.open {
  transform: rotate(180deg);
}

/* ANIME */
/* 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); }
}

/* MEDIA QUERYS */
@media (max-width: 640px) {}

@media (min-width: 640px) and (max-width: 767px) {}

@media (min-width: 768px) and (max-width: 1023px) {}

@media (max-width: 768px) {
  h2 {
    font-size: 20;
    line-height: 24px;
    font-family: 'BayerSans-Heavy', sans-serif;
  }
  .custom-12 {
    font-size: 12px;
    line-height: 16px;
  }
  .custom-14 {
    font-size: 14px;
    line-height: 18px;
  }
  .custom-18 {
    font-size: 18px;
    line-height: 22px;
  }
  .custom-24 {
    font-size: 24px;
    line-height: 28px;
  }
  .icon-business {
    width: 26px;
    height: 18px;
  }
  .box-bayer {
    width: 140px;
    height: 140px;
  }
  .arrow-green-mobile {
    width: 12px;
    height: 12px;
  }
  .accordion-icon {
    width: 18px;
    height: 9px;
  }
  .bg-pre-requisits {
    background-image: url('../img/bg-prerequisits-mobile.webp');
    background-size: contain;
    background-repeat: no-repeat;
  }
  .accordion-content.open {
    border: 2px solid var(--primary-400);
    border-radius: 32px;
    margin-top: -28px;
    padding: 80px 80px 60px;
    position: relative;
    z-index: 9;
    /* max-height will be set dynamically */
  }
}

@media (min-width: 768px) {
  h2 {
    font-size: 64px;
    line-height: 68px;
    font-family: 'BayerSans-Heavy', sans-serif;
  }
  .md\:custom-24 {
    font-size: 24px;
    line-height: 28px;
  }
  .md\:custom-28 {
    font-size: 28px;
    line-height: 32px;
  }
  .md\:custom-32 {
    font-size: 32px;
    line-height: 36px;
  }
  .md\:custom-34 {
    font-size: 34px;
    line-height: 38px;
  }
  .md\:custom-40 {
    font-size: 40px;
    line-height: 44px;
  }
  .md\:custom-50 {
    font-size: 50px;
    line-height: 54px;
  }
  .md\:custom-90 {
    font-size: 90px;
    line-height: 94px;
  }
  .bg-pre-requisits {
    background-image: url('../img/bg-prerequisits.webp');
    background-size: contain;
    background-repeat: no-repeat;
  }
  .md\:max-w-600 {
    width: 100%;
    max-width: 600px;
  }
  .md\:max-w-850 {
    width: 100%;
    max-width: 850px;
  }
  .md\:max-h-fit {
    max-height: fit-content;
  }
  .accordion-content.open {
    border: 2px solid var(--primary-400);
    border-radius: 32px;
    margin-top: -48px;
    padding: 80px 80px 60px;
    position: relative;
    z-index: 9;
    /* max-height will be set dynamically */
  }
  .md\:bg-gray-500 { background-color: var(--gray-500); }
}

/* MENU MOBILE - Telas MENORES que 1024px */
@media (max-width: 1023px) {
  .top-32-neg { top: -32px; }
  .top-48-neg { top: -48px; }
  .left-20-perc { left: 20%; }
  .mx-5 {
    margin-left: 1.25rem; /* 20px */
    margin-right: 1.25rem; /* 20px */
  }
}

/* MENU DESKTOP - Telas 1024px ou MAIORES */
@media (min-width: 1024px) {
  .lg\:max-w-585 {
    width: 100%;
    max-width: 585px;
  }
  .lg\:max-w-600 {
    width: 100%;
    max-width: 600px;
  }
  .lg\:h-860{
    height: 860px;
  }
  h2 {
    font-size: 64px;
    line-height: 68px;
    font-family: 'BayerSans-Heavy', sans-serif;
  }
  .lg\:custom-24 {
    font-size: 24px;
    line-height: 28px;
  }
  .lg\:custom-28 {
    font-size: 28px;
    line-height: 32px;
  }
  .lg\:custom-32 {
    font-size: 32px;
    line-height: 36px;
  }
  .lg\:custom-34 {
    font-size: 34px;
    line-height: 38px;
  }
  .lg\:custom-40 {
    font-size: 40px;
    line-height: 44px;
  }
  .lg\:custom-90 {
    font-size: 90px;
    line-height: 94px;
  }
  .lg\:top-32-neg {
    top: -32px;;
  }
  .lg\:left-160-neg {
    left: -160px;
  }
  .lg\:left-10-neg {
    left: -10px;
  }
  .lg\:left-180 {
    left: 180px;
  }
  .lg\:bottom-180-neg {
    bottom: -180px;
  }
  .lg\:bottom-120 {
    bottom: 120px;
  }
  .lg\:mb-48-neg {
    margin-bottom: -48px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {}

@media (min-width: 1280px) {
  .xl\:max-w-1000{
    width: 100%;
    max-width: 1000px;
  }
  .xl\:absolute {
    position: absolute;
  }
  .xl\:shrink-0 {
    flex-shrink: 0;
  }
  .xl\:left-100 {
    left: 100px;
  }
  .xl\:right-80-neg {
    right: -80px;
  }
  .xl\:gap-0 {
    gap: 0;
  }
}

@media (min-width: 1366px) {
  .xxl\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xxl\:pt-0 {
    padding-top: 0;
  }
  .xxl\:mt-300-neg {
    margin-top: -300px;
  }
  .xxl\:max-w-650 {
    width: 100%;
    max-width: 650px;
  }
  .xxl\:max-w-1010{
    width: 100%;
    max-width: 1010px;
  }
  .xxl\:items-end {
    align-items: end;
  }
  .xxl\:left-180 {
    left: 180px;
  }
  .xxl\:hidden {
    display: none;
  }
  .xxl\:block {
    display: block;
  }
}

@media (min-width: 1536px) {
  .full\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
}
