    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green:     #95BB30;
      --green-lt:  #CEE632;
      --green-dk:  #6a8f1a;
      --green-bg:  #f4f9e8;
      --beige:     #f5efe4;
      --beige-2:   #EDE8DC;
      --white:     #FFFFFF;
      --cream:     #FBF9F4;
      --txt-dark:  #1A1A18;
      --txt-mid:   #5A5853;
      --txt-soft:  #8A8880;
      --border:    rgba(0,0,0,.08);
      --border-g:  rgba(149,187,48,.2);
      --radius:    14px;
      --wa:        #25D366;
      --max:       1160px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Dosis', sans-serif;
      background-color: var(--beige);
      color: var(--txt-dark);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ═══════ WATERMARK ═══════ */
    body { position: relative; }

    .wm-bg {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .wm-item {
      position: absolute;
      mix-blend-mode: screen;
      opacity: 0.50;
      user-select: none;
      transform: translateY(-50%);
    }

    .wm-l { left: 0%; }
    .wm-r { right: 0%; }

    .wm-icon {
      display: block;
      width: 150px;
      height: 220px;
      background: url('../../fotos/logos/marca.jpeg') center / contain no-repeat;
      filter: invert(1);
    }

    .wm-label {
      display: block;
      font-family: 'Dosis', sans-serif;
      font-size: 5.9rem;
      font-weight: 700;
      letter-spacing: .12em;
      color: #ffffff;
      line-height: 1;
    }

    /* secciones por encima del watermark */
    .header, .hero, .stats-outer, .divider,
    .map-outer, .footer-outer, .fab {
      position: relative;
      z-index: 1;
    }

    .sec-wrap {
      position: relative;
      z-index: 1;
    }

    /* ═══════ HEADER ═══════ */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(251,249,244,.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 13px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-left { display: flex; align-items: center; gap: 14px; }

    .header-logo { height: 36px; width: auto; }

    .header-logo-text {
      font-family: 'Dosis', sans-serif;
      font-size: 1rem;
      color: var(--txt-dark);
      display: none;
    }

    .header-logo-text em { color: var(--green); font-style: normal; }

    .header-sep { width: 1px; height: 22px; background: var(--border); display: none; }

    .header-tagline { font-size: .72rem; font-weight: 500; color: var(--txt-soft); display: none; }

    .header-right { display: flex; align-items: center; gap: 12px; }


    .header-wa {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 9px 18px;
      background: var(--green);
      border-radius: 8px;
      color: #fff;
      font-family: 'Dosis', sans-serif;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .05em;
      text-decoration: none;
      transition: background .2s;
    }

    .header-wa:hover { background: var(--green-dk); }

    /* ═══════ HERO ═══════ */
    .hero {
      position: relative;
      height: 58vw;
      max-height: 540px;
      min-height: 260px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?w=1400&q=85') center/cover no-repeat;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(165deg, rgba(5,5,5,.08) 0%, rgba(5,5,5,.4) 50%, rgba(5,5,5,.92) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding: 32px 28px 48px;
    }

    .eyebrow {
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .eyebrow::before {
      content: '';
      width: 26px; height: 1px;
      display: block;
      flex-shrink: 0;
    }

    /* variantes de eyebrow */
    .eyebrow-cream { color: #CEE632; }
    .eyebrow-cream::before { background: #CEE632; }

    .eyebrow-green { color: var(--green-dk); }
    .eyebrow-green::before { background: var(--green); }

    .hero-title {
      font-family: 'Arial Black', Arial, sans-serif; font-size: clamp(2rem, 7vw, 4.2rem); font-weight: 900; text-transform: uppercase;
      line-height: .97;
      letter-spacing: -.025em;
      color: #fff;
      margin-bottom: 12px;
    }

    .hero-title em { font-family: 'Dancing Script', cursive; font-style: normal; color: #CEE632; font-weight: 600; font-size: 1.25em; }

    .hero-sub {
      font-size: clamp(.85rem, 1.5vw, 1rem);
      font-weight: 300;
      color: rgba(255,255,255,.6);
      line-height: 1.7;
      max-width: 500px;
    }

    /* ═══════ STATS ═══════ */
    .stats-outer { background: var(--white); border-bottom: 1px solid var(--border); }

    .stats {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 28px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .stat {
      padding: 20px 10px;
      text-align: center;
      border-right: 1px solid var(--border);
    }

    .stat:last-child { border-right: none; }

    .stat-n {
      font-family: 'Dosis', sans-serif;
      font-size: 1.7rem;
      font-weight: 400;
      color: var(--green);
      line-height: 1;
      display: block;
    }

    .stat-l {
      font-size: .6rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--txt-soft);
      display: block;
      margin-top: 4px;
    }

    /* ═══════ SECTION WRAPPER ═══════ */
    .sw {
      max-width: var(--max);
      margin: 0 auto;
      padding: 56px 28px 36px;
    }

    .sw-sm { padding-top: 32px; }
    .sw-top0 { padding-top: 0; }

    .sec-head { margin-bottom: 30px; }

    .sec-title {
      font-family: 'Arial Black', Arial, sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 900;
      letter-spacing: -.02em;
      color: var(--txt-dark);
      margin-top: 6px;
    }

    .sec-title em { font-family: 'Dancing Script', cursive; font-style: normal; color: var(--green); font-size: 1.25em; }

    /* ═══════ TARJETA GRANDE (Bosque Vertical) ═══════ */
    .card-lg {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(0,0,0,.05);
      transition: box-shadow .3s, border-color .3s;
    }

    .card-lg:hover {
      box-shadow: 0 8px 40px rgba(149,187,48,.12);
      border-color: var(--border-g);
    }

    .card-lg-img {
      position: relative;
      height: 300px;
      overflow: hidden;
    }

    .card-lg-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }

    .card-lg:hover .card-lg-img img { transform: scale(1.03); }

    .card-tag {
      position: absolute;
      top: 14px; left: 14px;
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      background: var(--green);
      color: #fff;
      padding: 5px 12px;
      border-radius: 20px;
    }

    .card-loc {
      position: absolute;
      bottom: 14px; left: 14px;
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: .68rem;
      font-weight: 600;
      color: #fff;
      background: rgba(5,5,5,.6);
      backdrop-filter: blur(6px);
      padding: 5px 11px;
      border-radius: 20px;
    }

    .card-lg-body { padding: 28px 26px 24px; }

    .card-name {
      font-family: 'Dosis', sans-serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--txt-dark);
      margin-bottom: 8px;
      line-height: 1.15;
    }

    .card-name em { font-family: 'Dancing Script', cursive; font-style: normal; color: var(--green); font-size: 1.25em; }

    .card-desc {
      font-size: .85rem;
      font-weight: 300;
      color: var(--txt-mid);
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .card-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }

    .card-pill {
      font-size: .7rem;
      font-weight: 600;
      color: var(--txt-mid);
      background: var(--green-bg);
      border: 1px solid rgba(149,187,48,.25);
      padding: 5px 11px;
      border-radius: 8px;
    }

    .card-price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      margin-bottom: 16px;
    }

    .card-price-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--txt-soft); }

    .card-price-val {
      font-family: 'Dosis', sans-serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--green-dk);
    }

    .card-price-note { font-size: .7rem; color: var(--txt-soft); }

    /* ═══════ BTN WA ═══════ */
    .btn-wa {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 13px 18px;
      background: var(--green);
      border-radius: 10px;
      color: #fff;
      font-family: 'Dosis', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s, transform .15s;
    }

    .btn-wa:hover { background: var(--green-dk); }
    .btn-wa:active { transform: scale(.97); }

    /* ═══════ NUEVO PERÚ — SECCIÓN TEXTO (sin fondo imagen) ═══════ */
    .np-intro {
      max-width: var(--max);
      margin: 0 auto;
      padding: 28px 28px 20px;
    }

    .np-intro-grid {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }



    .np-intro-title {
      font-family: 'Arial Black', Arial, sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900;
      letter-spacing: -.025em;
      color: var(--txt-dark);
      line-height: 1.05;
      margin-bottom: 16px;
    }

    .np-intro-title em { font-family: 'Dancing Script', cursive; font-style: normal; color: var(--green); font-weight: 600; font-size: 1.25em; }

    .np-intro-desc {
      font-size: .92rem;
      font-weight: 300;
      color: var(--txt-mid);
      line-height: 1.8;
      max-width: 600px;
      margin-bottom: 20px;
    }

    .np-intro-loc {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--green-dk);
      background: var(--green-bg);
      border: 1px solid rgba(149,187,48,.25);
      padding: 6px 14px;
      border-radius: 20px;
    }

    .np-intro-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      align-self: flex-start;
    }

    .np-intro-stat {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px 14px;
      text-align: center;
    }

    .np-intro-stat-n {
      font-family: 'Dosis', sans-serif;
      font-size: 1.5rem;
      color: var(--green);
      line-height: 1;
      display: block;
    }

    .np-intro-stat-l {
      font-size: .6rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--txt-soft);
      display: block;
      margin-top: 4px;
    }

    /* ═══════ DIVIDER ═══════ */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(149,187,48,.3), transparent);
      margin: 0 28px;
    }

    /* ═══════ GRID ZONAS ═══════ */
    .zones-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }

    /* ═══════ TARJETA ZONA ═══════ */
    .zone-card {
      background: var(--white);
      border: 1px solid rgba(149,187,48,.22);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 3px 18px rgba(0,0,0,.08);
      transition: box-shadow .3s, border-color .3s, transform .3s;
      display: flex;
      flex-direction: column;
    }

    .zone-card:hover {
      box-shadow: 0 10px 40px rgba(149,187,48,.15);
      border-color: var(--green);
      transform: translateY(-3px);
    }

    .zone-card-img {
      position: relative;
      height: 185px;
      overflow: hidden;
      flex-shrink: 0;
    }

    .zone-card-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }

    .zone-card:hover .zone-card-img img { transform: scale(1.04); }

    .zone-badge {
      position: absolute;
      top: 12px; left: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #fff;
      background: rgba(5,5,5,.6);
      backdrop-filter: blur(6px);
      padding: 5px 10px 5px 8px;
      border-radius: 20px;
    }

    .zone-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .zone-body {
      padding: 18px 18px 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .zone-project {
      font-size: .64rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green-dk);
      margin-bottom: 5px;
    }

    .zone-name {
      font-family: 'Dosis', sans-serif;
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--txt-dark);
      margin-bottom: 7px;
    }

    .zone-name em { font-family: 'Dancing Script', cursive; font-style: normal; color: var(--green); font-size: 1.25em; }

    .zone-desc {
      font-size: .8rem;
      font-weight: 300;
      color: var(--txt-mid);
      line-height: 1.65;
      margin-bottom: 13px;
    }

    .zone-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 13px; }

    .zone-spec {
      font-size: .68rem;
      font-weight: 600;
      color: var(--txt-mid);
      background: var(--green-bg);
      border: 1px solid rgba(149,187,48,.2);
      padding: 4px 9px;
      border-radius: 7px;
    }

    .zone-price {
      display: flex;
      align-items: baseline;
      gap: 7px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      margin-bottom: 12px;
      margin-top: auto;
    }

    .zone-price-label { font-size: .63rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--txt-soft); }

    .zone-price-val {
      font-family: 'Dosis', sans-serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--green-dk);
    }

    .btn-wa-sm {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      width: 100%;
      padding: 11px 14px;
      background: var(--green);
      border-radius: 9px;
      color: #fff;
      font-family: 'Dosis', sans-serif;
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s, transform .15s;
    }

    .btn-wa-sm:hover { background: var(--green-dk); }
    .btn-wa-sm:active { transform: scale(.97); }

    /* ═══════ ESG ═══════ */
    .esg-outer {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .esg-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 26px 28px;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .esg-icon {
      width: 42px; height: 42px;
      background: var(--green);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .esg-text h4 { font-family: 'Dosis', sans-serif; font-size: 1rem; font-weight: 400; color: var(--txt-dark); margin-bottom: 3px; }

    .esg-text p { font-size: .78rem; font-weight: 300; color: var(--txt-mid); line-height: 1.55; }

    /* ═══════ CONTACTO ═══════ */
    .contact-outer { max-width: var(--max); margin: 0 auto; padding: 52px 28px 44px; }

    .contact-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 26px;
      text-align: center;
      box-shadow: 0 2px 16px rgba(0,0,0,.04);
    }

    .contact-logo { height: 44px; margin: 0 auto 14px; display: block; }

    .contact-name { font-family: 'Dosis', sans-serif; font-size: 1.1rem; font-weight: 400; color: var(--txt-dark); margin-bottom: 6px; }

    .contact-sub { font-size: .8rem; color: var(--txt-mid); margin-bottom: 22px; line-height: 1.55; }

    .contact-btns { display: flex; flex-direction: column; gap: 10px; }

    .btn-wa-lg {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 14px 22px;
      background: var(--wa);
      border-radius: 10px;
      color: #fff;
      font-family: 'Dosis', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: .05em;
      text-decoration: none;
      transition: background .2s;
    }

    .btn-wa-lg:hover { background: #1fb055; }

    .btn-outline {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 13px 22px;
      border: 1px solid rgba(149,187,48,.35);
      border-radius: 10px;
      color: var(--green-dk);
      font-family: 'Dosis', sans-serif;
      font-size: .83rem;
      font-weight: 600;
      text-decoration: none;
      transition: border-color .2s, background .2s;
    }

    .btn-outline:hover { background: var(--green-bg); border-color: var(--green); }

    /* ═══════ FOOTER ═══════ */
    .footer-outer { border-top: 1px solid var(--border); background: var(--cream); }

    .footer {
      max-width: var(--max);
      margin: 0 auto;
      padding: 28px 28px 52px;
      text-align: center;
    }

    .footer-logo { height: 30px; margin: 0 auto 10px; display: block; opacity: .5; }

    .footer-copy { font-size: .68rem; color: var(--txt-soft); letter-spacing: .06em; }

    .footer-links { display: flex; justify-content: center; gap: 20px; margin-top: 14px; flex-wrap: wrap; }

    .footer-link { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 600; color: var(--green-dk); text-decoration: none; transition: color .2s; }

    .footer-link:hover { color: var(--green); }
    .footer-link svg { flex-shrink: 0; }

    /* ═══════ MAPA ═══════ */
    .map-outer {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .map-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 52px 28px 56px;
    }

    #map {
      height: 380px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border-g);
      box-shadow: 0 4px 24px rgba(149,187,48,.12);
    }

    .leaflet-popup-content-wrapper {
      border-radius: 12px;
      font-family: 'Dosis', sans-serif;
      box-shadow: 0 6px 24px rgba(0,0,0,.14);
      border: 1px solid rgba(0,0,0,.07);
      padding: 6px 4px;
    }

    .leaflet-popup-content { margin: 10px 14px; }

    .leaflet-popup-tip { background: #fff; }

    .map-popup-title {
      font-family: 'Arial Black', Arial, sans-serif; font-size: .95rem; font-weight: 900;
      color: var(--txt-dark);
      margin-bottom: 3px;
    }

    .map-popup-sub {
      font-size: .75rem;
      color: var(--txt-mid);
    }

    .map-popup-tag {
      display: inline-block;
      margin-top: 6px;
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      background: var(--green);
      color: #fff;
      padding: 3px 9px;
      border-radius: 20px;
    }

    /* ═══════ FAB ═══════ */
    .fab {
      position: fixed;
      bottom: 24px; right: 22px;
      z-index: 200;
      width: 56px; height: 56px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(149,187,48,.4);
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
    }

    .fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(149,187,48,.55); background: var(--green-dk); }
    .fab:active { transform: scale(.92); }

    .fab-pulse {
      position: absolute;
      inset: -7px;
      border-radius: 50%;
      border: 2px solid rgba(149,187,48,.35);
      animation: pulse 2.5s ease-out infinite;
    }

    @keyframes pulse {
      0%   { transform: scale(1);   opacity: 1; }
      70%  { transform: scale(1.4); opacity: 0; }
      100% { transform: scale(1.4); opacity: 0; }
    }

    /* ═══════ FADE UP ═══════ */
    .fade-up { opacity: 0; transform: translateY(22px); transition: opacity .52s ease, transform .52s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ═══════ RESPONSIVE ═══════ */

    @media(min-width: 640px) {
      .header-sep, .header-tagline { display: flex; }
      .zones-grid { grid-template-columns: 1fr 1fr; }
      .np-intro-grid { flex-direction: row; align-items: flex-start; gap: 40px; }
      .np-intro-text { flex: 1; }
      .np-intro-stats { grid-template-columns: repeat(3, 1fr); flex-shrink: 0; width: 240px; }
    }

    @media(min-width: 900px) {
      .hero { max-height: 560px; }

      .card-lg {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .card-lg-img { height: auto; min-height: 340px; }

      .zones-grid { grid-template-columns: repeat(3, 1fr); }

      .contact-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 40px;
        text-align: left;
        align-items: center;
      }

      .contact-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-right: 40px;
        border-right: 1px solid var(--border);
      }

      .contact-logo { margin: 0 0 10px; }
      .contact-name, .contact-sub { text-align: left; }
      .contact-btns { flex-direction: row; }
      .btn-wa-lg, .btn-outline { flex: 1; }

      .footer { padding-bottom: 36px; }
    }

    @media(min-width: 1100px) {
      .zones-grid { gap: 22px; }
      .stat-n { font-size: 2rem; }
      .stat { padding: 24px 20px; }
    }
  
