/* ══════════════════════════════════════════════════════════
   CUBRECERCOS LAS CASUARINAS — styles.css
   ══════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --verde:       #2d5a3d;
  --verde-dark:  #1a3a2a;
  --verde-deep:  #0f2218;
  --verde-mid:   #3d7a52;
  --verde-light: #4a7c59;
  --verde-glow:  rgba(74, 124, 89, 0.25);
  --negro:       #080808;
  --negro-s:     #141414;
  --negro-c:     #1c1c1c;
  --blanco:      #ffffff;
  --hueso:       #f8f7f4;
  --hueso-d:     #f0efe9;
  --madera:      #8b5e3c;
  --madera-l:    #c4956a;
  --dorado:      #c9a84c;
  --gris:        #6b7280;
  --gris-l:      #9ca3af;
  --border:      rgba(255,255,255,0.08);
  --border-d:    rgba(0,0,0,0.08);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --radius:      16px;
  --radius-lg:   24px;
  --shadow:      0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', -apple-system, sans-serif;
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--hueso);
  color: var(--negro);
  overflow-x: hidden;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: none; font-family: inherit; }
input { font-family: inherit; }

/* ─── UTILITIES ─────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.d-none-sm  { display: inline; }
.mt-1 { margin-top: 1rem; }

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--verde-light);
  transform: translate(-50%, -50%);
  top: 0; left: 0;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--verde-light);
  transform: translate(-50%, -50%);
  top: 0; left: 0;
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), border-color 0.2s;
}
.cursor-ring.expand {
  width: 56px; height: 56px;
  border-color: var(--dorado);
  opacity: 0.7;
}

/* ─── PRELOADER ─────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--negro);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
#preloader.hidden { opacity: 0; pointer-events: none; transform: scale(1.04); }

.preloader-inner { text-align: center; }
.pl-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: plPulse 1.2s ease-in-out infinite alternate;
}
@keyframes plPulse { from { opacity: 0.6; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

.pl-text {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--blanco);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}
.pl-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.pl-progress {
  height: 100%;
  background: var(--verde-light);
  animation: plBar 1.8s var(--ease-out) forwards;
}
@keyframes plBar { from { width: 0; } to { width: 100%; } }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.3);
}
.nav-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo-mark { display: flex; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--blanco);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 0.65rem;
  color: var(--verde-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex; gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--blanco); background: rgba(255,255,255,0.06); }

.nav-cta {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--verde);
  color: var(--blanco);
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--verde-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--verde-glow);
}
.nav-cta i { font-size: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  max-height: 0;
  overflow: hidden;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  transition: max-height 0.4s var(--ease-out);
}
.nav-drawer.open { max-height: 500px; }
.nav-drawer ul { padding: 1rem 2rem; display: flex; flex-direction: column; gap: 0.25rem; }
.nav-drawer a {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 0.7rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--verde-light); }
.nav-drawer-cta {
  display: flex; align-items: center; gap: 0.5rem;
  margin: 0.5rem 2rem 1.5rem;
  background: var(--verde);
  color: var(--blanco) !important;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  justify-content: center;
}

/* ─── SECTION SHARED ─────────────────────────────────────── */
section { padding: 120px 0; }

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head.light .stitle,
.section-head.light .ssub { color: var(--blanco); }
.section-head.light .stag { background: rgba(74,124,89,0.2); color: var(--verde-light); border-color: rgba(74,124,89,0.3); }

