    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --verde-oscuro: #1a2e1a;
      --verde-medio: #2d4a2d;
      --verde-claro: #4a7c4a;
      --arena: #d4b896;
      --arena-claro: #ede0cc;
      --crema: #f5efe6;
      --blanco: #fdfaf6;
      --texto-oscuro: #1a1a18;
      --texto-medio: #3a3a35;
      --agua: #6b9ea0;
      --agua-claro: #9dc4c6;
      --acento: #c17f3e;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--blanco);
      color: var(--texto-oscuro);
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s, backdrop-filter 0.4s;
    }
    nav.scrolled {
      background: rgba(26, 46, 26, 0.93);
      backdrop-filter: blur(12px);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--blanco);
      letter-spacing: 0.08em;
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 1.6rem;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--arena); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--blanco);
      transition: all 0.3s;
      border-radius: 2px;
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--verde-oscuro);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--crema);
      text-decoration: none;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      letter-spacing: 0.1em;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--arena); }

    /* HERO */
    #hero {
      position: relative;
      height: 100svh;
      min-height: 600px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('dique.jpg') center center / cover no-repeat;
      transform: scale(1.05);
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10,24,10,0.42) 0%, rgba(10,24,10,0.58) 65%, rgba(10,24,10,0.8) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 1.5rem;
      animation: heroFadeIn 1.4s ease forwards;
    }
    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-pretitle {
      font-size: 0.75rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--arena-claro);
      margin-bottom: 1.2rem;
      font-weight: 400;
      opacity: 0.9;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 7vw, 6.5rem);
      font-weight: 300;
      color: var(--blanco);
      line-height: 1.05;
      letter-spacing: 0.02em;
      margin-bottom: 1.4rem;
    }
    .hero-title em { font-style: italic; color: var(--arena); }
    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 2.2vw, 1.35rem);
      color: var(--arena-claro);
      letter-spacing: 0.28em;
      font-weight: 300;
      font-style: italic;
      opacity: 0.9;
    }
    .hero-sub span { margin: 0 0.4rem; opacity: 0.6; }
    .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.55);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: scrollBounce 2s ease-in-out infinite;
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }
    .hero-scroll svg { width: 18px; opacity: 0.6; }

    /* SECTIONS */
    section { padding: 6rem 1.5rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-tag {
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--verde-claro);
      margin-bottom: 1rem;
      font-weight: 500;
    }
    h2.section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--verde-oscuro);
      margin-bottom: 2rem;
    }
    h2.section-title em { font-style: italic; color: var(--acento); }

    /* NOSOTROS */
    #nosotros { background: var(--crema); }
    .nosotros-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .nosotros-text p {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--texto-medio);
      margin-bottom: 1.5rem;
      font-weight: 300;
    }
    .nosotros-text p:last-child { margin-bottom: 0; }
    .nosotros-stats { display: flex; flex-direction: column; gap: 2.5rem; }
    .stat-item {
      border-left: 2px solid var(--arena);
      padding-left: 1.5rem;
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--verde-oscuro);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.82rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--verde-claro);
      margin-top: 0.3rem;
    }
    .ornament {
      width: 60px;
      height: 2px;
      background: linear-gradient(to right, var(--acento), transparent);
      margin-bottom: 2rem;
    }

    /* COMPLEJO */
    #complejo { background: var(--verde-oscuro); }
    #complejo .section-tag { color: var(--agua-claro); }
    #complejo h2.section-title { color: var(--blanco); }
    #complejo h2.section-title em { color: var(--arena); }
    .complejo-desc {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.15rem, 2.2vw, 1.5rem);
      color: var(--arena-claro);
      line-height: 1.75;
      max-width: 720px;
      font-weight: 300;
      font-style: italic;
      margin-bottom: 3.5rem;
    }

    /* CARRUSEL */
    .carousel-wrap { position: relative; overflow: hidden; border-radius: 6px; }
    .carousel-track {
      display: flex;
      transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .carousel-slide {
      min-width: 100%;
      aspect-ratio: 14/7;
      overflow: hidden;
      background: #0d1f0d;
    }
    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      opacity: 0.92;
      transition: opacity 0.3s;
    }
    .carousel-slide img:hover { opacity: 1; }
    .img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 100%);
      color: rgba(255,255,255,0.3);
      gap: 0.75rem;
    }
    .img-placeholder svg { width: 36px; opacity: 0.4; }
    .img-placeholder span { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.2);
      color: white;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }
    .carousel-btn:hover { background: rgba(255,255,255,0.25); }
    .carousel-btn.prev { left: 1rem; }
    .carousel-btn.next { right: 1rem; }
    .carousel-btn svg { width: 18px; }

    .carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.2rem; }
    .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      cursor: pointer;
      transition: all 0.3s;
    }
    .dot.active { background: var(--arena); width: 22px; border-radius: 3px; }

    /* CABAÑAS */
    #cabanas { background: var(--blanco); }
    .cabana-block { margin-bottom: 5rem; }
    .cabana-block:last-child { margin-bottom: 0; }
    .cabana-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
    .cabana-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      font-weight: 300;
      color: var(--arena);
      line-height: 1;
      opacity: 0.5;
    }
    .cabana-title-wrap h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 300;
      color: var(--verde-oscuro);
    }
    .cabana-title-wrap span {
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--verde-claro);
    }
    #cabanas .dot { background: rgba(0,0,0,0.2); }
    #cabanas .dot.active { background: var(--verde-medio); }
    #cabanas .carousel-btn { background: rgba(26,46,26,0.12); border-color: rgba(26,46,26,0.2); color: var(--verde-oscuro); }
    #cabanas .carousel-btn:hover { background: rgba(26,46,26,0.25); }

    .leaf-divider { text-align: center; color: var(--verde-claro); opacity: 0.4; font-size: 1.2rem; margin: 0.5rem 0 3rem; letter-spacing: 0.5rem; }

    /* SERVICIOS */
    #servicios { background: var(--verde-oscuro); }
    #servicios .section-tag { color: var(--agua-claro); }
    #servicios h2.section-title { color: var(--blanco); }
    #servicios h2.section-title em { color: var(--arena); }

    .servicios-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.2rem;
      margin-top: 3rem;
    }
    .servicio-item {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px;
      padding: 2rem 1.2rem 1.8rem;
      text-align: center;
      transition: transform 0.3s, background 0.3s, border-color 0.3s;
    }
    .servicio-item:hover {
      transform: translateY(-5px);
      background: rgba(255,255,255,0.09);
      border-color: rgba(212,184,150,0.3);
    }
    .servicio-icon {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: rgba(212,184,150,0.12);
      border: 1px solid rgba(212,184,150,0.2);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.3rem;
      transition: background 0.3s;
    }
    .servicio-item:hover .servicio-icon {
      background: rgba(212,184,150,0.2);
    }
    .servicio-icon svg { width: 26px; stroke: var(--arena); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .servicio-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--arena-claro);
      line-height: 1.35;
    }

    /* DONDE */
    #donde { background: var(--crema); }
    .mapa-wrap { border-radius: 6px; overflow: hidden; margin-top: 2.5rem; box-shadow: 0 8px 40px rgba(26,46,26,0.12); }
    .mapa-wrap iframe { width: 100%; height: 420px; border: none; display: block; }
    .donde-intro { font-size: 1.05rem; line-height: 1.8; color: var(--texto-medio); max-width: 620px; font-weight: 300; }

    /* CONTACTO */
    #contacto { background: var(--crema); }
    #contacto .section-tag { color: var(--verde-claro); }
    #contacto h2.section-title { color: var(--verde-oscuro); }
    .contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 2.5rem; }
    .contacto-info { display: flex; flex-direction: column; gap: 1.8rem; }
    .contact-item { display: flex; align-items: flex-start; gap: 1.1rem; }
    .contact-icon {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(26,46,26,0.08);
      border: 1px solid rgba(26,46,26,0.12);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { width: 18px; color: var(--acento); }
    .contact-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--verde-claro); margin-bottom: 0.3rem; }
    .contact-value { color: var(--texto-medio); font-size: 0.97rem; line-height: 1.5; font-weight: 300; }
    .contact-value a { color: inherit; text-decoration: none; transition: color 0.3s; }
    .contact-value a:hover { color: var(--acento); }

    .contacto-mensaje {
      background: var(--verde-oscuro);
      border-radius: 8px;
      padding: 2.5rem;
    }
    .contacto-mensaje h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 300;
      color: var(--blanco);
      margin-bottom: 1rem;
    }
    .contacto-mensaje p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.75; font-weight: 300; margin-bottom: 1.8rem; }
    .btn-wa-contact {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: #25d366;
      color: #fff;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      padding: 0.85rem 1.8rem;
      border-radius: 50px;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-wa-contact:hover { background: #1fbd5a; transform: translateY(-2px); }
    .btn-wa-contact svg { width: 20px; }

    /* FOOTER */
    footer { background: #0d1a0d; padding: 2.5rem 1.5rem; text-align: center; }
    footer p { color: rgba(255,255,255,0.25); font-size: 0.78rem; letter-spacing: 0.1em; }
    .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; font-weight: 300; letter-spacing: 0.08em; }

    /* WA FAB */
    .wa-fab {
      position: fixed;
      bottom: 2rem; right: 2rem;
      z-index: 200;
      width: 58px; height: 58px;
      border-radius: 50%;
      background: #25d366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      text-decoration: none;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: waPulse 2.5s ease-in-out infinite;
    }
    .wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
    .wa-fab svg { width: 30px; fill: white; }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
      50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
    }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .servicios-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      nav { padding: 1rem 1.2rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 4rem 1.2rem; }
      .nosotros-grid { grid-template-columns: 1fr; gap: 3rem; }
      .nosotros-stats { flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
      .stat-item { flex: 1 1 120px; }
      .stat-num { font-size: 2.8rem; }
      .contacto-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .mapa-wrap iframe { height: 300px; }
      .carousel-btn { width: 36px; height: 36px; }
      .servicios-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    }
    @media (max-width: 480px) {
      .hero-title { font-size: 2.3rem; }
      .hero-sub { font-size: 0.85rem; letter-spacing: 0.15em; }
      .servicios-grid { grid-template-columns: repeat(2, 1fr); }
    }
 