@charset "UTF-8";
/* Base */
/* ==========================================================
   PALETA
   ========================================================== */
/* ==========================================================
   COLORES SEMÁNTICOS (DERIVADOS)
========================================================== */
/* ==========================================================
   SOMBRAS
========================================================== */
/* ==========================================================
   TIPOGRAFÍA
   ========================================================== */
/* Fuente principal de la interfaz
   Pendiente de confirmar con el diseñador */
/* Pesos */
/* Escala tipográfica */
/* ==========================================================
   ESPACIADOS
   ========================================================== */
/* ==========================================================
   BORDES
   ========================================================== */
/* ==========================================================
   TRANSICIONES
   ========================================================== */
body {
  font-family: "Poppins", sans-serif;
}

.intro__title {
  font-weight: 600;
}

.intro__description {
  font-weight: 500;
}

.intro__accent {
  font-style: italic;
  font-weight: 500;
}

/* Layout */
/* Base */
.footer {
  background: #000;
  color: white;
  padding: 5rem 2rem 2rem;
}
.footer__container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
  }
}
.footer__logo {
  width: 70px;
  margin-bottom: 1.5rem;
}
.footer h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: white;
}
.footer h4 {
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
}
.footer p {
  max-width: 420px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}
.footer__links, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: 0.25s ease;
}
.footer a:hover {
  color: #F9C59B;
  padding-left: 0.35rem;
}
.footer__bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Components */
/* Base */
/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
  margin-top: 3rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #FF9536;
  border-color: #FF9536;
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #104730;
  border-color: #104730;
  color: #FFFFFF;
}

.btn-primary:focus,
.btn-primary:active {
  background: #104730 !important;
  border-color: #104730 !important;
  box-shadow: none;
}

.ecosystem {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ecosystem__svg {
  width: 100%;
  height: 100%;
}

/* Base */
.section-nav {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(30px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.section-nav--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.section-nav__item {
  border: none;
  outline: none;
  background: transparent;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
  color: #104730;
  font-size: 0.78rem;
  font-weight: 600;
  transition: 0.25s;
}

.section-nav__item i {
  font-size: 1.15rem;
  line-height: 1;
}

.section-nav__item:hover {
  background: #EBF4E6;
}

.section-nav__item--active {
  background: #104730;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(16, 71, 48, 0.25);
}

/* ------------------------------ */
/* Mobile                         */
/* ------------------------------ */
@media (max-width: 768px) {
  .section-nav {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
    transform: translateY(30px);
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.15rem;
    padding: 0.45rem;
    border-radius: 18px;
  }
  .section-nav--visible {
    transform: translateY(0);
  }
  .section-nav__item {
    flex: 1;
    min-width: 0;
    padding: 0.55rem 0.2rem;
    font-size: 0.65rem;
  }
  .section-nav__item i {
    font-size: 1.1rem;
  }
}
/* Scenes */
/* Base */
/* ==========================================================
   INTRO
========================================================== */
.intro {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #FFFFFF;
}

/* ==========================================================
   MEDIA
========================================================== */
.intro__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.intro__background,
.intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__overlay {
  position: absolute;
  inset: 0;
  /* Permite apreciar el video manteniendo la legibilidad */
  background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================
   WRAPPER
========================================================== */
.intro__wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.intro__wrapper .container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 7rem;
}

/* ==========================================================
   BRAND
========================================================== */
.intro__brand {
  position: relative;
  top: 95px;
  margin-bottom: 2.2rem;
}

.intro__logo {
  display: block;
  width: 260px;
  max-width: 75vw;
  height: auto;
  transform-origin: center center;
  will-change: transform;
}

/* ==========================================================
   CONTENT
========================================================== */
.intro__content {
  max-width: 760px;
  margin-top: 1.2rem;
}

.intro__title {
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.45);
}

.intro__description {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.intro__button {
  min-width: 240px;
}

/* ==========================================================
   SCROLL INDICATOR
========================================================== */
.intro__scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 20;
}

.intro__scroll-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
}

.intro__mouse {
  position: relative;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.intro__wheel {
  width: 4px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: #fff;
  will-change: transform;
}

/* Base */
.story {
  min-height: 100vh;
  color: rgb(239, 246.2, 235);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1.5rem;
  text-align: center;
}
.story__content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.story__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  color: #FF9536;
}
.story__title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #104730;
}
.story__text {
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
}
.story {
  /* ==========================
     MENÚ
  ========================== */
}
.story__menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.story__nav-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  padding: 1.4rem;
  border: none;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: 0.3s ease;
  color: #104730;
}
.story__nav-button i {
  font-size: 2rem;
  transition: 0.3s;
}
.story__nav-button span {
  font-size: 0.95rem;
  font-weight: 600;
}
.story__nav-button:hover {
  transform: translateY(-6px);
  background: #104730;
  color: #FFFFFF;
}
.story__nav-button:hover i {
  transform: scale(1.15);
}

