*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}

:root{
  --accent:#ff5a00;
  --bg:#ffffff;
  --surface:#ffffff;
  --text:#121212;
  --muted:#696969;
  --line:rgba(18,18,18,.08);
  --font:'Inter',sans-serif;
  --pad:clamp(24px,5vw,80px);
}

body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}

/* ── HERO ── */
.hero{min-height:100dvh;padding-top:52px;display:grid;grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);position:relative;overflow:hidden;background:#fff;}

.hero-text{display:flex;flex-direction:column;justify-content:center;padding:clamp(42px,8vh,96px) var(--pad) clamp(40px,7vh,82px);position:relative;z-index:2;}

.brand-eyebrow{display:flex;align-items:center;gap:18px;font-size:.88rem;letter-spacing:.18em;text-transform:uppercase;color:#171717;font-weight:600;margin-bottom:clamp(18px,2vh,28px);}
.brand-eyebrow span{width:44px;height:2px;border-radius:999px;background:linear-gradient(90deg,var(--accent),#ff8b45);}

.hero-copy{max-width:36rem;margin-bottom:clamp(34px,5vh,56px);}
.hero-copy h2{font-size:clamp(2rem,3.7vw,3.4rem);line-height:1.02;letter-spacing:-.05em;font-weight:800;color:#121212;margin-bottom:14px;}

.hero-desc{font-size:clamp(1.06rem,1.35vw,1.28rem);color:#262626;line-height:1.45;max-width:28ch;font-weight:400;}
.hero-desc strong{color:var(--accent);font-weight:700;}

.cta-row{display:flex;align-items:center;gap:28px;flex-wrap:wrap;}

.hero-image{position:relative;display:flex;align-items:flex-end;justify-content:center;padding:clamp(30px,4vw,56px) clamp(18px,3vw,38px) 0 0;min-height:640px;z-index:1;background:#fff;}
.hero-visual{position:relative;width:min(100%,760px);height:100%;display:flex;align-items:flex-end;justify-content:center;}
.hero-visual img{width:auto;height:min(84vh,780px);max-width:none;object-fit:contain;object-position:center bottom;transform:translateY(-38px);}

/* ── CARRUSEL ── */
.carousel-section{padding:clamp(64px,10vh,120px) var(--pad);background:#ffffff;}

.section-label{font-size:.74rem;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:.74rem;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(18,18,18,0.2);
  background:#fff;color:rgba(18,18,18,0.8);
  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,.05);
}
.carousel-btn svg{width:18px;height:18px}
.carousel-btn:hover{border-color:var(--accent);color:#fff;background:var(--accent);transform:scale(1.05);box-shadow:0 6px 12px rgba(255,90,0,.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:transparent;border:none;
  border-radius:16px;overflow:hidden;
  display:flex;flex-direction:column;
  transition:transform .25s;cursor:pointer;
}
.c-card:hover{transform:translateY(-4px)}

.c-card__img{
  position:relative;aspect-ratio:3/4;
  background:transparent;
  display:flex;align-items:center;justify-content:center;
  padding:28px;overflow:hidden;
}
.c-card__img::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 60%,rgba(255,90,0,0.04) 0%,transparent 70%);
  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(255,90,0,0.04);
  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;
  border-top:none;
  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:700}
.c-card__name{font-size:.98rem;font-weight:600;color:#121212;letter-spacing:-.01em}
.c-card__desc{font-size:.82rem;color:var(--muted);line-height:1.55;font-weight:400;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(18,18,18,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);background:#fff;}

.catalog-inner{display:grid;grid-template-columns:1fr 1fr;gap:clamp(40px,6vw,96px);align-items:center;}

.catalog-text .section-label{margin-bottom:24px}
.catalog-text h2{font-size:clamp(2rem,4vw,3.8rem);line-height:.95;letter-spacing:-.04em;font-weight:800;margin-bottom:20px}
.catalog-text p{font-size:1rem;color:var(--muted);line-height:1.7;max-width:40ch;margin-bottom:36px}

.catalog-frame{aspect-ratio:3/4;border:1px solid var(--line);background:#f7f7f5;overflow:hidden;border-radius:18px;box-shadow:0 20px 40px rgba(0,0,0,.06)}

/* ── LIGHTBOX ── */
.lightbox{display:none;position:fixed;inset:0;z-index:999;background:rgba(0,0,0,0.92);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,.5)}
.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:980px){
  .hero{grid-template-columns:1fr}
  .hero-image{min-height:420px;padding:0 20px 24px}
  .hero-visual img{height:auto;width:min(100%,520px);transform:none}
  .catalog-inner{grid-template-columns:1fr}
  .c-card{flex:0 0 calc(50% - 8px)}
}

@media(max-width:640px){
  .hero-text{padding-top:30px}
  .hero-copy h2{font-size:clamp(1.8rem,8vw,2.5rem)}

  .c-card{flex:0 0 80%}
}