.stag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde);
  background: rgba(45, 90, 61, 0.08);
  border: 1px solid rgba(45, 90, 61, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.stitle {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--negro);
  margin-bottom: 1rem;
}
.ssub {
  font-size: 1.05rem;
  color: var(--gris);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--verde);
  color: var(--blanco);
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--verde-mid);
  box-shadow: 0 8px 30px var(--verde-glow);
}
.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover .btn-glow { transform: translateX(100%); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: var(--blanco);
  transform: translateY(-2px);
}
.btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn-ghost:hover .btn-arrow { transform: translateY(3px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1.5px solid var(--verde);
  color: var(--verde);
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-outline:hover {
  background: var(--verde);
  color: var(--blanco);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--verde-glow);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--negro);
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(26,58,42,0.9) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(15,34,24,0.6) 0%, transparent 60%),
    linear-gradient(135deg, #0f2218 0%, #141414 50%, #0a0a0a 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,124,89,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,124,89,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift { from { transform: translateY(0); } to { transform: translateY(60px); } }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.orb-1 { width: 500px; height: 500px; background: rgba(26,58,42,0.5); top: -100px; left: -100px; animation-duration: 9s; }
.orb-2 { width: 400px; height: 400px; background: rgba(45,90,61,0.3); bottom: -50px; right: 10%; animation-duration: 11s; animation-delay: -3s; }
.orb-3 { width: 300px; height: 300px; background: rgba(74,124,89,0.15); top: 30%; right: 25%; animation-duration: 7s; animation-delay: -5s; }
@keyframes orbFloat { from { transform: translate(0, 0) scale(1); } to { transform: translate(30px, -20px) scale(1.08); } }

/* Leaves */
.leaf { position: absolute; pointer-events: none; }
.leaf-a { width: 80px; top: 15%; right: 12%; opacity: 0.6; animation: leafSway 7s ease-in-out infinite alternate; }
.leaf-b { width: 60px; bottom: 20%; right: 30%; opacity: 0.4; animation: leafSway 9s ease-in-out infinite alternate-reverse; }
.leaf-c { width: 50px; top: 60%; left: 8%; opacity: 0.3; animation: leafSway 6s ease-in-out infinite alternate; }
@keyframes leafSway {
  0%   { transform: rotate(-10deg) translateY(0); }
  100% { transform: rotate(10deg) translateY(-15px); }
}

/* Particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(74,124,89,0.4);
  animation: particleRise linear infinite;
}
@keyframes particleRise {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 780px;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(74,124,89,0.12);
  border: 1px solid rgba(74,124,89,0.3);
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.badge-pulse {
  width: 6px; height: 6px;
  background: var(--verde-light);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,124,89,0.6); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 6px rgba(74,124,89,0); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  display: flex; flex-direction: column;
}
.ht-line { color: var(--blanco); display: block; }
.ht-accent {
  color: transparent;
  background: linear-gradient(90deg, var(--verde-light) 0%, #6eb87a 50%, var(--madera-l) 100%);
  -webkit-background-clip: text; background-clip: text;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  backdrop-filter: blur(12px);
}
.hstat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 1.5rem;
}
.hstat-n {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blanco);
  line-height: 1;
}
.hstat-plus { font-size: 1.2rem; color: var(--verde-light); font-weight: 700; line-height: 2; }
.hstat-l { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }
.hstat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 10;
}
.scroll-track {
  width: 1.5px; height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.scroll-thumb {
  width: 100%; height: 50%;
  background: var(--verde-light);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(-100%); }
  50%       { transform: translateY(200%); }
}
.hero-scroll span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-shape {
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px; z-index: 5;
}
.hero-shape svg { width: 100%; height: 100%; }

/* Reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ─── BENEFITS ───────────────────────────────────────────── */
.benefits { background: var(--hueso); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bcard {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-d);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}
.bcard.visible { opacity: 1; transform: translateY(0); }
.bcard::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,90,61,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(45,90,61,0.15); }
.bcard:hover::before { opacity: 1; }
.bcard:hover .bcard-bar { width: 100%; }

.bcard-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.bcard-icon {
  width: 52px; height: 52px;
  background: rgba(45,90,61,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--verde);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.bcard:hover .bcard-icon {
  background: var(--verde);
  color: var(--blanco);
  transform: rotate(-4deg) scale(1.08);
}
.bcard-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(0,0,0,0.12);
  letter-spacing: 0.1em;
}