/* ==========================
   TABLET
========================== */
@media (max-width: 991px) {
  .story__menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ==========================
   MOBILE
========================== */
@media (max-width: 576px) {
  .story {
    padding: 4rem 1.25rem;
  }
  .story__title {
    font-size: 2.4rem;
  }
  .story__text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .story__menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .story__nav-button {
    padding: 1.2rem;
  }
  .story__nav-button i {
    font-size: 1.7rem;
  }
  .story__nav-button span {
    font-size: 0.9rem;
  }
  .story__nav-button:last-child {
    grid-column: 1/-1;
    max-width: 220px;
    justify-self: center;
  }
}
/* Base */
.mission {
  min-height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, #EBF4E6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
}
.mission__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.mission__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
}
.mission__title {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: #104730;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.08;
  font-weight: 700;
}
.mission__lead {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  font-size: 1.3rem;
  color: #104730;
  line-height: 1.8;
}
.mission__description {
  max-width: 760px;
  margin: 0 auto 5rem;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.1rem;
  line-height: 1.9;
}
.mission__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
}
.mission__pillar {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 3rem 2.2rem;
  transition: 0.35s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}
.mission__pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}
.mission__pillar:hover .mission__icon i {
  transform: scale(1.08);
  color: #FF9536;
}
.mission__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.75rem;
}
.mission__icon i {
  font-size: 3.4rem;
  color: #104730;
  transition: transform 0.3s ease, color 0.3s ease;
}
.mission h3 {
  color: #104730;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.mission p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .mission {
    padding: 6rem 1.5rem;
  }
  .mission__pillars {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .mission {
    padding: 5rem 1rem;
  }
  .mission__title {
    font-size: 2.2rem;
  }
  .mission__lead {
    font-size: 1.05rem;
  }
  .mission__description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  .mission__pillar {
    padding: 2rem 1.5rem;
    border-radius: 22px;
  }
  .mission__icon i {
    font-size: 3rem;
  }
  .mission h3 {
    font-size: 1.5rem;
  }
}

/* Base */
.paths {
  background: #EBF4E6;
  padding: 8rem 2rem;
}
.paths__content {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.paths__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF9536;
}
.paths__title {
  color: #104730;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.paths__description {
  max-width: 850px;
  margin: 0 auto 5rem;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.15rem;
  line-height: 1.9;
}
.paths__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 2rem;
}
.paths__card {
  display: flex;
  flex-direction: column;
  text-align: left;
  text-decoration: none;
  color: inherit;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.paths__card:hover {
  transform: translateY(-8px);
  border-color: #FF9536;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.paths__card:hover .paths__icon i {
  color: #FF9536;
  transform: scale(1.08);
}
.paths__card:hover .paths__status {
  background: #FF9536;
  background: #FFFFFF;
}
.paths__card:focus-visible {
  outline: 3px solid rgba(255, 149, 54, 0.3);
  outline-offset: 4px;
}
.paths__card h3 {
  margin: 0 0 1rem;
  color: #104730;
  font-size: 1.4rem;
}
.paths__card p {
  flex: 1;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.paths__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.paths__icon i {
  font-size: 3rem;
  color: #104730;
  transition: color 0.3s ease, transform 0.3s ease;
}
.paths__status {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 149, 54, 0.12);
  color: #FF9536;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (max-width: 900px) {
  .paths .paths__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .paths {
    padding: 5rem 1rem;
  }
  .paths__title {
    font-size: 2.1rem;
  }
  .paths__description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  .paths__card {
    padding: 2rem 1.5rem;
  }
  .paths__icon i {
    font-size: 2.6rem;
  }
  .paths h3 {
    font-size: 1.3rem;
  }
}

/* Base */
.nature {
  min-height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, rgb(248, 251.15, 246.25) 45%, #EBF4E6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem;
}
.nature__content {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}
.nature__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #FF9536;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  font-weight: 600;
}
.nature__title {
  color: #104730;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}
.nature__description {
  max-width: 850px;
  margin: 0 auto 5rem;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.15rem;
  line-height: 1.9;
}
.nature__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}
.nature .card-species {
  grid-column: 1/span 2;
}
.nature .card-producers {
  grid-column: 3/span 2;
}
.nature .card-restoration {
  grid-column: 5/span 2;
}
.nature .card-community {
  grid-column: 2/span 2;
}
.nature .card-explore {
  grid-column: 4/span 2;
}
.nature__card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 22px;
  padding: 2.5rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.nature__card:visited {
  color: inherit;
}
.nature__card:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-10px);
  border-color: #FF9536;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.nature__card:hover .nature__icon i {
  color: #FF9536;
  transform: scale(1.08);
}
.nature__card h3 {
  color: #104730;
  margin: 1rem 0;
  font-size: 1.6rem;
  text-decoration: none;
}
.nature__card p {
  flex: 1;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
  text-decoration: none;
}
.nature__icon {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(16, 71, 48, 0.05);
  margin-bottom: 0.75rem;
}
.nature__icon i {
  font-size: 2.7rem;
  color: #104730;
  transition: 0.3s;
}
.nature__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: #104730;
  background: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.nature__button:hover {
  background: #FF9536;
  background: #FFFFFF;
  transform: translateY(-2px);
}
@media (max-width: 1100px) {
  .nature__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nature .card-species,
  .nature .card-producers,
  .nature .card-restoration,
  .nature .card-community,
  .nature .card-explore {
    grid-column: auto;
  }
}
@media (max-width: 768px) {
  .nature {
    padding: 5rem 1rem;
  }
  .nature__grid {
    grid-template-columns: 1fr;
  }
}

