:root {
  --verde-principal: #1f6b4e;
  --verde-oscuro: #0f3d2e;
  --verde-claro: #8fffc1;

  --blanco-suave: #eafbf3;
  --blanco: #ffffff;

  --texto-claro: #f5fdf9;
  --texto-oscuro: #123028;
}



/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--blanco-suave);
  color: var(--texto-oscuro);
  line-height: 1.6;
  padding-top: 80px;
}



.container {
  width: min(1200px, 90%);
  margin: auto;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(
    to right,
    #0f3d2e,
    #1f6b4a
  );
  z-index: 1000;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  padding: .4rem .8rem;
  border-radius: 12px;
  transition: all .35s ease;
}

.brand img {
  width: 42px;
  height: auto;
  display: block;
}

.brand-text span {
  display: block;
  font-size: .7rem;
  letter-spacing: 2px;
  opacity: .8;
  color: #dff5ea;
}

.brand-text strong {
  font-size: 1.2rem;
  color: #ffffff;
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
}

.nav-link.active {
  color: var(--green-light);
}




.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--texto-claro);
  font-size: .95rem;
  font-weight: 500;
  padding: .4rem .2rem;
  transition: color .3s ease;
}

/* Línea viva */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--verde-claro),
    transparent
  );
  transform: translateX(-50%);
  transition: width .4s ease;
}

/* Hover */
.nav-link:hover {
  color: var(--verde-claro);
}

.nav-link:hover::after {
  width: 100%;
}

/* Activo */
.nav-link.active {
  color: var(--verde-claro);
}

.nav-link.active::after {
  width: 120%;
}



.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: background .3s ease, box-shadow .3s ease;
}
.menu-toggle:hover {
  background: rgba(143,255,193,.18);
  box-shadow: 0 0 18px rgba(143,255,193,.45);
}


.menu-toggle span {
  width: 22px;
  height: 2.5px;
  background: var(--blanco);
  border-radius: 3px;
  transition: transform .4s ease, opacity .3s ease;
}


@media (max-width: 900px) {

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(
      to bottom,
      var(--verde-oscuro),
      var(--verde-principal)
    );
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right .4s ease;
    z-index: 999;
  }

  .nav-menu.open {
    right: 0;
  }
}








/* EFECTO HOVER PRO */
.brand:hover {
  transform: scale(1.05);
  background: rgba(124,255,178,.12);
  box-shadow: 0 0 25px rgba(124,255,178,.35);
}


/* SECTIONS */
.section {
  padding: 120px 0;
}

.section-alt {
  background: #ffffff;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    rgba(0,0,0,.4),
    rgba(0,0,0,.6)
  ), url('img/hero1.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* FOOTER */
.footer {
  background: var(--verde-oscuro);
  color: var(--texto-claro);
}




.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image:
    url("img/hero1.jpeg"),
    url("img/hero2.jpeg"),
    url("img/hero3.jpeg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-attachment: fixed;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.45)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--texto-claro);

  background: rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}




.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  animation: fadeUp 1.2s ease forwards;
  text-shadow:
    0 0 20px rgba(143,255,193,0.35),
    0 0 40px rgba(143,255,193,0.15);

}

.hero-title span {
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(143,255,193,.3);
  }
  50% {
    text-shadow: 0 0 30px rgba(143,255,193,.6);
  }
}


.hero-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--verde-claro);
  transform: scaleX(0);
  transition: transform .4s ease;
}

.hero-title span:hover::after {
  transform: scaleX(1);
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: .4s;
}

.hero-highlight {
  margin-top: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--verde-claro);
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: .7s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(.97);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}


.hero-title,
.hero-description {
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}


.scroll-indicator {
  position: absolute;
  bottom: 30px;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(143,255,193,.7);
  border-radius: 20px;
  animation: scrollHint 2s infinite;
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--verde-claro);
  border-radius: 50%;
  transform: translateX(-50%);
}