.bcard h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--negro);
  margin-bottom: 0.6rem;
}
.bcard p { font-size: 0.9rem; color: var(--gris); line-height: 1.65; }

.bcard-bar {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--verde), var(--verde-light));
  transition: width 0.4s var(--ease-out);
}

/* ─── GALLERY ─────────────────────────────────────────────── */
.gallery { background: var(--negro-s); padding-bottom: 120px; }
.gallery .stitle,
.gallery .ssub { color: var(--blanco); }
.gallery .stag { background: rgba(74,124,89,0.15); color: var(--verde-light); border-color: rgba(74,124,89,0.3); }

.gal-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gfil {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  transition: all 0.2s;
  cursor: none;
}
.gfil:hover { color: var(--blanco); border-color: rgba(255,255,255,0.3); }
.gfil.active {
  background: var(--verde);
  color: var(--blanco);
  border-color: transparent;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 1.25rem;
}
.gitem-wide  { grid-column: span 2; }
.gitem-tall  { grid-row: span 2; }

.gitem {
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.gitem.visible { opacity: 1; transform: scale(1); }
.gitem.hidden  { opacity: 0 !important; transform: scale(0.9) !important; pointer-events: none; }

.gitem-inner {
  position: relative; width: 100%; height: 100%;
  overflow: hidden; border-radius: var(--radius);
}
.gitem-inner img {
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: brightness(0.85) saturate(0.9);
}
.gitem:hover .gitem-inner img { transform: scale(1.06); filter: brightness(0.75) saturate(1.1); }

.gitem-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0; transition: opacity 0.35s;
}
.gitem:hover .gitem-overlay { opacity: 1; }

.gitem-tag {
  display: inline-block;
  background: var(--verde);
  color: var(--blanco);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.4rem;
  width: fit-content;
}
.gitem-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.gitem-zoom {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: var(--blanco);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
  cursor: none;
}
.gitem-zoom:hover { background: var(--verde); transform: scale(1.1); }

.gitem-inner video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: brightness(0.85) saturate(0.9);
}
.gitem:hover .gitem-inner video { transform: scale(1.06); filter: brightness(0.75) saturate(1.1); }

.gitem-play-badge {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blanco);
  font-size: 1.1rem;
  pointer-events: none;
  transition: opacity 0.3s;
}
.gitem:hover .gitem-play-badge { opacity: 0; }

.gal-footer { text-align: center; margin-top: 2.5rem; }

/* ─── COLORS SECTION ─────────────────────────────────────── */
.colors-sec { background: var(--hueso-d); }