/* Base */
.technology {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem;
  background: #FFFFFF;
}
.technology__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.technology__eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FF9536;
  margin-bottom: 1rem;
}
.technology__title {
  color: #104730;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 700px;
}
.technology__description {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 900px;
  margin-bottom: 4rem;
}
.technology__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.technology__card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: #EBF4E6;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.technology__card:hover {
  transform: translateY(-6px);
  border-color: #FF9536;
  box-shadow: 0 16px 40px rgba(16, 71, 48, 0.1);
}
.technology__card:hover .technology__icon i {
  color: #FF9536;
  transform: scale(1.08);
}
.technology__card:hover h3 {
  color: #104730;
}
.technology__card h3 {
  color: #104730;
  margin: 1rem 0;
  font-size: 1.35rem;
}
.technology__card p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
}
.technology__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.technology__icon i {
  font-size: 3rem;
  color: #104730;
  transition: color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 900px) {
  .technology {
    padding: 6rem 1.5rem;
  }
  .technology__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .technology {
    padding: 5rem 1rem;
  }
  .technology__title {
    font-size: 2.1rem;
  }
  .technology__description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  .technology__card {
    padding: 2rem 1.5rem;
  }
  .technology__icon i {
    font-size: 2.6rem;
  }
  .technology h3 {
    font-size: 1.3rem;
  }
}