@keyframes scrollHint {
  0% { opacity: .4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
  100% { opacity: .4; transform: translateY(0); }
}











.about {
  position: relative;
  padding: 130px 20px;
  background: radial-gradient(
      circle at top,
      rgba(255,255,255,0.15),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #f2f7f3,
      #dfeee6
    );
  text-align: center;
  overflow: hidden;
}


.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(60,140,100,.15) 2px, transparent 3px),
    radial-gradient(circle, rgba(80,170,120,.1) 1.5px, transparent 2px);
  background-size: 120px 120px, 80px 80px;
  animation: floatParticles 30s linear infinite;
  pointer-events: none;
}

@keyframes floatParticles {
  from { background-position: 0 0, 0 0; }
  to { background-position: 400px -600px, -300px -400px; }
}


.about-container {
  max-width: 900px;
  margin: auto;
}

/* TÍTULO */
.section-title {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  color: #1e5b43;
  margin-bottom: 55px;
  position: relative;
  letter-spacing: .5px;
  animation: titleReveal 1.4s ease forwards;
}

.section-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: 18px auto 0;
  background: linear-gradient(
    90deg,
    #7ad3a6,
    #2f8f6b
  );
  border-radius: 10px;
  animation: lineGrow 1.6s ease forwards;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(-25px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to { width: 90px; opacity: 1; }
}


/* LOGO */
.about-logo {
  margin-bottom: 45px;
  animation: logoFloat 6s ease-in-out infinite;
}

.about-logo img {
  width: 160px;
  filter: drop-shadow(0 25px 45px rgba(0,0,0,.25));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}


/* CARD */
.about-card {
  position: relative;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 50px 45px;
  box-shadow:
    0 40px 80px rgba(0,0,0,.15),
    inset 0 0 0 1px rgba(255,255,255,.4);
  animation: cardReveal 1.6s ease forwards;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(122,211,166,.25),
    transparent
  );
  opacity: 0;
  transition: opacity .6s;
}

.about-card:hover::before {
  opacity: 1;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(70px) scale(.95);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}


.about-card p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #1f3f33;
  opacity: 0;
  transform: translateY(20px);
  animation: textFade 1s ease forwards;
}

.about-card p:nth-child(1) { animation-delay: .3s; }
.about-card p:nth-child(2) { animation-delay: .6s; }
.about-card p:nth-child(3) { animation-delay: .9s; }

@keyframes textFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-card p {
  margin-bottom: 40px;
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 500;
}

.about-highlight {
  font-size: 1.15rem;
  color: var(--verde-principal);
  font-weight: 500;
}



.about-divider {
  display: block;
  width: 70px;
  height: 4px;
  margin: 10px auto 45px;
  background: linear-gradient(
    90deg,
    transparent,
    #7ad3a6,
    transparent
  );
  border-radius: 10px;
  animation: dividerPulse 4s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%,100% { opacity: .4; }
  50% { opacity: 1; }
}

.about-card p {
  position: relative;
  transition: transform .4s ease, color .4s ease;
}

.about-card p:hover {
  transform: translateX(8px);
  color: #1e6b4f;
}


.about-card {
  background:
    radial-gradient(
      circle at top left,
      rgba(255,255,255,.9),
      rgba(255,255,255,.7)
    );
  transition: box-shadow .6s ease, transform .6s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 50px 90px rgba(0,0,0,.18),
    0 0 60px rgba(122,211,166,.25);
}

.about-card p {
  opacity: 0;
  transform: translateY(30px);
  animation: revealText 1.2s ease forwards;
}

.about-card p:nth-of-type(1) { animation-delay: .3s; }
.about-card p:nth-of-type(2) { animation-delay: .6s; }
.about-card p:nth-of-type(3) { animation-delay: .9s; }

@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-card strong {
  color: var(--verde-claro);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .about {
    padding: 90px 15px;
  }

  .about-card {
    padding: 35px 25px;
  }
}


@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(.85) rotateX(20deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateX(0);
  }
}

@keyframes cardUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(.97);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}





