    :root {
      --green: #22c55e;
      --green-dark: #15803d;
      --green-glow: rgba(34,197,94,0.15);
      --dark:    #070d0a;
      --dark-2:  #0d1a10;
      --dark-3:  #111f14;
      --dark-card: #131f16;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background-color: var(--dark);
      color: #e8f5ec;
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
      font-size: 16px;
      line-height: 1.6;
    }

    /* Grain overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.35;
    }

    h1, h2, h3, .bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }

    /* --- Nav --- */
    .site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      background: rgba(7,13,10,0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(34,197,94,0.08);
    }
    .nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1rem;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: #fff; letter-spacing: 0.06em; }
    .nav-links { display: none; gap: 28px; list-style: none; }
    .nav-links a { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(232,245,236,0.5); text-decoration: none; font-weight: 400; transition: color 0.15s; }
    .nav-links a:hover { color: var(--green); }
    @media (min-width: 768px) { .nav-links { display: flex; } }

    /* Mobile menu */
    .mobile-menu { display: none; background: rgba(7,13,10,0.98); border-top: 1px solid rgba(34,197,94,0.1); }
    .mobile-menu.open { display: block; }
    .mobile-menu nav { padding: 1.25rem 1rem; display: flex; flex-direction: column; gap: 1rem; }
    .mobile-menu a { font-size: 13px; color: rgba(232,245,236,0.6); text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none; }

    /* --- Buttons --- */
    .btn-wa {
      background: var(--green);
      color: #051a0a;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 14px;
      padding: 12px 24px;
      border-radius: 3px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      transition: all 0.2s;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-wa:hover { background: #4ade80; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(34,197,94,0.28); }
    .btn-wa:active { transform: translateY(0); }
    .btn-outline {
      background: transparent;
      color: var(--green);
      border: 1px solid rgba(34,197,94,0.35);
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      font-size: 14px;
      padding: 11px 22px;
      border-radius: 3px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
      text-decoration: none;
    }
    .btn-outline:hover { background: rgba(34,197,94,0.07); border-color: var(--green); }

    /* --- Cards --- */
    .card {
      background: var(--dark-card);
      border: 1px solid rgba(34,197,94,0.1);
      border-radius: 4px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .card:hover { border-color: rgba(34,197,94,0.22); transform: translateY(-2px); }

    /* --- Badge disponible --- */
    .badge-open {
      display: none;
      background: rgba(34,197,94,0.12);
      border: 1px solid rgba(34,197,94,0.25);
      color: #4ade80;
      font-size: 10px;
      font-weight: 500;
      padding: 3px 9px;
      border-radius: 2px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
    }
    /* .badge-open.cerrado{ 
      display: none;
     } */
    .badge-open::before {
      content: '';
      display: inline-block;
      width: 6px; height: 6px;
      background: #4ade80;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    .badge-promo {
      background: rgba(234,179,8,0.12);
      border: 1px solid rgba(234,179,8,0.25);
      color: #fde047;
      font-size: 11px;
      font-weight: 500;
      padding: 3px 10px;
      border-radius: 2px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .badge-warning {
      background: rgba(239,68,68,0.1);
      border: 1px solid rgba(239,68,68,0.2);
      color: #fca5a5;
      font-size: 11px;
      font-weight: 500;
      padding: 3px 10px;
      border-radius: 2px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

    /* --- Section tag --- */
    .section-tag {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }
    .section-tag::before {
      content: '';
      display: inline-block;
      width: 20px; height: 1px;
      background: var(--green);
    }

    .divider { width: 36px; height: 2px; background: var(--green); margin-bottom: 20px; }

    /* --- Hero --- */
    .hero {
      min-height: 100svh;
      background-color: var(--dark-2);
      background-image:
        linear-gradient(rgba(34,197,94,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,197,94,0.025) 1px, transparent 1px);
      background-size: 40px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero-glow {
      position: absolute;
      top: 35%; left: 50%;
      transform: translate(-50%,-50%);
      width: 600px; height: 320px;
      background: radial-gradient(ellipse, rgba(34,197,94,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-circle-1 {
      position: absolute;
      top: -60px; right: -60px;
      width: 380px; height: 380px;
      border: 1px solid rgba(34,197,94,0.06);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-circle-2 {
      position: absolute;
      bottom: 20px; left: -80px;
      width: 240px; height: 240px;
      border: 1px solid rgba(34,197,94,0.04);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-diagonal {
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 70px;
      background: var(--dark);
      clip-path: polygon(0 40px, 100% 0, 100% 70px, 0 70px);
    }

    .stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 46px;
      color: #fff;
      line-height: 1;
      letter-spacing: 0.02em;
    }

    /* --- Price tag --- */
    .price-tag {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 30px;
      color: var(--green);
      letter-spacing: 0.04em;
      line-height: 1;
    }
    .price-label {
      font-size: 10px;
      color: rgba(232,245,236,0.3);
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    /* --- Schedule row --- */
    .sched-row {
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(34,197,94,0.07);
      font-size: 14px;
    }
    .sched-row:last-child { border-bottom: none; }
    .sched-row:hover { background: rgba(34,197,94,0.03); }
    .sched-time { font-weight: 500; color: var(--green); font-size: 13px; }

    /* --- Amenity icon --- */
    .amenity-icon {
      width: 42px; height: 42px;
      background: rgba(34,197,94,0.08);
      border: 1px solid rgba(34,197,94,0.14);
      border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    /* --- Promo banner --- */
    .promo-banner {
      background: linear-gradient(135deg, rgba(234,179,8,0.07) 0%, rgba(34,197,94,0.05) 100%);
      border: 1px solid rgba(234,179,8,0.2);
      border-radius: 4px;
      position: relative;
      overflow: hidden;
    }
    .promo-banner::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px; height: 100%;
      background: #eab308;
    }

    /* --- Warning banner --- */
    .warning-banner {
      background: rgba(239,68,68,0.06);
      border: 1px solid rgba(239,68,68,0.18);
      border-radius: 4px;
      position: relative;
      overflow: hidden;
    }
    .warning-banner::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px; height: 100%;
      background: #ef4444;
    }

    /* --- Step dot --- */
    .step-dot {
      min-width: 26px; height: 26px;
      background: rgba(34,197,94,0.1);
      border: 1px solid rgba(34,197,94,0.2);
      border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      color: var(--green);
    }

    /* --- Floating WA --- */
    .floating-wa {
      position: fixed;
      bottom: 20px; right: 16px;
      z-index: 100;
      background: var(--green);
      color: #051a0a;
      width: 56px; height: 56px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 22px rgba(34,197,94,0.38);
      transition: transform 0.2s;
    }
    .floating-wa:hover { transform: scale(1.08); }
    @media (min-width: 768px) { .floating-wa { display: none; } }

    /* --- Fade-up --- */
    .fade-up {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* --- Map placeholder --- */
    .map-ph {
      background: var(--dark-3);
      border: 1px solid rgba(34,197,94,0.1);
      border-radius: 4px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 10px;
      min-height: 240px;
      text-align: center;
      padding: 2rem;
    }

    /* --- Stars --- */
    .stars { color: #fbbf24; font-size: 15px; letter-spacing: 1px; }

    /* Utility */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
    .section { padding: 5rem 0; }
