    :root {
      --green: #95BB30;
      --green-lt: #CEE632;
      --green-dk: #6a8f1a;
      --green-bg: rgba(149, 187, 48, .1);
      --white: #fff;
      --black: #050505;
    }

    body {
      font-family: Arial, sans-serif;
      background: #050505;
      color: #f5f2ec;
      cursor: none;
      overflow-x: hidden;
    }

    @media(max-width:768px) {
      body {
        cursor: auto;
      }

      .cursor,
      .cursor-ring {
        display: none !important;
      }
    }

    .cursor {
      position: fixed;
      width: 8px;
      height: 8px;
      background: #95BB30;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .25s, height .25s;
    }

    .cursor-ring {
      position: fixed;
      width: 32px;
      height: 32px;
      border: 1.5px solid rgba(149, 187, 48, .45);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width .35s, height .35s;
    }

    body.cursor-hover .cursor {
      width: 16px;
      height: 16px;
    }

    body.cursor-hover .cursor-ring {
      width: 48px;
      height: 48px;
      border-color: #95BB30;
    }

    /* HERO */
    .terrenos-hero {
      min-height: calc(70vh - 82px);
      margin-top: 82px;
      background: url('../../fotos/inicio/terreno.jpg') center/cover no-repeat;
      position: relative;
      display: flex;
      align-items: flex-end;
    }

    .terrenos-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 200px;
      background: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent);
      z-index: 1;
    }

    .terrenos-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, .92) 100%);
    }

    .terrenos-hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      padding: 0 56px 72px;
    }

    .terrenos-hero-eyebrow {
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .32em;
      text-transform: uppercase;
      color: var(--green-lt);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .terrenos-hero-eyebrow::before {
      content: '';
      width: 36px;
      height: 1px;
      background: var(--green);
      display: inline-block;
    }

    .terrenos-hero-title {
      font-family: 'Arial Black', Arial, sans-serif; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; text-transform: uppercase;
      line-height: .96;
      letter-spacing: -.03em;
      color: #fff;
      margin-bottom: 20px;
    }

    .terrenos-hero-title em {
      font-family: 'Arial Black', Arial, sans-serif; font-style: normal;
      font-weight: 900; text-transform: uppercase;
      color: #fff; font-size: 0.82em;
    }

    .terrenos-hero-sub {
      font-size: 1.07rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .55);
      max-width: 480px;
      line-height: 1.85;
    }

    /* PRODUCTOS */
    .terrenos-productos {
      padding: 80px 0;
      position: relative !important;
    }

    .terrenos-productos::before {
      display: none !important;
    }

    .terrenos-wm {
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Arial Black', Arial, sans-serif;
      font-size: clamp(13rem, 26vw, 32rem);
      font-weight: 700;
      color: rgba(120,120,115,.05);
      pointer-events: none;
      user-select: none;
      white-space: pre;
      text-align: center;
      line-height: .88;
      z-index: 0;
    }

    .terrenos-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 1;
    }

    .terrenos-header {
      margin-bottom: 48px;
    }

    .terrenos-eyebrow {
      font-size: .84rem;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--green-dk);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .terrenos-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--green);
      display: inline-block;
    }

    .terrenos-section-title {
      font-family: 'Arial Black', Arial, sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
      color: #f5f2ec;
      letter-spacing: -.02em;
    }

    .terrenos-section-title em {
      font-family: 'Arial Black', Arial, sans-serif; font-style: normal;
      font-weight: 900; text-transform: uppercase;
      color: inherit; font-size: 1em;
    }

    /* Grid productos desde Supabase */
    .terrenos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media(max-width:960px) {
      .terrenos-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .terrenos-hero-content {
        padding: 0 32px 56px;
      }
    }

    @media(max-width:560px) {
      .terrenos-grid {
        grid-template-columns: 1fr;
      }
      .terrenos-hero-content {
        padding: 0 20px 48px;
      }
    }

    .terrenos-card {
      background: #ffffff;
      border: 1.5px solid rgba(149, 187, 48, .18);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
      cursor: none;
    }

    .terrenos-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(149, 187, 48, .2);
      border-color: var(--green);
    }

    .terrenos-card-img {
      height: 220px;
      background: #e8f5d0 center/cover no-repeat;
      position: relative;
    }

    .terrenos-card-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--green);
      color: #fff;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 12px;
    }

    .terrenos-card-body {
      padding: 22px 20px;
    }

    .terrenos-card-price {
      font-family: 'Dosis', sans-serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: #1A1A18;
      margin-bottom: 6px;
    }

    .terrenos-card-title {
      font-size: .95rem;
      font-weight: 600;
      color: #5a8010;
      margin-bottom: 6px;
    }

    .terrenos-card-loc {
      font-size: .78rem;
      color: #888;
      margin-bottom: 14px;
    }

    .terrenos-card-specs {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .terrenos-card-spec {
      font-size: .72rem;
      font-weight: 600;
      background: var(--green-bg);
      color: var(--green-dk);
      padding: 4px 10px;
    }

    .terrenos-card-cta {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Próximamente */
    .terrenos-coming {
      text-align: center;
      padding: 80px 32px;
      background: #eef4dc;
      position: relative;
      z-index: 2;
      border: 1.5px dashed rgba(149, 187, 48, .4);
    }

    .terrenos-coming-icon {
      font-size: 3rem;
      margin-bottom: 16px;
    }

    .terrenos-coming-title {
      font-family: 'Arial Black', Arial, sans-serif; font-size: 1.8rem; font-weight: 900;
      color: #f5f2ec;
      margin-bottom: 10px;
    }

    .terrenos-coming-sub {
      font-size: .9rem;
      color: rgba(245, 242, 236, .5);
      font-weight: 300;
    }

    /* CTA */
    .terrenos-cta {
      padding: 80px 32px;
      text-align: center;
      background: linear-gradient(160deg, #1a3a0a, #2a5a10);
      position: relative;
      overflow: hidden;
    }

    .terrenos-cta::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(149, 187, 48, .1) 0%, transparent 70%);
      pointer-events: none;
    }

    .terrenos-cta-title {
      font-family: 'Arial Black', Arial, sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900;
      color: #fff;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .terrenos-cta-title em {
      font-family: 'Dancing Script', cursive; font-style: normal;
      color: var(--green-lt); font-size: 1.25em;
    }

    .terrenos-cta-sub {
      font-size: .9rem;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
    }

    .terrenos-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--green);
      color: #fff;
      padding: 14px 36px;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .25s;
      position: relative;
      z-index: 1;
    }

    .terrenos-cta-btn:hover {
      background: #fff;
      color: var(--green-dk);
    }

    /* Navbar siempre oscuro */
    #navbar {
      background: rgba(8,8,8,.96) !important;
      backdrop-filter: blur(20px) !important;
      border-bottom: 1px solid transparent !important;
    }
    #navbar .nav-links a { color: rgba(245,242,236,.85) !important; }
    #navbar .nav-links a:hover { color: #CEE632 !important; }
    #navbar .hamburger span { background: #f5f2ec !important; }
  

    #ofm-toggle{position:fixed;bottom:28px;right:100px;z-index:9998;display:flex;align-items:center;gap:10px;background:linear-gradient(135deg,#1e4a08 0%,#95BB30 60%,#CEE632 100%);color:#fff;border:none;border-radius:50px;padding:13px 20px 13px 16px;cursor:pointer;font-family:'Dosis',sans-serif;font-size:.95rem;font-weight:800;letter-spacing:.04em;box-shadow:0 8px 30px rgba(149,187,48,.5);transition:all .3s cubic-bezier(.34,1.4,.64,1);}
    #ofm-toggle:hover{transform:translateY(-3px) scale(1.04);box-shadow:0 14px 40px rgba(149,187,48,.6);}
    #ofm-toggle .ofm-close{display:none;font-size:1.1rem;font-weight:700;}
    #ofm-toggle.open{border-radius:50%;width:52px;height:52px;padding:0;justify-content:center;right:28px;}
    #ofm-toggle.open .ofm-label,#ofm-toggle.open .ofm-icon{display:none;}
    #ofm-toggle.open .ofm-close{display:flex;}
    #ofm-panel{position:fixed;bottom:90px;right:28px;width:340px;z-index:9997;border-radius:18px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.22),0 0 0 1px rgba(149,187,48,.15);opacity:0;transform:translateY(20px) scale(.96);pointer-events:none;transition:opacity .3s ease,transform .3s cubic-bezier(.34,1.2,.64,1);}
    #ofm-panel.open{opacity:1;transform:translateY(0) scale(1);pointer-events:auto;}
    .ofm-header{background:linear-gradient(135deg,#0f2a04 0%,#1e4a08 50%,#2d6218 100%);padding:20px 22px 16px;position:relative;overflow:hidden;}
    .ofm-header::before{content:'';position:absolute;top:-40px;right:-40px;width:140px;height:140px;border-radius:50%;background:rgba(149,187,48,.12);}
    .ofm-header::after{content:'';position:absolute;bottom:-30px;left:-20px;width:100px;height:100px;border-radius:50%;background:rgba(206,230,50,.07);}
    .ofm-logo{height:30px;width:auto;filter:brightness(0) invert(1);margin-bottom:14px;position:relative;z-index:1;display:block;}
    .ofm-header h3{font-family:'Arial Black',Arial,sans-serif;font-size:1.05rem;font-weight:900;color:#fff;margin:0 0 12px;line-height:1.2;position:relative;z-index:1;}
    .ofm-header h3 em{color:#CEE632;font-style:normal;}
    .ofm-steps{display:flex;align-items:center;position:relative;z-index:1;}
    .ofm-step{display:flex;align-items:center;gap:7px;}
    .ofm-step-num{width:24px;height:24px;border-radius:50%;border:2px solid rgba(255,255,255,.3);display:flex;align-items:center;justify-content:center;font-family:'Dosis',sans-serif;font-size:.72rem;font-weight:800;color:rgba(255,255,255,.5);}
    .ofm-step.active .ofm-step-num{background:#CEE632;border-color:#CEE632;color:#0f2a04;}
    .ofm-step.done .ofm-step-num{background:#95BB30;border-color:#95BB30;color:#fff;}
    .ofm-step-lbl{font-family:'Dosis',sans-serif;font-size:.72rem;font-weight:700;color:rgba(255,255,255,.5);letter-spacing:.06em;text-transform:uppercase;}
    .ofm-step.active .ofm-step-lbl{color:#CEE632;}
    .ofm-step.done .ofm-step-lbl{color:rgba(255,255,255,.75);}
    .ofm-line{flex:1;height:2px;background:rgba(255,255,255,.12);margin:0 10px;border-radius:2px;overflow:hidden;position:relative;}
    .ofm-line::after{content:'';position:absolute;left:0;top:0;height:100%;width:0%;background:linear-gradient(90deg,#95BB30,#CEE632);transition:width .45s ease;}
    .ofm-line.filled::after{width:100%;}
    .ofm-body{background:#fff;padding:22px 22px 18px;}
    .ofm-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
    .ofm-field{margin-bottom:11px;}
    .ofm-field label{display:block;font-family:'Dosis',sans-serif;font-size:.67rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#2d6218;margin-bottom:5px;}
    .ofm-field input,.ofm-field select{width:100%;border:1.5px solid #dde8cc;border-radius:10px;padding:10px 13px;font-family:'Dosis',sans-serif;font-size:.9rem;font-weight:500;color:#1a3a0a;background:#f8fbf3;transition:border-color .2s,box-shadow .2s;outline:none;box-sizing:border-box;}
    .ofm-field input:focus,.ofm-field select:focus{border-color:#95BB30;box-shadow:0 0 0 3px rgba(149,187,48,.14);background:#fff;}
    .ofm-field input::placeholder{color:#aab89a;}
    .ofm-field .ofm-err{display:none;font-family:'Dosis',sans-serif;font-size:.68rem;color:#d94f4f;font-weight:700;margin-top:4px;letter-spacing:.04em;}
    .ofm-field.error input{border-color:#d94f4f;}
    .ofm-field.error .ofm-err{display:block;}
    .ofm-phone-wrap{display:flex;gap:8px;}
    .ofm-phone-prefix{display:flex;align-items:center;gap:5px;background:#f0f6e8;border:1.5px solid #dde8cc;border-radius:10px;padding:10px 11px;font-family:'Dosis',sans-serif;font-size:.85rem;font-weight:700;color:#2d6218;white-space:nowrap;flex-shrink:0;}
    .ofm-phone-wrap .ofm-field{flex:1;margin:0;}
    .ofm-chips{display:flex;flex-wrap:wrap;gap:7px;}
    .ofm-chip{padding:7px 13px;border-radius:20px;border:1.5px solid #dde8cc;background:#f8fbf3;font-family:'Dosis',sans-serif;font-size:.78rem;font-weight:700;color:#5a7a3a;cursor:pointer;transition:all .2s;user-select:none;}
    .ofm-chip:hover{border-color:#95BB30;color:#2d6218;}
    .ofm-chip.selected{background:#95BB30;border-color:#95BB30;color:#fff;}
    .ofm-privacy{display:flex;align-items:flex-start;gap:9px;margin-bottom:16px;}
    .ofm-privacy input[type="checkbox"]{margin-top:2px;accent-color:#95BB30;width:14px;height:14px;flex-shrink:0;cursor:pointer;}
    .ofm-privacy label{font-family:'Dosis',sans-serif;font-size:.71rem;color:#7a8a6a;line-height:1.55;cursor:pointer;}
    .ofm-privacy a{color:#95BB30;text-decoration:underline;}
    .ofm-divider{height:1px;background:linear-gradient(90deg,transparent,#e8f0d8,transparent);margin:4px 0 14px;}
    .ofm-btn{width:100%;padding:13px;border:none;border-radius:12px;font-family:'Dosis',sans-serif;font-size:.95rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;cursor:pointer;transition:all .25s;display:flex;align-items:center;justify-content:center;gap:8px;}
    .ofm-btn-primary{background:linear-gradient(135deg,#1e4a08 0%,#95BB30 55%,#CEE632 100%);color:#fff;box-shadow:0 6px 20px rgba(149,187,48,.35);}
    .ofm-btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(149,187,48,.5);}
    .ofm-btn-back{background:transparent;color:#7a9a5a;border:1.5px solid #dde8cc;font-size:.82rem;margin-top:8px;padding:9px;}
    .ofm-btn-back:hover{border-color:#95BB30;color:#2d6218;}
    .ofm-success{background:#fff;padding:36px 24px 32px;text-align:center;}
    .ofm-success-ring{width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,#95BB30,#CEE632);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;font-size:2rem;box-shadow:0 8px 24px rgba(149,187,48,.4);}
    .ofm-success h4{font-family:'Arial Black',Arial,sans-serif;font-size:1.1rem;font-weight:900;color:#1a3a0a;margin:0 0 8px;}
    .ofm-success p{font-family:'Dosis',sans-serif;font-size:.88rem;color:#6a8a5a;margin:0 0 20px;line-height:1.65;}
    .ofm-success-wsp{display:inline-flex;align-items:center;gap:8px;background:#25d366;color:#fff;border-radius:10px;padding:10px 20px;font-family:'Dosis',sans-serif;font-size:.85rem;font-weight:800;letter-spacing:.04em;text-decoration:none;transition:all .2s;}
    .ofm-success-wsp:hover{transform:translateY(-2px);box-shadow:0 6px 18px rgba(37,211,102,.4);}
    @media(max-width:480px){#ofm-panel{right:10px;left:10px;width:auto;bottom:150px;}#ofm-toggle{right:10px;bottom:90px;}#ofm-toggle.open{right:10px;bottom:90px;}}
  