/* ===============================
   VALORES – 3 CARDS PRO
================================ */
.values {
  padding: 140px 0;
  background:
    radial-gradient(circle at top, rgba(122,211,166,.18), transparent 60%),
    linear-gradient(180deg, #f4faf6, #e3f1ea);
}

/* GRID */
.values-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.values .section-title {
  text-align: center;
}

/* CARD */
.value-card {
  position: relative;
  padding: 45px 40px;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  box-shadow:
    0 35px 80px rgba(0,0,0,.12),
    inset 0 0 0 1px rgba(255,255,255,.5);
  transform: translateY(40px) scale(.97);
  opacity: 0;
  animation: cardReveal 1.2s ease forwards;
  text-align: center;
}


.value-card {
  opacity: 0;
  transform: translateY(60px) scale(.95);
  filter: blur(6px);
  animation: valueIn 1.4s ease forwards;
}

@keyframes valueIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Delay */
.value-card:nth-child(1) { animation-delay: .2s; }
.value-card:nth-child(2) { animation-delay: .4s; }
.value-card:nth-child(3) { animation-delay: .6s; }

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* TITULO */
.value-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--verde-principal);
  position: relative;
}


.value-card h3 {
  position: relative;
  transition: color .4s ease;
}

.value-card:hover h3 {
  color: #145c41;
  text-shadow: 0 0 15px rgba(122,211,166,.45);
}

.value-card ul li {
  transition: transform .35s ease, color .35s ease;
}

.value-card ul li:hover {
  transform: translateX(8px);
  color: var(--verde-principal);
}


.values::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(143,255,193,.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(122,211,166,.12), transparent 40%);
  animation: backgroundFlow 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes backgroundFlow {
  from { transform: translateY(0); }
  to { transform: translateY(-40px); }
}

.value-card h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(
    90deg,
    var(--verde-claro),
    var(--verde-principal)
  );
  border-radius: 10px;
}

/* TEXTO */
.value-card p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #1f3f33;
}

/* LISTA VALORES */
.value-card ul {
  display: inline-block;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 25px auto 0;
}

.value-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #1f3f33;
}

.value-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--verde-principal);
  font-weight: bold;
}

/* HOVER WOW */
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(143,255,193,.25),
    transparent
  );
  opacity: 0;
  transition: opacity .6s ease;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 55px 100px rgba(0,0,0,.18),
    0 0 70px rgba(122,211,166,.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}





.services-section {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, #f4f7f2, #e9efe6);
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: .5rem;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: .8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all .4s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  line-height: 1.7;
}

.service-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  color: #2f5d3a;
}

.service-gallery {
  margin-top: 4rem;
  min-height: 320px; /* evita saltos al cargar */
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-images {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* CONTENEDOR FIJO */
.gallery-images img {
  width: 100%;
  aspect-ratio: 4 / 5; /* puedes usar 1/1 o 9/16 si lo prefieres */
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: transform .4s ease, box-shadow .4s ease;
}

/* EFECTO PRO */
.gallery-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0,0,0,.25);
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



/* CONTENEDOR GENERAL */
.service-gallery {
  margin-top: 4rem;
  min-height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* STACK */
.gallery-stack {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 420px;
  perspective: 1200px;
}

/* IMÁGENES APILADAS */
.gallery-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;

  opacity: 0;
  transform: scale(.95) translateY(40px);
  filter: blur(14px);

  transition:
    opacity .8s ease,
    transform .9s ease,
    filter .8s ease,
    box-shadow .6s ease;

  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

/* CUANDO ENTRA */
.gallery-stack img.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

/* EFECTO STACK */
.gallery-stack img:nth-child(1) {
  transform: translateY(0) scale(1);
  z-index: 3;
}
.gallery-stack img:nth-child(2) {
  transform: translateY(14px) scale(.96);
  z-index: 2;
  opacity: .9;
}
.gallery-stack img:nth-child(3) {
  transform: translateY(28px) scale(.92);
  z-index: 1;
  opacity: .75;
}

/* HOVER PRO */
.gallery-stack:hover img:nth-child(1) {
  transform: translateY(-8px) scale(1.02);
}
.gallery-stack:hover img:nth-child(2) {
  transform: translateY(10px) scale(.97);
}
.gallery-stack:hover img:nth-child(3) {
  transform: translateY(26px) scale(.93);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-stack {
    height: 300px;
  }
}





/* ===============================
   EXPERIENCIAS
================================ */
.experiences-section {
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    #f4faf6,
    #e3f1ea
  );
  text-align: center;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 70px;
  font-size: 1.05rem;
  color: #2f5f4c;
  opacity: .85;
}

/* GRID */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* TABLET */
@media (max-width: 1024px) {
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .experiences-grid {
    grid-template-columns: 1fr;
  }
}

.experience-card {
  aspect-ratio: 4 / 5;
  height: auto;
}


/* CARD */
.experience-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  height: 360px;
  cursor: pointer;
  box-shadow: 0 25px 55px rgba(0,0,0,.18);
  transform: translateY(0);
  transition: transform .6s ease, box-shadow .6s ease;
}

