*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}

:root{
  --accent:#00e676;
  --bg:#000000;
  --surface:#000000;
  --text:#e9fff2;
  --muted:#9fbfaf;
  --line:rgba(14,26,18,.06);
  --font:'Inter',sans-serif;
  --display:'Playfair Display',serif;
  --pad:clamp(24px,5vw,80px)
}

body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}

/* ── HERO ── */
.hero{min-height:100dvh;display:grid;grid-template-columns:1fr 1fr;padding-top:72px;background:#000000;position:relative;overflow:hidden}
.hero-text{display:flex;flex-direction:column;justify-content:center;padding:clamp(48px,8vh,96px) var(--pad);color:var(--text)}
.brand-eyebrow{display:flex;align-items:center;gap:12px;font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;color:var(--muted);margin-bottom:clamp(20px,4vh,40px)}
.brand-eyebrow span{display:block;width:44px;height:2px;background:linear-gradient(90deg,var(--accent),#00b86b);border-radius:999px}
.hero-desc{font-size:clamp(1rem,1.4vw,1.1rem);font-weight:400;color:rgba(255,255,255,.85);max-width:44ch;line-height:1.7;margin-bottom:clamp(28px,5vh,56px)}
.cta-row{display:flex;align-items:center;gap:24px;flex-wrap:wrap}

.hero-image{background:transparent;border-left:1px solid rgba(255,255,255,.02);display:flex;align-items:center;justify-content:center;padding:clamp(32px,5vw,72px);min-height:600px}
.hero-visual{width:min(100%,680px);position:relative;display:flex;align-items:center;justify-content:center}
.hero-visual img{width:auto;height:min(86vh,900px);object-fit:contain;filter:drop-shadow(0 28px 60px rgba(0,0,0,.6))}

/* ── CARRUSEL ── */
.carousel-section{
  padding:clamp(64px,10vh,120px) var(--pad);
  border-top:1px solid var(--line);
}
.section-label-top{
  font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--muted);margin-bottom:clamp(40px,6vh,64px);
}
.carousel-block{margin-bottom:clamp(48px,7vh,80px)}
.carousel-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}
.carousel-title{font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;color:var(--muted)}
.carousel-nav{display:flex;gap:8px}
.carousel-btn{
  width:44px;height:44px;
  border:1px solid rgba(255,255,255,0.4);
  background:rgba(255,255,255,0.1);color:#fff;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:all .2s;flex-shrink:0;
  box-shadow:0 4px 6px rgba(0,0,0,.1);
}
.carousel-btn svg{width:18px;height:18px;}
.carousel-btn:hover{border-color:var(--accent);color:#000;background:var(--accent);transform:scale(1.05);box-shadow:0 6px 12px rgba(0,230,118,.3);}
.carousel-track-wrap{overflow:hidden;position:relative;width:100%}
.carousel-track{
  display:flex;flex-direction:row;flex-wrap:nowrap;
  gap:16px;
  transition:transform .4s cubic-bezier(.4,0,.2,1);
  will-change:transform;
}

/* Tarjeta */
.c-card{
  flex:0 0 calc(33.333% - 11px);
  background:#000000;
  border:none;
  border-radius:14px;overflow:hidden;
  display:flex;flex-direction:column;
  transition:transform .25s,box-shadow .25s;
  cursor:pointer;
}
.c-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,.5);
}
.c-card__img{
  position:relative;aspect-ratio:3/4;
  background:#000000;display:flex;align-items:center;
  justify-content:center;padding:28px;overflow:hidden;
}
.c-card__img::before{
  content:'';position:absolute;inset:0;
  pointer-events:none;
}
.c-card__img img{
  width:100%;height:100%;object-fit:contain;
  position:relative;z-index:1;
  transition:transform .4s ease;
}
.c-card:hover .c-card__img img{transform:scale(1.05)}
.c-card__overlay{
  position:absolute;inset:0;
  background:rgba(0,230,118,0.05);
  opacity:0;transition:opacity .25s;z-index:2;
  display:flex;align-items:center;justify-content:center;
}
.c-card__overlay svg{width:28px;height:28px;color:var(--accent)}
.c-card:hover .c-card__overlay{opacity:1}
.c-card__body{
  padding:18px 20px 20px;
  display:flex;flex-direction:column;gap:6px;flex:1;
}
.c-card__badge{font-size:.62rem;letter-spacing:.18em;text-transform:uppercase;color:var(--accent);font-weight:600}
.c-card__name{font-size:.98rem;font-weight:500;color:#fff;letter-spacing:-.01em}
.c-card__desc{font-size:.82rem;color:var(--muted);line-height:1.55;font-weight:300;flex:1}
.c-card__link{
  font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted);display:inline-flex;align-items:center;gap:7px;
  margin-top:10px;padding-top:12px;
  transition:color .2s,gap .2s;
}
.c-card__link:hover{color:var(--accent);gap:13px}

/* Dots */
.carousel-dots{display:flex;gap:6px;margin-top:20px;align-items:center}
.carousel-dot{width:5px;height:5px;border-radius:999px;background:rgba(255,255,255,0.15);transition:width .25s,background .25s;cursor:pointer}
.carousel-dot.active{width:20px;background:var(--accent)}

/* ── CATÁLOGO ── */
.catalog-section{padding:clamp(64px,10vh,120px) var(--pad);border-top:1px solid var(--line);background:var(--surface)}
.catalog-inner{display:grid;grid-template-columns:1fr 1fr;gap:clamp(40px,6vw,96px);align-items:center}
.catalog-text h2{font-family:var(--display);font-size:clamp(2rem,4vw,3.8rem);line-height:.95;letter-spacing:-.04em;font-weight:600;margin-bottom:20px;margin-top:20px}
.catalog-text p{font-size:.96rem;color:var(--muted);line-height:1.7;font-weight:300;max-width:40ch;margin-bottom:36px}
.catalog-frame{aspect-ratio:3/4;border:1px solid var(--line);display:flex;align-items:center;justify-content:center;background:var(--bg);color:var(--muted);font-size:.9rem;flex-direction:column;gap:12px}
.catalog-frame svg{width:36px;height:36px;opacity:.25}

/* ── LIGHTBOX ── */
.lightbox{
  display:none;position:fixed;inset:0;z-index:999;
  background:rgba(0,0,0,0.93);backdrop-filter:blur(14px);
  align-items:center;justify-content:center;cursor:zoom-out;
}
.lightbox.active{display:flex}
.lightbox img{max-width:88vw;max-height:86vh;object-fit:contain;border-radius:10px;box-shadow:0 32px 80px rgba(0,0,0,.8)}
.lightbox-close{position:absolute;top:20px;right:24px;font-size:1.8rem;color:rgba(255,255,255,0.4);cursor:pointer;line-height:1;transition:color .2s}
.lightbox-close:hover{color:#fff}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .hero{grid-template-columns:1fr}
  .hero-image{min-height:440px;border-left:none;border-top:1px solid var(--line)}
  .catalog-inner{grid-template-columns:1fr}
  .c-card{flex:0 0 calc(50% - 8px)}
}
@media(max-width:600px){
  .hero-image{min-height:320px}
  .c-card{flex:0 0 80%}
}