:root {
  /* Espacios y paleta principal */
  --margin-h: 64px;
  --green-neutral: #6da08d;
  --green-medium: #269069;
  --green-high: #0bcf7d;
  --blue-dark: #0f2631;
  --white-neutral: #cecece;
  --bg-gradient-start: #0d3d39;
  --bg-gradient-end: #0f2631;

  /* Breakpoints */
  --bp-desktop: 1440px;
  --bp-tablet: 1024px;
  --bp-mobile: 375px;

  /* Container padding */
  --container-padding: clamp(16px, 5vw, 64px);
}

/* =======================================================================================================================
   RESET & BASE
   ======================================================================================================================= */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, Roboto, Helvetica, sans-serif;
  color: var(--white-neutral);
  background: var(--blue-dark);
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* =======================================================================================================================
   VISION HERO
   ======================================================================================================================= */
.hero-vision {
  background: radial-gradient(75.98% 75.98% at 50% 23.94%, rgba(38, 144, 105, 0.20) 0%, rgba(15, 38, 49, 0.20) 100%),
              linear-gradient(180deg, #0D3937 0%, #0F2631 100%);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px var(--container-padding);
}

.hero-vision__container {
  width: 100%;
  max-width: var(--bp-desktop);
  display: flex;
  flex-direction: column;
  padding-top: 64px;
}

.hero-vision__title {
  background: linear-gradient(90deg, #BDFEE3 15.45%, #5CDFA8 48.73%, #A169E7 82%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Inter, sans-serif;
  font-size: 65px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin: 0;
  margin-top: 64px;
}

/* =======================================================================================================================
   VISION PAGE
   ======================================================================================================================= */

.vision-page {
  background: linear-gradient(180deg, #0F2631 18.71%, #0D3D39 53.9%, #112428 91.08%);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.vision-paragraphs {
  display: flex;
  flex-direction: column;
  padding: 50px 0;
  gap: 40px;
  width: 100%;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.vision-paragraphs__container {
  max-width: 1090px;
  width: 100%;
  padding: 0 32px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.vision-paragraph {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.vision-paragraph__image {
  flex: 0 1 423px;
  aspect-ratio: 423 / 422;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

.vision-paragraph__image-empty {
  flex: 0 1 423px;
}

.vision-paragraph__text-wrapper {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vision-divider {
  height: 1.5px;
  background-color: #269069;
  border: none;
  width: 100%;
  margin: 0;
}

.vision-text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}

.vision-text-block__title {
  font-family: -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  background: linear-gradient(90deg, #BDFEE3 15.45%, #5CDFA8 50.25%, #A169E7 85.05%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.vision-text-block__description {
  color: var(--green-neutral, #6DA08D);
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.vision-paragraphs--colored-bg {
  background: var(--green-low, #0D3D39);
}

/* =======================================================================================================================
   VISION JOIN US
   ======================================================================================================================= */
.vision-join-us {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 50px 0;
}

.vision-join-us__container {
  max-width: 1090px;
  width: 100%;
  padding: 0 32px;
  box-sizing: border-box;
}

.vision-join-us__divider {
  height: 1.5px;
  background-color: #269069;
}

.vision-join-us__content {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
}

.vision-join-us__title {
  flex: 0 0 35%;
  font-family: -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0%;
  background: linear-gradient(90deg, #BDFEE3, #5CDFA8, #A169E7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.vision-join-us__description {
  flex: 1;
  color: var(--green-neutral, #6DA08D);
  font-size: 18px;
  line-height: 1.6; 
  margin: 0;
}

.vision-join-us__highlight {
  color: var(--white-neutral, #cecece);
  margin: 0;
}

/* =======================================================================================================================
   MEDIA QUERIES
   ======================================================================================================================= */


@media (max-width: 1024px) {
  .hero-vision__title {
    font-size: 50px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .vision-paragraphs__container,
  .vision-join-us__container {
    padding: 0 40px;
    gap: 30px;
  }

  .vision-paragraphs {
    padding: 30px 0;
  }

  .vision-paragraph {
    gap: 40px;
  }

  .vision-paragraph__image {
    width: 350px;
    height: 350px;
  }

  .vision-text-block__title {
    font-size: 26px;
    line-height: 36px;
  }

  .vision-text-block__description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  /* HERO */
  .hero-vision__title {
    font-size: 40px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .hero-vision__container {
    padding: 64px 20px 0 20px;
  }

  /* PARAGRAPHS */
  .vision-paragraphs__container,
  .vision-join-us__container {
    padding: 0 20px;
    gap: 40px;
  }

  .vision-paragraphs {
    padding: 20px 0;
  }

  .vision-paragraph {
    flex-direction: column;
    gap: 30px;
  }

  .vision-paragraph__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    flex-basis: auto;
  }

  .vision-paragraph__image-empty {
    flex-basis: 0;
    height: 0;
    margin-top: -30px;
  }

  .vision-text-block__title {
    font-size: 22px;
    line-height: 30px;
  }
  .vision-text-block__description {
    font-size: 16px;
  }

  /* JOIN US */
  .vision-join-us__content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .vision-join-us__title {
    flex-basis: auto;
  }
}

.main-header__link.w--current, .footer__link.w--current {
  color: var(--green-high) !important;
  font-weight: 600;
}

/* =======================================================================================================================
   ANIMATIONS
   ======================================================================================================================= */

/* Animations */
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0s;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0s;
}

.reveal-bottom {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}

.reveal-bottom.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

/* Responsive */