.experience-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 45px 80px rgba(0,0,0,.28);
}

/* IMAGEN */
.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.experience-card:hover img {
  transform: scale(1.12);
}

/* OVERLAY */
.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,61,46,.85),
    rgba(15,61,46,.45),
    rgba(15,61,46,.15)
  );
  backdrop-filter: blur(6px);
  color: var(--texto-claro);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.experience-card:hover .experience-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* TEXTO */
.experience-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--verde-claro);
}

.experience-overlay p {
  font-size: .95rem;
  line-height: 1.6;
  opacity: .95;
}

/* MOBILE TOUCH */
@media (max-width: 768px) {
  .experience-card {
    height: 320px;
  }

  .experience-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(
      to top,
      rgba(15,61,46,.9),
      rgba(15,61,46,.55)
    );
  }
}



.section-subtitle {
  max-width: 700px;
  margin: 20px auto 60px;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  color: #5f7f6e;
  font-weight: 400;
  letter-spacing: 0.3px;
  position: relative;
}

.section-subtitle {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a6356;
  margin-top: 15px;
}

.section-subtitle::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #2f7d5c, #6fcf97);
  margin: 25px auto 0;
  border-radius: 2px;
}


@media (max-width: 600px) {
  .section-subtitle {
    font-size: 0.95rem;
    padding: 0 15px;
  }
}




.gallery-section {
  padding: 100px 0;
  background: #f6faf7;
}

/* TITULOS CENTRADOS */
.gallery-title,
.gallery-subtitle {
  text-align: center;
}

/* CONTENEDOR DEL ROLLO */
.gallery-wrapper {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}

/* TRACK SCROLLEABLE */
.gallery-track {
  display: flex;
  gap: 28px;
  padding: 0 6vw 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

/* CADA IMAGEN */
.gallery-item {
  flex: 0 0 auto;
  width: 320px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #000;
  transition: 
    transform .45s ease,
    box-shadow .45s ease;
  cursor: grab;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOVER PRO */
.gallery-item:hover {
  transform: scale(1.06);
  box-shadow: 0 35px 70px rgba(0,0,0,.2);
}


@media (max-width: 900px) {
  .gallery-item {
    width: 260px;
    height: 360px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    width: 220px;
    height: 300px;
  }
}



/* SECCIÓN */
#destinos {
  padding: 100px 5vw;
  background: #fff;
}

/* TITULO */
#destinos h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 60px;
}

/* CONTENEDOR GENERAL */
.destinos-container {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

/* TABLA */
.destinos-container table {
  border-collapse: collapse;
  min-width: 260px;
}

.destino-item {
  padding: 16px 24px;
  cursor: pointer;
  font-weight: 500;
  border-left: 4px solid transparent;
  transition: all .35s ease;
}

.destino-item:hover {
  background: #f4f4f4;
}

.destino-item.active {
  background: #eaf5ef;
  border-left-color: #2f8f5b;
  font-weight: 700;
}

/* SLIDESHOW */
.slideshow {
  position: relative;
  width: 420px;
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

.slideshow img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: opacity .4s ease;
}

/* INFO */
.destino-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color: #fff;
}

.destino-info h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.destino-info p {
  margin: 0;
  font-size: .95rem;
  opacity: .9;
}