.colors-row {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  justify-content: center;
}
.cswatch {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  cursor: default;
}
.cswatch-inner {
  width: 80px; height: 80px;
  background: var(--c, #888);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  border: var(--border, 0) solid rgba(0,0,0,0.1);
}
.cswatch:hover .cswatch-inner { transform: translateY(-6px) scale(1.08); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.cswatch span { font-size: 0.78rem; font-weight: 500; color: var(--gris); }
.cswatch-sizes { font-size: 0.72rem; color: var(--gris); opacity: 0.75; letter-spacing: 0.02em; text-align: center; }

/* ─── HOW WE WORK ─────────────────────────────────────────── */
.how {
  background: var(--negro);
  position: relative;
  overflow: hidden;
}
.how-bg { position: absolute; inset: 0; pointer-events: none; }
.how-orb {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,58,42,0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.steps-wrap { position: relative; }
.steps-line {
  position: absolute; top: 40px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,124,89,0.3) 20%, rgba(74,124,89,0.3) 80%, transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.step.visible { opacity: 1; transform: translateY(0); }

.step-icon-wrap {
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 2;
}
.step-icon {
  width: 80px; height: 80px;
  background: rgba(45,90,61,0.15);
  border: 1.5px solid rgba(74,124,89,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--verde-light);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
}
.step:hover .step-icon {
  background: var(--verde);
  border-color: var(--verde-mid);
  transform: scale(1.1);
  box-shadow: 0 8px 30px var(--verde-glow);
  color: var(--blanco);
}

.step-num {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.step-body h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem; font-weight: 600;
  color: var(--blanco);
  margin-bottom: 0.5rem;
}
.step-body p { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ─── CALCULATOR ──────────────────────────────────────────── */
.calc-sec { background: var(--hueso); }

.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.calc-info .stag { display: inline-block; margin-bottom: 1rem; }
.calc-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--negro);
  margin-bottom: 1rem;
}
.calc-info p { font-size: 1rem; color: var(--gris); line-height: 1.65; margin-bottom: 2rem; }

.calc-fact {
  display: flex; align-items: center; gap: 1rem;
  background: var(--blanco);
  border: 1px solid var(--border-d);
  border-left: 3px solid var(--verde);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-bottom: 2rem;
}
.calc-fact-icon {
  width: 40px; height: 40px;
  background: rgba(45,90,61,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--verde); font-size: 1rem;
  flex-shrink: 0;
}
.calc-fact strong { display: block; font-size: 0.95rem; color: var(--negro); margin-bottom: 0.15rem; }
.calc-fact span { font-size: 0.8rem; color: var(--gris); }

.calc-card {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-d);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.calc-card-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.5rem 2rem;
  background: var(--negro);
  color: var(--blanco);
}
.calc-card-header i { font-size: 1.1rem; color: var(--verde-light); }
.calc-card-header h3 { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; }

.calc-fields {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.75rem 2rem 0;
}
.cfield { flex: 1; }
.cfield label {
  display: block;
  font-size: 0.78rem; font-weight: 600;
  color: var(--negro); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cfield-input {
  position: relative;
  display: flex; align-items: center;
}
.cfield-input input {
  width: 100%;
  padding: 0.8rem 2.8rem 0.8rem 0.9rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1.05rem; font-weight: 500;
  color: var(--negro);
  background: var(--hueso);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -moz-appearance: textfield;
}
.cfield-input input::-webkit-outer-spin-button,
.cfield-input input::-webkit-inner-spin-button { -webkit-appearance: none; }
.cfield-input input:focus { border-color: var(--verde); box-shadow: 0 0 0 3px rgba(45,90,61,0.1); }
.cfield-unit {
  position: absolute; right: 0.9rem;
  font-size: 0.78rem; color: var(--gris); font-weight: 500;
  pointer-events: none;
}
.cfield-mult { font-size: 1.4rem; color: var(--gris-l); font-weight: 300; padding-top: 1.5rem; flex-shrink: 0; }

.calc-fence-type { padding: 1.5rem 2rem 0; }
.calc-fence-type label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gris); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.fence-btns { display: flex; gap: 0.6rem; }
.fence-btn {
  flex: 1; padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--borde);
  border-radius: 8px;
  background: transparent;
  color: var(--gris);
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.fence-btn.active {
  border-color: var(--verde);
  background: rgba(74,124,89,0.1);
  color: var(--verde-dark);
  font-weight: 600;
}
.fence-btn:hover:not(.active) { border-color: var(--verde-light); color: var(--verde-dark); }

.btn-calc {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: calc(100% - 4rem);
  margin: 1.5rem 2rem;
  padding: 0.9rem;
  background: var(--negro);
  color: var(--blanco);
  border-radius: 12px;
  font-size: 0.95rem; font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: none;
}
.btn-calc:hover { background: var(--verde); transform: translateY(-1px); box-shadow: 0 6px 20px var(--verde-glow); }
.btn-calc i { font-size: 1rem; }

.calc-result {
  padding: 0 2rem 2rem;
  display: none;
  animation: fadeSlideUp 0.4s var(--ease-out) both;
}
.calc-result.show { display: block; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cres-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1rem;
  background: var(--hueso);
  border-radius: 10px;
}
.cres-label { font-size: 0.85rem; color: var(--gris); display: flex; align-items: center; gap: 0.5rem; }
.cres-val { font-size: 1rem; font-weight: 700; color: var(--negro); }
.cres-big { font-size: 1.3rem; color: var(--verde); }
.cres-sep { height: 1px; background: #e5e7eb; margin: 0.5rem 0; }
.cres-note {
  font-size: 0.8rem; color: var(--gris);
  padding: 0.6rem 0 0.25rem;
  text-align: center;
  line-height: 1.5;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials { background: var(--hueso); }

.tgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.tcard {
  background: var(--blanco);
  border: 1px solid var(--border-d);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  opacity: 0; transform: translateY(30px);
}
.tcard.visible { opacity: 1; transform: translateY(0); }
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.tcard-featured {
  background: var(--negro);
  border-color: rgba(74,124,89,0.25);
  box-shadow: 0 0 0 1px rgba(74,124,89,0.1);
}
.tcard-featured p { color: rgba(255,255,255,0.75) !important; }
.tcard-featured strong { color: var(--blanco) !important; }
.tcard-featured span { color: rgba(255,255,255,0.4) !important; }

.tcard-quote {
  position: absolute; top: -16px; left: 1.5rem;
  width: 36px; height: 36px;
  background: var(--verde);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blanco); font-size: 0.85rem;
}
.tcard-stars { display: flex; gap: 3px; color: var(--dorado); font-size: 0.85rem; margin-bottom: 1rem; }
.tcard p { font-size: 0.92rem; color: var(--gris); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 0.75rem; }
.tcard-av {
  width: 42px; height: 42px;
  background: var(--verde);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--blanco);
  flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 0.9rem; color: var(--negro); font-weight: 600; }
.tcard-author span { font-size: 0.78rem; color: var(--gris-l); }

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-sec {
  background: var(--negro);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,124,89,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,124,89,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
  animation: orbFloat 10s ease-in-out infinite alternate;
}
.cta-orb1 { width: 600px; height: 600px; background: rgba(26,58,42,0.5); top: -200px; left: -100px; }
.cta-orb2 { width: 400px; height: 400px; background: rgba(45,90,61,0.3); bottom: -100px; right: -50px; animation-delay: -4s; }

.cta-body { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-sec .stag { background: rgba(74,124,89,0.15); color: var(--verde-light); border-color: rgba(74,124,89,0.3); margin-bottom: 1.5rem; }

.cta-sec h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--blanco);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.cta-sec h2 em { font-style: italic; color: var(--verde-light); }
.cta-sec p { font-size: 1.05rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 2.5rem; }

.btn-wa-hero {
  display: inline-flex; align-items: center; gap: 1rem;
  background: linear-gradient(135deg, #25d366, #128c3a);
  color: var(--blanco);
  padding: 1.2rem 2.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.25);
}
.btn-wa-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 50px rgba(37, 211, 102, 0.4);
}
.btn-wa-hero i { font-size: 1.8rem; flex-shrink: 0; }
.btn-wa-hero > span { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.btn-wa-hero small { font-size: 0.72rem; font-weight: 400; opacity: 0.75; }
.btn-wa-shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: waShine 3s ease-in-out infinite;
}
@keyframes waShine {
  0%, 70%, 100% { transform: translateX(-100%); }
  40%            { transform: translateX(100%); }
}

