﻿  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  :root {
    --green-deep: #2c4a3e;
    --green-mid: #3d6b59;
    --green-light: #7aab92;
    --green-pale: #c8ddd6;
    --cream: #f7f3ed;
    --cream-dark: #ede8e0;
    --gold: #c9a96e;
    --gold-light: #e8d5a8;
    --text-dark: #1a2e28;
    --text-mid: #4a6358;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', sans-serif;
  }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 300;
  }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1002;
    padding: 0.5cm 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
  }
  nav.scrolled {
    background: rgba(247,243,237,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 30px rgba(44,74,62,0.08);
    padding: 0.5cm 3rem;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
  }
  .nav-logo-imgs {
    position: relative;
    height: 42px;
    width: auto;
    flex-shrink: 0;
  }
  .nav-logo-imgs img {
    height: 42px;
    width: auto;
    transition: opacity 0.5s;
  }
  .nav-logo-imgs img {
    opacity: 0;
  }
  nav.scrolled .nav-logo-imgs img { opacity: 1; }
  .nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  .nav-brand-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--white);
    text-transform: uppercase;
    transition: color 0.5s;
  }
  .nav-brand-subtitle {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: var(--gold-light);
    text-transform: uppercase;
    transition: color 0.5s;
  }
  nav.scrolled .nav-brand-name { color: var(--text-dark); }
  nav.scrolled .nav-brand-subtitle { color: var(--text-mid); }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s;
  }
  nav.scrolled .nav-links a { color: var(--text-dark); }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    color: var(--white) !important;
    padding: 0.5rem 1.4rem;
    border-radius: 2px;
    transition: all 0.3s !important;
  }
  nav.scrolled .nav-cta {
    border-color: var(--green-deep);
    color: var(--green-deep) !important;
  }
  .nav-cta:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--white) !important;
  }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: all 0.3s;
  }
  nav.scrolled .hamburger span { background: var(--text-dark); }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-slides {
    position: absolute;
    inset: 0;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease;
    transform: scale(1.05);
    transition: opacity 1.8s ease, transform 8s ease;
  }
  .hero-slide.active {
    opacity: 1;
    transform: scale(1);
  }
  .hero-slide--video {
    transform: none !important;
  }
  .hero-slide--video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(20,40,32,0.3) 0%,
      rgba(20,40,32,0.15) 40%,
      rgba(20,40,32,0.5) 100%
    );
  }
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    animation: heroFadeIn 1.5s ease 0.3s both;
  }
  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    font-weight: 300;
  }
  .hero-logo {
    display: block;
    width: clamp(218px, 32vw, 437px);
    height: auto;
    margin: 1.2rem auto 1.4rem;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
  }
  .hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.78);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2.8rem;
    letter-spacing: 0.05em;
  }
  .hero-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 3rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 300;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green-deep);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }
  .hero-cta:hover::before { transform: translateX(0); }
  .hero-cta span { position: relative; z-index: 1; }
  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: scrollBounce 2.5s ease infinite;
  }
  .hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  }
  @keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
  }

  /* ===== INTRO STRIP ===== */
  .intro-strip {
    background: var(--green-deep);
    padding: 1.4rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .strip-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--gold-light);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
  }
  .strip-icon { font-size: 1rem; }

  /* ===== SECTION SHARED ===== */
  section { padding: 7rem 2rem; }
  .section-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--green-mid); }
  .section-body {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-mid);
    max-width: 540px;
    font-weight: 300;
  }

  /* ===== FILOSOFIA ===== */
  .filosofia {
    background: var(--cream);
    overflow: hidden;
  }
  .filosofia-text {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
  }
  .filosofia .section-title {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    margin-bottom: 0;
  }
  .filosofia-quote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--green-mid);
    line-height: 1.65;
    margin: 0;
    padding: 2.2rem 1rem;
    border-left: none;
    position: relative;
  }
  .filosofia-quote::before,
  .filosofia-quote::after {
    content: '';
    display: block;
    width: 44px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
  }
  .filosofia-quote::before { margin-bottom: 2rem; }
  .filosofia-quote::after  { margin-top: 2rem; }
  .filosofia .section-body {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    line-height: 2;
  }

  /* ===== TERAPIAS ALTERNATIVAS ===== */
  :root {
    --teal-deep: #2a6b7c;
    --teal-mid:  #4a9aae;
    --teal-pale: #c2e4ed;
    --teal-bg:   #e8f5f8;
  }
  .terapias {
    background: linear-gradient(160deg, #e8f5f8 0%, #d6eef4 60%, #e2f0f5 100%);
    overflow: hidden;
  }
  .terapias-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 4rem;
  }
  .terapias .section-label { color: var(--teal-deep); }
  .terapias .section-title { color: var(--text-dark); }
  .terapias .section-title em { color: var(--teal-mid); }
  .terapias .section-body {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    line-height: 2;
    color: var(--text-mid);
  }
  .terapias-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 2rem;
  }
  .terapias-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: block;
  }
  .terapias-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 36px rgba(42,107,124,0.2);
  }
  .terapias-more {
    text-align: center;
    margin-top: 2.5rem;
  }
  .btn-terapias-ver {
    background: transparent;
    border: 1px solid var(--teal-deep);
    color: var(--teal-deep);
    padding: 0.85rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  .btn-terapias-ver:hover {
    background: var(--teal-deep);
    color: var(--white);
  }
  .terapias-full {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
    padding: 0 2rem;
  }
  .terapias-full img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
  }
  .terapias-full img:hover { transform: scale(1.03); }

  @media (max-width: 768px) {
    .terapias-grid {
      grid-template-columns: repeat(2, 1fr);
      padding: 0 1rem;
    }
    .terapias-grid img { height: 160px; }
    .terapias-full {
      grid-template-columns: repeat(2, 1fr);
      padding: 0 1rem;
    }
    .terapias-full img { height: 140px; }
  }

  /* ===== EXPERIENCIAS ===== */
  .experiencias {
    background: var(--green-deep);
    color: var(--white);
    text-align: center;
  }
  .experiencias .section-title { color: var(--white); }
  .experiencias .section-title em { color: var(--gold-light); }
  .exp-grid {
    max-width: 1100px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .exp-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.4s;
  }
  .exp-item:last-child { border-right: none; }
  .exp-item:hover { background: rgba(255,255,255,0.04); }
  .exp-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
  }
  .exp-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
  }
  .exp-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ===== GALERÍA ===== */
  .galeria {
    background: var(--cream-dark);
    padding: 6rem 0;
    overflow: hidden;
  }
  .galeria-header {
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 3rem;
  }
  .galeria-strips {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .galeria-strip {
    overflow: hidden;
  }
  .galeria-track {
    display: flex;
    gap: 12px;
    width: max-content;
    will-change: transform;
  }
  .galeria-track--left {
    animation: galScrollLeft 50s linear infinite;
  }
  .galeria-track--right {
    animation: galScrollRight 62s linear infinite;
  }
  .galeria-track:hover {
    animation-play-state: paused;
  }
  .galeria-track img {
    height: 260px;
    width: auto;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border-radius: 4px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
  }
  .galeria-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(44,74,62,0.25);
    position: relative;
    z-index: 2;
  }
  @keyframes galScrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @keyframes galScrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }

  /* Botón ver más fotos */
  .galeria-more {
    text-align: center;
    margin-top: 2.5rem;
  }
  .btn-ver-mas {
    background: transparent;
    border: 1px solid var(--green-deep);
    color: var(--green-deep);
    padding: 0.85rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  .btn-ver-mas:hover {
    background: var(--green-deep);
    color: var(--white);
  }

  /* Grid "ver todas las fotos" */
  .galeria-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
    margin-top: 2rem;
    padding: 0 2rem;
  }
  .galeria-grid.open {
    display: grid;
  }
  .galeria-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
  }
  .galeria-grid img:hover { transform: scale(1.03); }

  @media (max-width: 768px) {
    .galeria-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      padding: 0 1rem;
    }
    .galeria-grid img { height: 140px; }
  }

  /* =====RESEÃ’AS ===== */
  .resenas {
    background: var(--cream);
    text-align: center;
  }
  .rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
  }
  .review-card {
    background: var(--white);
    padding: 2rem 1.8rem;
    text-align: left;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(44,74,62,0.1);
  }
  .review-card::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--green-pale);
    position: absolute;
    top: -0.5rem;
    left: 1.2rem;
    line-height: 1;
  }
  .review-text {
    font-family: var(--font-serif);
    font-size: 1.0rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
  }
  .review-author {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-mid);
    font-weight: 400;
  }
  .review-platform {
    font-size: 0.68rem;
    color: var(--text-mid);
    margin-top: 0.2rem;
    font-weight: 300;
  }
  .review-stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 1rem; }
  .resenas-cta {
    text-align: center;
    margin-top: 3rem;
  }
  .btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    border: 1.5px solid var(--green-mid);
    color: var(--green-deep);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .btn-reviews:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44,74,62,0.2);
  }

  /* ===== QUÉ HACER ===== */
  .que-hacer {
    background: var(--green-deep);
    color: var(--white);
    overflow: hidden;
  }
  .que-hacer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .que-hacer .section-title { color: var(--white); }
  .que-hacer .section-title em { color: var(--gold-light); }
  .que-hacer .section-body { color: rgba(255,255,255,0.65); }
  .activities-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
  }
  .activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s, background 0.3s;
  }
  .activity-item:hover {
    border-color: var(--gold);
    background: rgba(201,169,110,0.06);
  }
  .activity-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  .activity-info h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 0.2rem;
  }
  .activity-info p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.5;
  }
  .qh-img {
    position: relative;
  }
  .qh-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
  }
  .qh-distance {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(28,48,40,0.92);
    backdrop-filter: blur(8px);
    padding: 1.2rem 1.5rem;
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .qh-distance strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gold-light);
    text-transform: none;
    letter-spacing: 0.02em;
    margin-bottom: 0.2rem;
  }

  /* ===== MAPA ===== */
  .mapa {
    background: var(--cream-dark);
    padding: 5rem 2rem;
  }
  .mapa-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
  }
  .mapa-address {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin: 1.5rem 0;
  }
  .mapa-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-mid);
    font-weight: 300;
  }
  .contact-icon { color: var(--gold); font-size: 1rem; }
  .map-embed {
    border: 0;
    width: 100%;
    height: 360px;
    display: block;
    filter: saturate(0.85) contrast(0.95);
  }
  .map-facade {
    width: 100%;
    height: 360px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 2px;
    background-image:
      linear-gradient(rgba(200,221,214,0.3) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,221,214,0.3) 1px, transparent 1px);
    background-size: 40px 40px;
    transition: background-color 0.3s;
  }
  .map-facade:hover { background-color: #e4ddd4; }
  .map-facade-inner {
    text-align: center;
    padding: 2rem;
  }
  .map-facade-pin { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; }
  .map-facade-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
  }
  .map-facade-addr {
    font-size: 0.8rem;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
  }
  .map-facade-btn {
    background: var(--green-deep);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s;
  }
  .map-facade-btn:hover { background: var(--green-mid); }

  /* ===== CTA FINAL ===== */
  .cta-final {
    background: var(--cream);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
  }
  .cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(122,171,146,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-final .section-title {
    max-width: 600px;
    margin: 0 auto 0.8rem;
  }
  .cta-final .section-body {
    margin: 0 auto 3rem;
    text-align: center;
  }
  .cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex; 
    align-items: center;
    gap: 0.6rem;
    background: var(--green-deep);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
    transition: all 0.3s;
    font-family: var(--font-sans);
  }
  .btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,74,62,0.25); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
    transition: all 0.3s;
    font-family: var(--font-sans);
  }
  .btn-secondary:hover { background: #20b858; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

  /* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
  text-align: center;
  position: relative;
}

/* ✨ LINEA DORADA */
footer::before {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 30px;
}

/* LINKS */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 35px;
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

/* HOVER PRO */
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links a:hover::after {
  width: 100%;
}

/* FOOTER BRAND */
.footer-brand { margin-bottom: 2.2rem; }
.fb-logo {
  width: 50%;
  max-width: 158px;
  height: auto;
  display: block;
  margin: 0 auto 0.6rem;
  opacity: 0.92;
}
.fb-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}
.fb-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0.4rem 0 0;
}
.fb-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.9rem auto;
  width: 140px;
}
.fb-divider span:not(.fb-dot) {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}
.fb-dot {
  color: var(--gold);
  font-size: 0.55rem;
  opacity: 0.8;
}
.fb-location {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
}

