@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  /* Usamos padding-top e padding-bottom em vez da abreviação para não zerar as laterais */
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 992px) {
  .section {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  color: #282828;
  background-color: #FFFFFF;
  line-height: 1.6;
}

p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2.3rem;
  letter-spacing: 0.01rem;
  font-style: normal;
  color: #282828;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #282828;
  margin-bottom: 2rem;
  position: relative;
}
.section-title::before {
  content: "";
  display: block;
  width: 5rem;
  height: 0.6rem;
  background-color: #FBD209;
  margin-bottom: 1.5rem;
}
.section-title--center {
  text-align: center;
}
.section-title--center::before {
  margin: 0 auto 1.5rem;
}
@media (min-width: 992px) {
  .section-title {
    font-size: 3.6rem;
  }
}

.section-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2.3rem;
  letter-spacing: 0.01rem;
  font-style: normal;
  color: #282828;
}
.section-text--center {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}

.header {
  border-bottom: 1px solid #E0E0E0;
  background-color: #FFFFFF;
  height: 8.9rem;
  width: 100%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 11rem;
  height: 6.2rem;
  object-fit: contain;
  margin-left: 15rem;
}
@media (max-width: 996px) {
  .header__logo {
    margin-left: 1rem;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header__menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 992px) {
  .header__menu-toggle {
    display: none;
  }
}
.header .hamburger-box {
  width: 2.5rem;
  height: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header .hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #1A5D09;
  border-radius: 4px;
}
.header .nav {
  display: none;
  position: absolute;
  top: 8.9rem;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header .nav.is-active {
  display: block;
}
@media (min-width: 992px) {
  .header .nav {
    display: block;
    position: static;
    padding: 0;
    box-shadow: none;
    width: auto;
  }
}
.header .nav__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .header .nav__list {
    flex-direction: row;
    gap: 3rem;
  }
}
.header .nav {
  /* ===== ITEM ===== */
}
.header .nav__item {
  position: relative;
}
.header .nav {
  /* ===== LINK ===== */
}
.header .nav__link {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A5D09;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.header .nav {
  /* ===== CARET ===== */
}
.header .nav__caret {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}
.header .nav {
  /* ===== SUBMENU ===== */
}
.header .nav__submenu {
  display: block;
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 22rem;
  background: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
}
.header .nav__submenu li {
  list-style: none;
}
@media (min-width: 992px) {
  .header .nav__submenu {
    position: absolute;
  }
}
.header .nav__submenu {
  /* MOBILE: vira bloco normal */
}
@media (max-width: 996px) {
  .header .nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin-top: 1rem;
    display: none;
  }
}
.header .nav__sublink {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.3rem;
  color: #1A5D09;
  transition: background 0.2s;
}
.header .nav__sublink:hover {
  background: #f2f2f2;
}
.header .nav {
  /* ===== ESTADO ABERTO ===== */
}
.header .nav__item--open .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 996px) {
  .header .nav__item--open .nav__submenu {
    display: block;
  }
}
.header .nav__item--open .nav__caret {
  transform: rotate(180deg);
}
.header__search {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #282828;
  display: none;
}
@media (min-width: 992px) {
  .header__search {
    display: block;
  }
}

.button {
  display: inline-block;
  padding: 1.4rem 3.2rem;
  font-weight: 700;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button--primary {
  background-color: #259E38;
  color: #FFFFFF;
}
.button--primary:hover {
  background-color: rgb(33.3, 142.2, 50.4);
}
.button--small {
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
}

/* ==========================================
   HERO SLIDER 
   ========================================== */
.hero {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.hero .splide__track {
  overflow: visible;
}

.hero .splide__pagination {
  bottom: -3rem !important;
  padding-bottom: 1rem;
  display: flex !important;
  gap: 1rem;
  z-index: 20;
}
.hero .splide__pagination__page {
  background: transparent !important;
  border: 2px solid #FBD209 !important;
  width: 1rem !important;
  height: 1rem !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}
.hero .splide__pagination__page.is-active {
  background: #FBD209 !important;
  transform: scale(1.3);
  border-color: #FBD209 !important;
}

.hero .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background-color: #FBD209;
  width: 4rem;
  height: 4rem;
}
.hero .splide__arrow svg {
  fill: #FFFFFF;
}

.hero .splide__arrow--prev {
  left: 1rem;
}

.hero .splide__arrow--next {
  right: 1rem;
}

.hero__slide {
  position: relative;
}

.hero__image {
  width: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .hero__image {
    height: 55rem;
  }
  .hero .splide__arrow--prev {
    left: 7rem;
  }
  .hero .splide__arrow--next {
    right: 7rem;
  }
}
.hero__box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3rem;
  top: auto;
  width: 80%;
  max-width: 50rem;
  background-color: #259E38;
  padding: 3rem;
  color: #FFFFFF;
  z-index: 10;
  text-align: center;
}