.cta-checks {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  justify-content: center;
}
.cta-checks li {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.cta-checks i { color: var(--verde-light); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--negro-s); }

.footer-main { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 4rem;
}

.foot-logo {
  display: flex; align-items: center; gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.foot-brand-main {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--blanco); font-weight: 600;
}
.foot-brand-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--verde-light);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.foot-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 1.5rem; }

.foot-social { display: flex; gap: 0.6rem; }
.foot-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.foot-social a:hover { background: rgba(255,255,255,0.12); color: var(--blanco); transform: translateY(-2px); }
.foot-social .foot-wa:hover { background: #25d366; color: var(--blanco); }

.foot-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.foot-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.foot-col li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
}
.foot-col li i { color: var(--verde-light); flex-shrink: 0; margin-top: 2px; }
.foot-col a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.foot-col a:hover { color: var(--verde-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  animation: lbFadeIn 0.3s var(--ease-out);
}
.lightbox.open { display: flex; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  overflow: hidden;
}
#lbImg {
  max-width: 90vw;
  max-height: 85vh;
  width: auto; height: auto;
  border-radius: var(--radius);
  display: block;
  transition: opacity 0.3s;
}
#lbVideo {
  max-width: 90vw;
  max-height: 85vh;
  width: auto; height: auto;
  border-radius: var(--radius);
  display: none;
  background: #000;
}
.lb-loader {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 2rem;
  display: none;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--blanco);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  cursor: none;
}
.lb-close { top: 2rem; right: 2rem; width: 44px; height: 44px; font-size: 1rem; }
.lb-prev, .lb-next { top: 50%; font-size: 1.1rem; width: 48px; height: 48px; }
.lb-prev { left: 2rem; transform: translateY(-50%); }
.lb-next { right: 2rem; transform: translateY(-50%); }
.lb-prev:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.08); }
.lb-next:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.08); }
.lb-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.08); }