/* Base */
.contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem;
  background: #104730;
}
.contact__container {
  width: 100%;
  max-width: 760px;
  text-align: center;
}
.contact__eyebrow {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.contact__title {
  color: white;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}
.contact__lead {
  color: white;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.contact__description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.contact__card {
  overflow: hidden;
}
.contact__card form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}
.contact__card iframe,
.contact__card .g-recaptcha,
.contact__card .g-recaptcha > div {
  max-width: 100% !important;
  margin: 0 auto !important;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact form p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
}
.contact label {
  color: #104730;
  font-weight: 600;
}
.contact input,
.contact textarea,
.contact select {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  transition: 0.25s;
}
.contact input:focus,
.contact textarea:focus,
.contact select:focus {
  outline: none;
  border-color: #FF9536;
  box-shadow: 0 0 0 4px rgba(255, 149, 54, 0.15);
}
.contact textarea {
  min-height: 180px;
  resize: vertical;
}
.contact__button {
  align-self: center;
  margin-top: 1rem;
  background: #FF9536;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}
.contact__button:hover {
  background: rgb(255, 127.4835820896, 13.2);
  transform: translateY(-2px);
}
.contact__footer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact__item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* naturaleza */
/* Base */
/*=====================================================
HOME
=====================================================*/
.nature-home {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem 0 4rem;
}

/*=====================================================
HERO
=====================================================*/
.nature-home__hero {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.nature-home__hero h1 {
  margin-bottom: 1rem;
}

.nature-home__hero p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.1rem;
  line-height: 1.8;
}

/*=====================================================
EXPLORADOR
=====================================================*/
.nature-explorer {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.nature-explorer__header {
  text-align: center;
  margin-bottom: 2rem;
}

.nature-explorer__header h2 {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.nature-explorer__header p {
  color: rgba(0, 0, 0, 0.7);
}

/*=====================================================
TABS
=====================================================*/
.nature-explorer__tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.nature-tab {
  border: none;
  background: #EBF4E6;
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s;
}

.nature-tab:hover {
  background: #d9eedc;
}

.nature-tab.active {
  background: #104730;
  color: #FFFFFF;
}

/*=====================================================
BUSCADOR
=====================================================*/
.nature-search {
  margin-bottom: 2rem;
}

.nature-search input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
}

/*=====================================================
LAYOUT
=====================================================*/
.nature-layout {
  display: grid;
  grid-template-columns: minmax(290px, 320px) 1fr;
  gap: 1.5rem;
}

/*=====================================================
SIDEBAR
=====================================================*/
.nature-sidebar {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
}

.nature-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: #EBF4E6;
}

.nature-results {
  height: 560px;
  overflow-y: auto;
}

.nature-results__empty {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 2rem;
}

/*=====================================================
MAPA
=====================================================*/
.nature-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

#map {
  width: 100%;
  height: 560px;
  background: #EBF4E6;
}

/*=====================================================
RESTAURACION
=====================================================*/
.nature-section {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.nature-section__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.nature-placeholder {
  color: rgba(0, 0, 0, 0.7);
}

/*=====================================================
TABLET
=====================================================*/
@media (max-width: 992px) {
  .nature-layout {
    grid-template-columns: 1fr;
  }
  .nature-results {
    height: 280px;
  }
  #map {
    height: 420px;
  }
}
/*=====================================================
MOBILE
=====================================================*/
@media (max-width: 768px) {
  .nature-home {
    gap: 2.5rem;
  }
  .nature-explorer {
    padding: 1.2rem;
  }
  .nature-explorer__tabs {
    flex-direction: column;
  }
  .nature-tab {
    width: 100%;
  }
  #map {
    height: 320px;
  }
}
/* Base */
/*=====================================================
VOLVER A LA LANDING
=====================================================*/
/*=====================================================
HEADER
=====================================================*/
.nature-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.nature-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nature-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: #EBF4E6;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #104730;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.nature-header__back:hover {
  background: #104730;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 71, 48, 0.18);
}

.nature-header__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #104730;
  font-weight: 700;
}

/*=====================================================
MOBILE
=====================================================*/
/* tecnologia */
/* Base */
/*=====================================================
TENCOLOGÍA
=====================================================*/
.tech-hero {
  padding: 8rem 0 5rem;
  text-align: center;
  background: #FFFFFF;
}
.tech-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: #104730;
  margin: 1rem 0 2rem;
}
.tech-hero p {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.15rem;
}
.tech-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #FF9536;
  font-weight: 600;
}

.tech-section {
  padding: 6rem 0;
  background: #FFFFFF;
}
.tech-section__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tech-section--reverse {
  background: #EBF4E6;
}
.tech-section--reverse .tech-section__grid {
  grid-template-columns: 1fr 1.1fr;
}
.tech-section__image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.tech-section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #FF9536;
  font-weight: 600;
}
.tech-section h2 {
  margin: 1rem 0 2rem;
  color: #104730;
  font-size: 2.6rem;
}
.tech-section p {
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
}
.tech-section ul {
  margin-top: 2rem;
  padding-left: 1.2rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 2;
}

@media (max-width: 992px) {
  .tech-section__grid {
    grid-template-columns: 1fr;
  }
  .tech-section--reverse .tech-section__grid {
    grid-template-columns: 1fr;
  }
}
/* Base */
/*=====================================================
HEADER
=====================================================*/
.technology-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.technology-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.technology-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: #EBF4E6;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #104730;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.technology-header__back:hover {
  background: #104730;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 71, 48, 0.18);
}

.technology-header__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(31.5586206897, 140.0413793103, 94.675862069);
  font-weight: 700;
}

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