@media (min-width: 992px) {
  .hero__box {
    bottom: auto;
    top: 37.4rem;
    width: 80rem;
    max-width: none;
    min-height: 21.6rem;
    padding: 4rem 5rem;
    text-align: left;
  }
}
.hero__title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .hero__title {
    font-size: 3.2rem;
  }
}
.hero__text {
  font-size: 1.4rem;
  color: #FFFFFF;
}

@media (min-width: 992px) {
  .hero__text {
    font-size: 1.7rem;
  }
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.feature-card__icon {
  width: 9.3rem;
  height: 9.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #FFFFFF;
  flex-shrink: 0;
  background-color: #259E38;
}
@media (max-width: 720px) {
  .feature-card__icon {
    width: 6rem;
    height: 6rem;
  }
}
.feature-card__icon img {
  width: 3.8rem;
  height: auto;
  display: block;
}
@media (max-width: 720px) {
  .feature-card__icon img {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.feature-card__title {
  font-size: 2.4rem;
  color: #282828;
  margin-bottom: 0.5rem;
}
.feature-card__text {
  font-size: 1.4rem;
}

.actions {
  background-color: #259E38;
  padding: 6rem 15rem;
}
.actions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 992px) {
  .actions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) {
  .actions {
    padding: 6rem 0;
  }
}

.action-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  color: #FFFFFF;
}
.action-card__icon {
  width: 9.3rem;
  height: 9.3rem;
  background-color: #FBD209;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .action-card__icon {
    width: 6rem;
    height: 6rem;
  }
}
.action-card__title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.action-card__text {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  color: #FFFFFF;
}
.action-card__link {
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 0.2rem;
  color: #FBD209;
}