/* ─── FLOATING BUTTONS ───────────────────────────────────── */
.float-group {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 500;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem;
}

.float-wa {
  display: flex; align-items: center; gap: 0.6rem;
  background: #25d366;
  color: var(--blanco);
  padding: 0.7rem 1.2rem 0.7rem 0.85rem;
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  max-width: 220px;
  overflow: hidden;
}
.float-wa i { font-size: 1.5rem; flex-shrink: 0; }
.float-wa-label { white-space: nowrap; overflow: hidden; max-width: 0; opacity: 0; transition: max-width 0.4s var(--ease-out), opacity 0.4s; }
.float-wa:hover .float-wa-label { max-width: 200px; opacity: 1; }
.float-wa:hover { transform: scale(1.04); box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45); }

.float-top {
  width: 44px; height: 44px;
  background: var(--negro-c);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  display: none;
  align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: none;
}
.float-top.show { display: flex; }
.float-top:hover { background: var(--verde); color: var(--blanco); transform: translateY(-2px); }

/* ─── GSAP / JS ANIMATION HELPERS ───────────────────────── */
.gsap-from { opacity: 0; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-line { display: none; }
  .calc-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .foot-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .d-none-sm { display: none; }

  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { padding: 0 1.25rem; padding-top: 80px; }
  .hero-stats { flex-direction: column; gap: 1rem; padding: 1.25rem; }
  .hstat-sep { width: 60px; height: 1px; }

  .benefits-grid { grid-template-columns: 1fr; }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gitem-wide { grid-column: span 2; }
  .gitem-tall { grid-row: span 1; }

  .colors-row { gap: 1rem; }
  .cswatch-inner { width: 64px; height: 64px; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .tgrid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-brand { grid-column: auto; }

  .cta-sec h2 { font-size: 2.2rem; }
  .btn-wa-hero { font-size: 1rem; padding: 1rem 1.75rem; }

  .lb-prev { left: 0.75rem; }
  .lb-next { right: 0.75rem; }
  .lb-close { top: 1rem; right: 1rem; }

  .float-group { bottom: 1.5rem; right: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero-title { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .gal-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gitem-wide { grid-column: span 1; }

  .steps-grid { grid-template-columns: 1fr; }

  .cta-sec h2 { font-size: 1.9rem; }
  .btn-wa-hero { width: 100%; }

  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--negro); }
::-webkit-scrollbar-thumb { background: var(--verde-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--verde-mid); }

/* ─── SELECTION ──────────────────────────────────────────── */
::selection { background: rgba(45,90,61,0.35); color: inherit; }