@media (max-width: 900px) {
  .destinos-container {
    flex-direction: column;
    gap: 40px;
  }

  .destinos-container table {
    width: 100%;
    max-width: 420px;
  }

  .destino-item {
    text-align: center;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .destino-item.active {
    border-bottom-color: #2f8f5b;
  }

  .slideshow img {
    height: 380px;
  }
}









/* ===============================
   CONTACTO
================================ */
.contact-section {
  padding: 100px 0;
  background: #f6f8f6;
}

.contact-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* INFO */
.contact-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.contact-info p {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* MAPA */
.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  height: 420px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) contrast(1.1) saturate(0.9);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 300px;
  }

  .contact-info {
    text-align: center;
  }
}



/* ===============================
   BLOQUE DESTACADO
================================ */
.contact-highlight {
  margin-top: 120px;
  text-align: center;
}

.contact-highlight-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 60px;
  letter-spacing: 3px;
  position: relative;
}

.contact-highlight-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #2e7d32;
  display: block;
  margin: 18px auto 0;
  border-radius: 10px;
}

/* ===============================
   CARDS PROTAGÓNICAS
================================ */
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* CARD */
.contact-card.featured {
  background: linear-gradient(135deg, #ffffff, #f3f7f3);
  padding: 55px 45px;
  border-radius: 26px;
  width: 340px;
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
  transition: all .4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Glow sutil */
.contact-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(46,125,50,.15), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}

/* Hover potente */
.contact-card.featured:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 45px 90px rgba(0,0,0,.28);
}

.contact-card.featured:hover::before {
  opacity: 1;
}

/* ICONO */
.contact-card.featured .card-icon {
  font-size: 3.2rem;
  margin-bottom: 25px;
}

/* TEXTO */
.contact-card.featured h4 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.contact-card.featured .contact-role {
  font-size: 1rem;
  opacity: .75;
  margin-bottom: 22px;
}

/* TEL */
.contact-card.featured .contact-phone {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  background: #2e7d32;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s ease, transform .3s ease;
}

.contact-card.featured .contact-phone:hover {
  background: #1b5e20;
  transform: scale(1.05);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .contact-cards {
    gap: 35px;
  }

  .contact-card.featured {
    width: 100%;
    max-width: 360px;
  }
}



/* ===============================
   BLOQUE CTA CONTACTO (PRO)
================================ */
.contact-cta-wrapper {
  margin-top: 140px;
  text-align: center;
}

/* TÍTULO */
.contact-cta-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 4px;
  margin-bottom: 80px;
  position: relative;
}

.contact-cta-title::after {
  content: "";
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
  display: block;
  margin: 22px auto 0;
  border-radius: 50px;
}

/* CONTENEDOR CENTRADO REAL */
.contact-cta-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 70px;
  max-width: 900px;
  margin: 0 auto;
}

/* CARD */
.contact-cta-card {
  flex: 1;
  max-width: 380px;
  background: linear-gradient(145deg, #ffffff, #eef3ee);
  padding: 65px 50px;
  border-radius: 30px;
  box-shadow:
    0 30px 80px rgba(0,0,0,.25),
    inset 0 0 0 1px rgba(255,255,255,.6);
  transition: all .45s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* EFECTO LUZ */
.contact-cta-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(102,187,106,.25), transparent 60%);
  opacity: 0;
  transition: opacity .45s ease;
}

/* HOVER BRUTAL */
.contact-cta-card:hover {
  transform: translateY(-18px) scale(1.05);
  box-shadow: 0 50px 120px rgba(0,0,0,.35);
}

.contact-cta-card:hover::before {
  opacity: 1;
}

/* ICONO */
.cta-icon {
  font-size: 3.8rem;
  margin-bottom: 30px;
}

/* TEXTO */
.contact-cta-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.cta-role {
  display: block;
  font-size: 1rem;
  opacity: .75;
  margin-bottom: 28px;
}

/* BOTÓN TEL */
.contact-cta-card a {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.contact-cta-card a:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(46,125,50,.5);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .contact-cta-cards {
    flex-direction: column;
    gap: 50px;
  }
}