.locations {
  background-color: #FFFFFF;
  padding-top: 0;
  padding-bottom: 10rem;
  overflow: visible !important;
  position: relative;
  z-index: 100 !important;
  overflow: visible !important;
}
.locations__content#maua {
  --current-color: #E73D63;
}
.locations__content#pouso {
  --current-color: #00BCD4;
}
.locations__content#uberaba {
  --current-color: #FF9800;
}
.locations__tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  transform: translateY(-2rem);
  z-index: 110 !important;
  position: relative;
}
@media (min-width: 768px) {
  .locations__tabs {
    flex-direction: row;
    justify-content: center;
  }
}
.locations__tab {
  padding: 1.2rem 3rem;
  border: none;
  color: #FFFFFF;
  font-weight: 700;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
  width: 100%;
  max-width: 35rem;
}
@media (min-width: 768px) {
  .locations__tab {
    width: auto;
  }
}
.locations__tab.active {
  opacity: 1;
  transform: translateY(-0.5rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}
.locations__tab--pink {
  background-color: #E73D63;
}
.locations__tab--blue {
  background-color: #00BCD4;
}
.locations__tab--orange {
  background-color: #FF9800;
}
.locations__content {
  display: none;
  text-align: center;
}
.locations__content.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}
.locations__desc {
  max-width: 80rem;
  margin: 0 auto 4rem;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 2rem;
}
.locations__desc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20rem;
  height: 0.6rem;
  background-color: var(--current-color);
}
.locations__slider-wrapper {
  position: relative !important;
  max-width: 80rem;
  margin: 0 auto;
  overflow: visible !important;
}
.locations__slider {
  padding: 0 7rem;
}
.locations__slider img {
  border-bottom-left-radius: 4rem;
  width: 100%;
  height: 40rem;
  object-fit: cover;
  display: block;
}
.locations__slider .splide__arrow {
  background-color: var(--current-color);
  opacity: 1;
  width: 4rem;
  height: 4rem;
  transition: opacity 0.3s ease;
}
.locations__slider .splide__arrow:hover {
  opacity: 0.8;
}
.locations__slider .splide__arrow svg {
  fill: #FFFFFF;
}
.locations__slider .splide__arrow--prev {
  left: -2rem;
}
.locations__slider .splide__arrow--next {
  right: -2rem;
}
.locations__slider .splide__pagination {
  bottom: -4rem;
}
.locations__slider .splide__pagination__page {
  background-color: transparent;
  border: 1px solid var(--current-color);
  margin: 0 0.5rem;
}
.locations__slider .splide__pagination__page.is-active {
  background-color: var(--current-color);
  transform: scale(1.1);
}
@media (max-width: 900px) {
  .locations__slider {
    padding: 0;
  }
  .locations__slider .splide__arrow--prev {
    left: 1rem;
  }
  .locations__slider .splide__arrow--next {
    right: 1rem;
  }
}
.locations .container {
  position: relative !important;
  overflow: visible !important;
}
.locations .leaf--locations {
  position: absolute !important;
  z-index: 20 !important;
  pointer-events: none;
  width: 200px;
  bottom: -120px !important;
  left: 1rem !important;
}
@media (max-width: 900px) {
  .locations .leaf--locations {
    width: 196px !important;
    left: -6.5rem !important;
    bottom: -12rem !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}
.contact .section-title {
  padding-top: 2rem;
}
.contact .section-title::before, .contact .section-title::after {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  right: auto;
  transform: none !important;
  margin: 0 !important;
}

.form {
  max-width: 900px;
  margin: 0 auto;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .form__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.form__input, .form__textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #FBD209;
  border-radius: 0.4rem;
  font-family: inherit;
  font-size: 1.4rem;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: #259E38;
}
.form__footer {
  text-align: right;
  margin-top: 2rem;
}

.form__wrapper {
  position: relative !important;
  max-width: 900px;
  margin: 0 auto;
  overflow: visible !important;
}

.leaf--form-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-130%, -10%);
  width: clamp(30rem, 45vw, 74.3rem);
  height: auto;
  opacity: 0.7;
  z-index: 0;
}

@media (max-width: 768px) {
  .leaf--form-bg {
    transform: translate(-100%, 100%);
  }
}
.footer {
  background-color: #F4F4F4;
  padding: 1rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #CCCCCC;
}
@media (min-width: 992px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 2fr 1fr;
  }
}
.footer__logo {
  width: 11rem;
  height: 6rem;
  object-fit: contain;
}
.footer__title {
  font-size: 1.4rem;
  color: #282828;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.footer__title--semi {
  font-size: 1.41rem;
  font-weight: 500;
}
.footer__list li {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: #282828;
}
.footer__icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__bottom p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2.3rem;
  letter-spacing: 0.01rem;
  font-style: normal;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.footer__back-top {
  font-size: 1.35rem;
  color: #282828;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  white-space: nowrap;
}

.challenges {
  overflow-x: clip !important;
  overflow-y: hidden !important;
}
.challenges__top {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 10rem;
}
@media (min-width: 992px) {
  .challenges__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8rem;
  }
}
.challenges__image {
  position: relative;
  display: inline-block;
}
.challenges__image-wrapper {
  position: relative !important;
  width: 100%;
  max-width: 537px;
  align-self: center;
  overflow: visible !important;
  display: block;
}
.challenges__image-wrapper .challenges__main-img {
  width: 100%;
  height: auto;
  display: block;
  border-top-right-radius: 2.9rem;
  border-bottom-left-radius: 2.9rem;
  position: relative;
  z-index: 2;
}
.challenges__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .challenges__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

.leaf {
  position: absolute !important;
  z-index: 3 !important;
  pointer-events: none;
  width: 180px !important;
  height: auto;
}
.leaf--top-right {
  top: -140px;
  right: 0;
  transform: scaleX(-1) rotate(180deg) translate(55%, -40%) !important;
}
.leaf--bottom-left {
  bottom: -110px !important;
  left: 0;
  transform: translate(-45%);
}

.about {
  background-color: #F4F4F4;
  position: relative;
  z-index: 1;
}
.about__grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 992px) {
  .about__grid {
    flex-direction: row;
  }
}
.about__content {
  flex: 1;
}
.about__logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

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