/* TEXTO FINAL */
footer p:not(.fb-name):not(.fb-sub):not(.fb-location) {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  footer {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .footer-links a {
    font-size: 0.75rem;
  }

  /* --- FOOTER BRAND MOBILE --- */
  .fb-logo {
    max-width: 111px;
    width: 35%;
  }
  .fb-name  { font-size: 1.4rem; }
  .fb-sub   { font-size: 0.6rem; }
  .fb-divider { width: 98px; }
  .fb-dot   { font-size: 0.39rem; }
  .fb-location { font-size: 0.49rem; }
}

  /* ===== WHATSAPP FLOAT ===== */
  .wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
  }
  .wa-float.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
  }
  .wa-float a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    box-shadow: 0 8px 32px rgba(37,211,102,0.4);
    transition: all 0.3s;
    font-family: var(--font-sans);
    white-space: nowrap;
  }
  .wa-float a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.5);
  }
  .wa-icon { font-size: 1.2rem; flex-shrink: 0; }

  /* ===== LIGHTBOX ===== */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 14, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
  }
  .lightbox.open {
    opacity: 1;
    pointer-events: all;
  }
  .lightbox-img {
    max-width: 80vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    transform: scale(0.93);
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    cursor: default;
    user-select: none;
    position: relative;
    z-index: 1;
  }
  .lightbox.open .lightbox-img {
    transform: scale(1);
  }
  .lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.75);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    transition: color 0.2s, transform 0.2s;
    z-index: 1;
  }
  .lightbox-close:hover { color: var(--white); transform: scale(1.15); }
  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 3.5rem;
    cursor: pointer;
    padding: 0 1rem;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
    user-select: none;
    z-index: 2;
  }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-prev:hover { color: var(--white); transform: translateY(-50%) scale(1.1); }
  .lightbox-next:hover { color: var(--white); transform: translateY(-50%) scale(1.1); }
  .galeria-track img,
  .galeria-grid img { cursor: pointer; }

  /* ===== SCROLL ANIMATIONS ===== */
  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }

  /* ===== MOBILE NAV ===== */
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--green-deep);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateY(-100%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .mobile-menu.open {
    transform: translateY(0);
    pointer-events: all;
  }
  /* Hamburger blanco cuando el menú está abierto */
  .hamburger.is-open span { background: var(--white); }
  nav.scrolled .hamburger.is-open span { background: var(--text-dark); }
  .mobile-menu a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    font-style: italic;
    font-weight: 300;
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--gold-light); }
  .mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
  }

  /* CONTENEDOR DEL VIDEO */