/* ===============================
   FORMULARIO RESERVA PRO
================================ */
.booking-wrapper {
  margin-top: 180px;
  padding: 120px 20px;
  position: relative;
  text-align: center;

  background:
    radial-gradient(circle at top, rgba(122,211,166,.25), transparent 55%),
    linear-gradient(180deg, #f4faf6, #e1efe8);
}

.booking-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  margin-bottom: 70px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #1f5b43;
  position: relative;
  text-transform: uppercase;
}

.booking-title::after {
  content: "";
  width: 140px;
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent,
    #2f8f6b,
    #7ad3a6,
    #2f8f6b,
    transparent
  );
  display: block;
  margin: 28px auto 0;
  border-radius: 50px;
  animation: glowLine 4s ease-in-out infinite;
}

@keyframes glowLine {
  0%,100% { opacity: .5; }
  50% { opacity: 1; }
}


/* FORM */
.booking-form {
  max-width: 560px;
  margin: 0 auto;
  padding: 70px 55px;
  border-radius: 36px;
  position: relative;

  background: rgba(255,255,255,.75);
  backdrop-filter: blur(18px);

  box-shadow:
    0 50px 120px rgba(0,0,0,.25),
    inset 0 0 0 1px rgba(255,255,255,.5);

  display: flex;
  flex-direction: column;
  gap: 34px;

  animation: formFloat 6s ease-in-out infinite;
}

@keyframes formFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.booking-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(122,211,166,.35),
    transparent
  );
  opacity: 0;
  transition: opacity .6s ease;
}

.booking-form:hover::before {
  opacity: 1;
}


/* GRUPO */
.form-group label {
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.booking-form input,
.booking-form select {
  padding: 16px 20px;
  border-radius: 16px;
  background: #f3f8f5;
  font-size: 1.05rem;
  border: none;
  outline: none;
  transition: 
    box-shadow .35s ease,
    transform .35s ease,
    background .35s ease;
}

.booking-form input:hover,
.booking-form select:hover {
  background: #eef7f2;
}

.booking-form input:focus,
.booking-form select:focus {
  transform: scale(1.04);
  box-shadow:
    0 0 0 3px rgba(122,211,166,.45),
    0 15px 30px rgba(0,0,0,.15);
}


/* INPUTS */
.booking-form input,
.booking-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: none;
  background: #f3f7f4;
  font-size: 1rem;
  outline: none;
  transition: box-shadow .3s ease, transform .3s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  box-shadow: 0 0 0 3px rgba(102,187,106,.35);
  transform: scale(1.02);
}

/* BOTÓN */
.booking-btn {
  margin-top: 35px;
  padding: 18px;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  border: none;
  cursor: pointer;

  background: linear-gradient(
    135deg,
    #1f6b4e,
    #4caf7d,
    #1f6b4e
  );

  box-shadow:
    0 25px 50px rgba(31,107,78,.45),
    0 0 40px rgba(122,211,166,.35);

  transition: transform .4s ease, box-shadow .4s ease;
}

.booking-btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 35px 80px rgba(31,107,78,.6),
    0 0 60px rgba(122,211,166,.6);
}


/* RESPONSIVE */
@media (max-width: 600px) {
  .booking-form {
    padding: 50px 30px;
  }

  .booking-title {
    letter-spacing: 2px;
  }
}




.site-footer {
  width: 100%;
  background: linear-gradient(180deg, #0f3d2e, #08261c);
  padding: 80px 20px 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ICONOS */
.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-icons a {
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;
  font-size: 1.4rem;
  color: #7ad3a6;

  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);

  box-shadow:
    0 15px 40px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.15);

  transition: transform .35s ease, box-shadow .35s ease;
}

.footer-icons a:hover {
  transform: translateY(-6px) scale(1.15);
  box-shadow:
    0 25px 60px rgba(122,211,166,.6),
    0 0 40px rgba(122,211,166,.4);
}

/* TEXTO */
.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e6f6ef;
  margin-bottom: 10px;
}

.footer-copy {
  font-size: .9rem;
  color: rgba(230,246,239,.7);
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .footer-icons a {
    width: 52px;
    height: 52px;
  }

  .footer-title {
    letter-spacing: 2px;
  }
}