.qh-img .hero-slides {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

/* VIDEO */
.qh-img .hero-slides video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* AJUSTE GENERAL */
.qh-img {
  position: relative;
  margin-top: 110px;
}

/* OVERLAY PRO (opcional pero MUY recomendado) */
.qh-img .hero-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: 0.7rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .filosofia-inner { grid-template-columns: 1fr; gap: 2rem; }
    .filosofia-img-accent { display: none; }
    .filosofia-img-main { height: 320px; }
    .exp-grid { grid-template-columns: 1fr; }
    .exp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .que-hacer-inner { grid-template-columns: 1fr; gap: 3rem; }
    .mapa-inner { grid-template-columns: 1fr; }
    .galeria-track img { height: 180px; }
    .galeria-strips { gap: 8px; }
    section { padding: 4.5rem 1.5rem; }
    .intro-strip { gap: 1.5rem; padding: 1rem 1.5rem; }
  }

  /* ===== RESERVAS ===== */
  .reservas {
    padding: 100px 5%;
    background: var(--cream);
  }

  .reserva-wrapper {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 60px 64px;
    box-shadow: 0 4px 48px rgba(44,74,62,0.08), 0 1px 0 rgba(44,74,62,0.04);
  }

  .reserva-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .reserva-header .section-body {
    margin: 0 auto;
  }

  .booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-span-2 { grid-column: span 2; }

  .form-actions {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
  }

  .form-group label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
  }

  .form-group label .req { color: var(--gold); margin-left: 2px; }

  .form-group label .opt {
    font-weight: 300;
    text-transform: none;
    font-size: 0.7rem;
    letter-spacing: 0;
    color: var(--green-light);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid var(--cream-dark);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--green-light);
    opacity: 0.75;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(61,107,89,0.1);
    background: var(--white);
  }

  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a6358' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-color: var(--cream);
    padding-right: 2.8rem;
    cursor: pointer;
  }

  .form-group select:focus { background-color: var(--white); }

  .form-group textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
  }

  .error-msg {
    display: block;
    font-size: 0.72rem;
    color: #d95555;
    font-style: italic;
    min-height: 1em;
    line-height: 1.3;
  }

  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 2.6rem;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  }

  .btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.45);
  }

  .btn-whatsapp:active { transform: translateY(0); }



  /* ===== CAROUSEL PLACEHOLDERS ===== */
  .slide-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slide-ph--1 { background: linear-gradient(160deg, #2c4a3e 0%, #3d6b59 100%); }
  .slide-ph--2 { background: linear-gradient(160deg, #1a2e28 0%, #2c4a3e 100%); }
  .slide-ph--3 { background: linear-gradient(160deg, #3d6b59 0%, #7aab92 100%); }
  .slide-ph--4 { background: linear-gradient(160deg, #4a6358 0%, #3d6b59 100%); }
  .slide-ph--5 { background: linear-gradient(160deg, #2c4a3e 0%, #4a6358 100%); }
  .slide-ph--6 { background: linear-gradient(160deg, #1a2e28 0%, #2c4a3e 80%); }
  .slide-ph-inner {
    text-align: center;
    color: rgba(255,255,255,0.75);
  }
  .slide-ph-icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
  .slide-ph-label {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--gold-light);
  }

  /* ===== QUÃ‰ HACER PLACEHOLDER ===== */
  .qh-img-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(160deg, #1a2e28 0%, #3d6b59 60%, #7aab92 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .qh-img-placeholder-inner {
    text-align: center;
    color: rgba(255,255,255,0.6);
  }
  .qh-img-placeholder-inner span { font-size: 4rem; display: block; margin-bottom: 0.8rem; }
  .qh-img-placeholder-inner p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold-light);
  }
  /* ===== RESEÑAS - GRID ===== */
  .rating-num {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .rating-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.15em; margin-bottom: 0.5rem; }
  .rating-count {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mid);
    font-weight: 300;
  }
  .reviews-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
  }

  /* ===== RESPONSIVE COMPLEMENTO ===== */
  @media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .reserva-wrapper { padding: 40px 24px; }
    .booking-form { grid-template-columns: 1fr; gap: 20px; }
    .form-span-2 { grid-column: span 1; }
    .form-actions { grid-column: span 1; }
  }

  @media (max-width: 768px) {
  .que-hacer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {

  /* --- HERO --- */
  /* Fondo verde como fallback mientras el video carga */
  .hero {
    background: #142820;
    height: 100svh;
    height: 100dvh;
    min-height: 580px;
  }
  .hero-slide--video {
    background: linear-gradient(to bottom, #1e4033 0%, #142820 100%);
  }
  /* Video visible en mobile: object-fit cover para pantallas verticales */
  .hero-slide--video video {
    object-position: center center;
  }

  /* --- QUÉ HACER VIDEO --- */
  .qh-img .hero-slides {
    background: #1a3a28;
    min-height: 220px;
  }
  .qh-img { margin-top: 1rem; }

  /* --- CTA BOTONES IGUALES --- */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* --- GALERÍA --- */
  /* Solo 1 fila en mobile */
  .galeria-strip:nth-child(2),
  .galeria-strip--second { display: none; }
  /* Ocultar cada 3ra imagen (reduce renders ~33%) */
  .galeria-track img:nth-child(3n) { display: none; }
  /* Animación más rápida en mobile (1 fila, ~10 fotos) */
  .galeria-track--left  { animation-duration: 12s; }
  .galeria-track--right { animation-duration: 15s; }
  /* Altura reducida */
  .galeria-track img { height: 140px; }
  /* Liberar memoria GPU */
  .galeria-track { will-change: auto; }

  /* --- ANIMACIONES --- */
  /* Fade-up más rápido y simple en mobile */
  .fade-up {
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  /* --- TIPOGRAFÍA HERO MOBILE --- */
  .hero-logo { width: clamp(168px, 60vw, 269px); }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .hero-cta { padding: 0.9rem 2.2rem; }

  /* --- SECCIONES --- */
  section { padding: 3.5rem 1.2rem; }

  /* --- LA REGIÓN (que-hacer) --- */
  .que-hacer-inner > .fade-up:first-child {
    text-align: center;
  }
  .que-hacer-inner .activities-list {
    align-items: center;
  }
  .que-hacer-inner .activity-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  .que-hacer-inner .activity-icon {
    margin-top: 0;
  }

  /* --- CÓMO LLEGAR (mapa) --- */
  .mapa-inner > .fade-up:first-child {
    text-align: center;
  }
  .mapa-address {
    text-align: center;
  }
  .mapa-contact {
    align-items: center;
  }
  .contact-item {
    justify-content: center;
  }
}