*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --night:   #0b0e14;
  --navy:    #121828;
  --navy-60: #1e2b3f;
  --navy-30: #2e4060;
  --slate:   #4a6080;
  --mist:    #8fa4bc;
  --silver:  #c8d4e0;
  --frost:   #eef2f7;
  --paper:   #f7f9fc;
  --champ:   #c9a96e;
  --champ-dark: #7D663A;
  --champ-l: #dfc088;
  --champ-p: #f0e6cf;
  --serif: 'Syne', system-ui, sans-serif;           /* títulos */
  --sans:  'Space Grotesk', system-ui, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

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

/* ── CURSOR (solo desktop) ── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px;
  background: var(--champ); border-radius: 50%;
  pointer-events: none;
  transition: transform 0.3s, background 0.3s, border 0.3s;
  transform: translate(-50%, -50%) scale(1);
}
#cursor.grow {
  transform: translate(-50%, -50%) scale(4.5);
  background: transparent;
  border: 1px solid var(--champ);
}
@media (max-width: 768px) {
  #cursor { display: none; }
  body { cursor: auto; }
}

/* ── NAV INICIAL ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3.5rem;
  transition: background 0.4s, border-bottom 0.4s, backdrop-filter 0.4s;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--frost); 
  text-decoration: none;
  transition: color 0.4s;
}
.nav-logo span { color: var(--champ); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--champ); }

.nav-cta {
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--night); background: var(--champ);
  padding: 0.65rem 1.4rem; text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--champ-l); color: var(--night); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--frost);
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

nav.scrolled {
  background: rgba(247,249,252,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--silver);
}
nav.scrolled .nav-logo { color: var(--navy); }
nav.scrolled .nav-links a { color: var(--slate); }
nav.scrolled .nav-burger span { background: var(--navy); }
nav.scrolled .nav-cta { background: var(--navy); color: var(--paper); }
nav.scrolled .nav-cta:hover { background: var(--champ); color: var(--night); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--night); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: rgba(255,255,255,0.7); text-decoration: none;
  letter-spacing: 0.05em; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--champ); }
.mobile-menu .mm-cta {
  background: var(--champ); color: var(--night);
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 1rem 2.5rem; text-decoration: none;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  nav { padding: 1.2rem 1.5rem; }
}

/* ── HERO CON SLIDER ── */
#hero {
  min-height: 100vh; background: var(--night);
  display: grid; grid-template-columns: repeat(12, 1fr);
  align-items: center; padding: 0 3.5rem;
  position: relative; overflow: hidden;
}

/* SLIDER BG */
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slider .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero-slider .slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(11,14,20,0.92) 0%, rgba(11,14,20,0.6) 100%);
}

.hero-gl {
  position: absolute; top: 0; bottom: 0; z-index: 1;
  width: 1px; background: rgba(255,255,255,0.04);
}
.hero-gl:nth-child(1) { left: 16.6%; }
.hero-gl:nth-child(2) { left: 41.6%; }
.hero-gl:nth-child(3) { left: 66.6%; }
.hero-gl:nth-child(4) { right: 0; }

.hero-tag {
  grid-column: 2 / 12; grid-row: 1;
  padding-bottom: 2.5rem; padding-top: 7rem;
  display: flex; align-items: center; gap: 1.5rem;
  position: relative; z-index: 2;
}
.hero-tag-line { width: 2.5rem; height: 1px; background: var(--champ); flex-shrink: 0; }
.hero-tag span {
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--champ);
}

.hero-title {
  grid-column: 1 / 13; grid-row: 2;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7.5vw, 8rem);
  font-weight: 300; line-height: 0.94; letter-spacing: -0.01em;
  color: var(--frost); position: relative; z-index: 2;
  padding-left: 3.5rem;
}
.hero-title em { font-style: italic; color: var(--champ); }
.hero-title .push { padding-left: 4vw; display: block; }
.hero-title .pushmore { padding-left: 8vw; display: block; }

.hero-bottom {
  grid-column: 1 / 13; grid-row: 3;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 3.5rem 3.5rem 5rem;
  position: relative; z-index: 2;
}
.hero-stats { display: flex; gap: 3rem; }
.hero-stat-num {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  color: rgba(255,255,255,0.3); line-height: 1;
  border-left: 2px solid var(--champ); padding-left: 1rem;
}
.hero-stat-num.lit { color: var(--champ); }
.hero-stat-label {
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--silver); margin-top: 0.3rem; padding-left: 1rem;
}
.hero-right-block { max-width: 340px; text-align: right; }
.hero-right-block p {
  font-size: 0.9rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.85); margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: flex-end; flex-wrap: wrap; }

.btn-champ {
  display: inline-block; font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--night); background: var(--champ);
  padding: 0.95rem 1.8rem; text-decoration: none;
  transition: background 0.3s, letter-spacing 0.4s;
}
.btn-champ:hover { background: var(--champ-l); letter-spacing: 0.32em; }
.btn-ghost-light {
  display: inline-block; font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--frost); border-bottom: 1px solid rgba(255,255,255,0.4);
  text-decoration: none; padding-bottom: 0.2rem;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost-light:hover { color: var(--champ); border-color: var(--champ); }

.hero-scroll-ind {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem; z-index: 2;
}
.hero-scroll-ind span {
  font-size: 0.55rem; font-weight: 300; letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.scroll-bar {
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, var(--champ), transparent);
  animation: sDrop 2s ease-in-out infinite;
}
@keyframes sDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}
.hero-num-bg {
  position: absolute; bottom: -4rem; right: 1rem; z-index: 1;
  font-family: var(--serif); font-size: 18rem; font-weight: 300;
  color: rgba(255,255,255,0.03); line-height: 1;
  pointer-events: none; user-select: none;
}

@media (max-width: 900px) {
  #hero { padding: 0 1.5rem; grid-template-columns: 1fr; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(11,14,20,0.8), rgba(11,14,20,0.95)); }
  .hero-tag { grid-column: 1; padding-left: 0; padding-top: 6rem; }
  .hero-title { grid-column: 1; padding-left: 0; }
  .hero-title .push { padding-left: 2rem; }
  .hero-title .pushmore { padding-left: 4rem; }
  .hero-bottom { grid-column: 1; padding: 2.5rem 0 5rem; flex-direction: column; align-items: flex-start; gap: 2rem; }
  .hero-right-block { text-align: left; max-width: 100%; }
  .hero-btns { justify-content: flex-start; }
  .hero-stats { gap: 1.5rem; }
}

/* ── SERVICIOS ── */
#servicios { padding: 6rem 3.5rem 8rem; }
.sec-header {
  display: flex; align-items: baseline; gap: 2.5rem;
  margin-bottom: 5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--silver);
}
.sec-num { font-family: var(--serif); font-size: 4.5rem; font-weight: 300; color: var(--silver); line-height: 1; flex-shrink: 0; }
.sec-title { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.1; color: var(--navy); }
.sec-title em { font-style: italic; color: var(--champ); }

.servs { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--silver); }
.serv {
  padding: 3rem 2.5rem; border-right: 1px solid var(--silver);
  position: relative; overflow: hidden; transition: background 0.5s;
}
.serv:nth-child(3n) { border-right: none; }
.serv-accent { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--champ); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.serv:hover .serv-accent { transform: scaleX(1); }
.serv:hover { background: var(--frost); }
.serv-index { font-size: 0.6rem; font-weight: 300; letter-spacing: 0.2em; color: var(--champ-dark); margin-bottom: 2rem; }
.serv-glyph { width: 2.5rem; height: 1px; background: var(--silver); margin-bottom: 2rem; transition: width 0.4s, background 0.4s; }
.serv:hover .serv-glyph { width: 4rem; background: var(--champ); }
.serv-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; line-height: 1.2; margin-bottom: 1.2rem; color: var(--navy); }
.serv-name em { font-style: italic; }
.serv-body { font-size: 0.84rem; font-weight: 300; line-height: 1.85; color: var(--slate); margin-bottom: 2rem; }
.serv-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pill { font-size: 0.56rem; font-weight: 300; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid var(--silver); color: var(--mist); padding: 0.26rem 0.7rem; transition: all 0.3s; }
.serv:hover .pill { border-color: var(--champ-p); color: var(--champ-dark); }

/* segunda fila servicios (bots + agentes) */
.servs-row2 { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--silver); border-top: none; }
.servs-row2 .serv { border-right: 1px solid var(--silver); }
.servs-row2 .serv:last-child { border-right: none; }
.serv.ai-serv { background: var(--navy); }
.serv.ai-serv .serv-name { color: var(--frost); }
.serv.ai-serv .serv-body { color: var(--mist); }
.serv.ai-serv .serv-index { color: var(--champ-l); }
.serv.ai-serv .serv-glyph { background: rgba(255,255,255,0.15); }
.serv.ai-serv:hover .serv-glyph { background: var(--champ-l); }
.serv.ai-serv .pill { border-color: rgba(255,255,255,0.1); color: var(--slate); }
.serv.ai-serv:hover .pill { border-color: var(--champ); color: var(--champ-l); }
.serv.ai-serv .serv-accent { background: var(--champ-l); }
.serv.ai-serv:hover { background: var(--navy-60); }
.ai-badge {
  display: inline-block; font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--champ); color: var(--night);
  padding: 0.25rem 0.7rem; margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  #servicios { padding: 4rem 1.5rem 5rem; }
  .servs { grid-template-columns: 1fr; }
  .serv { border-right: none; border-bottom: 1px solid var(--silver); }
  .servs-row2 { grid-template-columns: 1fr; }
  .servs-row2 .serv { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .sec-header { gap: 1.5rem; margin-bottom: 3rem; }
}

/* ── BOT / AGENTE DEMOS ── */
#ai-demos {
  padding: 8rem 3.5rem;
  background: var(--frost);
  border-top: 1px solid var(--silver);
  border-bottom: 1px solid var(--silver);
}
.ai-demos-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 5rem;
  align-items: start;
}

/* chat bot demo */
.bot-demo {
  background: white; border: 1px solid var(--silver);
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(11,14,20,0.07);
}
.bot-header {
  background: var(--navy); padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.bot-avatar {
  width: 2.2rem; height: 2.2rem; background: var(--champ);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.bot-name { font-size: 0.8rem; font-weight: 400; color: white; letter-spacing: 0.05em; }
.bot-status { font-size: 0.58rem; font-weight: 300; color: var(--mist); letter-spacing: 0.1em; }
.bot-status::before { content: '●'; color: #4ade80; margin-right: 0.35rem; font-size: 0.5rem; }
.bot-messages {
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
  min-height: 280px;
}
.msg { max-width: 85%; }
.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; }
.msg-bubble {
  padding: 0.7rem 1rem; font-size: 0.78rem; font-weight: 300; line-height: 1.6;
}
.msg.bot .msg-bubble { background: var(--frost); color: var(--navy); border-left: 2px solid var(--champ); }
.msg.user .msg-bubble { background: var(--navy); color: rgba(255,255,255,0.85); }
.msg-time { font-size: 0.55rem; font-weight: 300; color: var(--mist); margin-top: 0.3rem; letter-spacing: 0.05em; }
.msg.user .msg-time { text-align: right; }
.typing-indicator { display: flex; gap: 4px; align-items: center; padding: 0.7rem 1rem; background: var(--frost); width: fit-content; border-left: 2px solid var(--champ); }
.typing-dot { width: 6px; height: 6px; background: var(--champ); border-radius: 50%; animation: typingBounce 1.2s infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }

.bot-input-row {
  border-top: 1px solid var(--silver); padding: 0.9rem 1.2rem;
  display: flex; gap: 0.7rem; align-items: center;
}
.bot-input {
  flex: 1; background: var(--frost); border: 1px solid var(--silver);
  padding: 0.6rem 0.9rem; font-family: var(--sans);
  font-size: 0.75rem; font-weight: 300; color: var(--navy);
  outline: none; transition: border-color 0.2s;
}
.bot-input:focus { border-color: var(--champ); }
.bot-send {
  background: var(--champ); border: none; color: var(--night);
  padding: 0.6rem 1rem; font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s; font-family: var(--sans);
}
.bot-send:hover { background: var(--champ-l); }
.bot-caption { padding: 0.6rem 1.5rem 1rem; font-size: 0.62rem; font-weight: 300; color: var(--mist); letter-spacing: 0.08em; text-align: center; border-top: 1px solid var(--silver); }

/* agente demo */
.agent-demo {
  background: var(--navy); border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(11,14,20,0.15);
}
.agent-header {
  padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.agent-title-row { display: flex; align-items: center; gap: 0.8rem; }
.agent-icon {
  width: 2rem; height: 2rem; background: rgba(201,169,110,0.15);
  border: 1px solid var(--champ); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.agent-hname { font-size: 0.78rem; font-weight: 400; color: var(--frost); }
.agent-hsub { font-size: 0.55rem; font-weight: 300; color: var(--slate); }
.agent-status-badge {
  font-size: 0.52rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(74,222,128,0.15); color: #4ade80;
  border: 1px solid rgba(74,222,128,0.3); padding: 0.25rem 0.6rem;
}
.agent-log {
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; min-height: 260px;
}
.agent-step {
  display: flex; gap: 1rem; align-items: flex-start;
  animation: fadeSlide 0.4s ease forwards; opacity: 0;
}
.agent-step:nth-child(1) { animation-delay: 0.1s; }
.agent-step:nth-child(2) { animation-delay: 0.6s; }
.agent-step:nth-child(3) { animation-delay: 1.1s; }
.agent-step:nth-child(4) { animation-delay: 1.6s; }
.agent-step:nth-child(5) { animation-delay: 2.1s; }
@keyframes fadeSlide { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }
.a-step-icon {
  width: 1.6rem; height: 1.6rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.a-step-icon.done { color: #4ade80; }
.a-step-icon.running { color: var(--champ-l); animation: spin 1s linear infinite; }
.a-step-icon.pending { color: rgba(255,255,255,0.15); }
@keyframes spin { to { transform: rotate(360deg); } }
.a-step-title { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.8); margin-bottom: 0.2rem; }
.a-step-detail { font-size: 0.68rem; font-weight: 300; color: var(--slate); }
.a-step-detail code { font-family: monospace; font-size: 0.65rem; color: var(--champ-l); background: rgba(201,169,110,0.1); padding: 0.1rem 0.3rem; }
.agent-result {
  margin: 0 1.5rem 1.5rem; padding: 1rem;
  background: rgba(201,169,110,0.07); border: 1px solid rgba(201,169,110,0.2);
}
.ar-label { font-size: 0.55rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champ); margin-bottom: 0.5rem; }
.ar-val { font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.6; }
.agent-caption { padding: 0.6rem 1.5rem 1rem; font-size: 0.62rem; font-weight: 300; color: var(--slate); text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }

@media (max-width: 900px) {
  #ai-demos { padding: 4rem 1.5rem; }
  .ai-demos-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── TIENDA ── */
#tienda {
  padding: 8rem 3.5rem;
  display: grid; grid-template-columns: 5fr 7fr; gap: 6rem;
  align-items: center;
}
.t-text .label { font-size: 0.6rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: var(--champ-dark); margin-bottom: 1.8rem; }
.t-text h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 300; line-height: 1.1; margin-bottom: 1.6rem; color: var(--navy); }
.t-text h2 em { font-style: italic; }
.t-text p { font-size: 0.86rem; font-weight: 300; line-height: 1.85; color: var(--slate); margin-bottom: 2rem; max-width: 40ch; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.feat-list li { font-size: 0.83rem; font-weight: 300; color: var(--slate); display: flex; gap: 1rem; align-items: flex-start; }
.feat-list li::before { content: '—'; color: var(--champ); flex-shrink: 0; }

.shop-mock {
  background: var(--navy); position: relative;
  box-shadow: 0 8px 60px rgba(11,14,20,0.18);
}
.sm-topbar {
  background: rgba(255,255,255,0.04); padding: 0.6rem 1.2rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.sm-dot { width: 8px; height: 8px; border-radius: 50%; }
.sm-dot:nth-child(1) { background: #ff5f57; }
.sm-dot:nth-child(2) { background: #febc2e; }
.sm-dot:nth-child(3) { background: #28c840; }
.sm-url {
  flex: 1; margin-left: 0.8rem; background: rgba(255,255,255,0.06);
  padding: 0.3rem 0.8rem; font-size: 0.62rem; font-weight: 300;
  color: rgba(255,255,255,0.3); letter-spacing: 0.05em; text-align: center;
}

.sm-hero-banner {
  background: linear-gradient(135deg, #1a2540 0%, #2e3f6e 50%, #1a3050 100%);
  padding: 1.8rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.sm-banner-cat { font-size: 0.52rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: var(--champ); margin-bottom: 0.3rem; }
.sm-banner-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: white; line-height: 1.2; }
.sm-banner-sub { font-size: 0.65rem; font-weight: 300; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }
.sm-banner-btn {
  background: var(--champ); color: var(--night);
  font-size: 0.55rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.55rem 1.1rem; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s; border: none; font-family: var(--sans);
}
.sm-banner-btn:hover { background: var(--champ-l); }

.sm-nav-bar {
  padding: 0.8rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.sm-logo { font-family: var(--serif); font-size: 1rem; color: rgba(255,255,255,0.8); letter-spacing: 0.1em; }
.sm-nav-links { display: flex; gap: 1.2rem; font-size: 0.58rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.sm-cart-icon { font-size: 1rem; color: rgba(255,255,255,0.5); cursor: pointer; }

.sm-section-title {
  padding: 1rem 1.5rem 0.6rem; font-size: 0.58rem; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--champ);
}
.sm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; padding: 0 1.5rem 1.5rem; }
.sm-prod {
  background: rgba(255,255,255,0.03); cursor: pointer;
  transition: background 0.3s; position: relative;
}
.sm-prod:hover { background: rgba(255,255,255,0.07); }
.sm-prod-img {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.02); margin-bottom: 0; overflow: hidden;
}
.sm-prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.sm-prod:hover .sm-prod-img img { transform: scale(1.05); }
.sm-prod-info { padding: 0.5rem; }
.sm-prod-cat { font-size: 0.52rem; font-weight: 300; color: rgba(255,255,255,0.2); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.15rem; }
.sm-prod-name { font-size: 0.65rem; font-weight: 300; color: rgba(255,255,255,0.6); margin-bottom: 0.2rem; line-height: 1.3; }
.sm-prod-price { font-family: var(--serif); font-size: 0.9rem; color: var(--champ-l); }
.sm-prod-old { font-size: 0.58rem; font-weight: 300; color: rgba(255,255,255,0.2); text-decoration: line-through; margin-left: 0.3rem; }
.sm-badge-new {
  position: absolute; top: 0.4rem; right: 0.4rem;
  background: var(--champ); color: var(--night);
  font-size: 0.45rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.4rem;
}
.sm-footer { padding: 0.8rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.sm-footer-links { display: flex; gap: 1rem; font-size: 0.55rem; font-weight: 300; color: rgba(255,255,255,0.2); letter-spacing: 0.1em; }
.sm-footer-pay { display: flex; gap: 0.5rem; align-items: center; }
.sm-pay-icon { background: rgba(255,255,255,0.06); padding: 0.2rem 0.5rem; font-size: 0.52rem; font-weight: 300; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }
.mock-tag { position: absolute; top: -0.8rem; right: -0.8rem; background: var(--champ); color: var(--night); font-size: 0.52rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4rem 0.9rem; }

@media (max-width: 900px) {
  #tienda { padding: 4rem 1.5rem; grid-template-columns: 1fr; gap: 3rem; }
  .sm-grid { grid-template-columns: repeat(2, 1fr); }
  .sm-nav-links { display: none; }
}

/* ── TURNOS ── */
#turnos {
  padding: 8rem 3.5rem; display: grid;
  grid-template-columns: 7fr 5fr; gap: 6rem; align-items: center;
  background: var(--frost); border-top: 1px solid var(--silver); border-bottom: 1px solid var(--silver);
}
.agenda-mock { background: white; border: 1px solid var(--silver); padding: 1.8rem; box-shadow: 0 2px 40px rgba(11,14,20,0.06); }
.ag-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.ag-month { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: var(--navy); }
.ag-nav { display: flex; gap: 0.4rem; }
.ag-btn { width: 2rem; height: 2rem; border: 1px solid var(--silver); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.8rem; color: var(--slate); transition: all 0.2s; background: none; }
.ag-btn:hover { background: var(--champ); border-color: var(--champ); color: white; }
.ag-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; margin-bottom: 1.5rem; }
.ag-day-lbl { font-size: 0.56rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); text-align: center; padding: 0.4rem 0; }
.ag-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 300; color: var(--mist); cursor: pointer; transition: all 0.2s; }
.ag-day:hover { background: var(--champ-p); color: var(--navy); }
.ag-day.avail { color: var(--navy); font-weight: 400; }
.ag-day.sel { background: var(--navy); color: white; }
.ag-day.hi { background: var(--champ); color: white; font-weight: 500; }
.ag-day.emp { pointer-events: none; }
.slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.4rem; margin-bottom: 1.2rem; }
.sl { padding: 0.45rem; border: 1px solid var(--silver); text-align: center; font-size: 0.66rem; font-weight: 300; color: var(--slate); cursor: pointer; transition: all 0.2s; }
.sl:hover { border-color: var(--champ); color: var(--champ); }
.sl.off { background: var(--frost); color: var(--silver); cursor: not-allowed; text-decoration: line-through; }
.sl.on { background: var(--champ); border-color: var(--champ); color: white; }
.ag-confirm { width: 100%; background: var(--navy); color: white; border: none; padding: 0.9rem; font-family: var(--sans); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.ag-confirm:hover { background: var(--champ); }
.turnos-text .label { font-size: 0.6rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: var(--champ-dark); margin-bottom: 1.8rem; }
.turnos-text h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 300; line-height: 1.1; margin-bottom: 1.6rem; color: var(--navy); }
.turnos-text h2 em { font-style: italic; }
.turnos-text p { font-size: 0.86rem; font-weight: 300; line-height: 1.85; color: var(--slate); margin-bottom: 1.8rem; }
.prof-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.chip { font-size: 0.58rem; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--silver); color: var(--mist); padding: 0.38rem 0.85rem; transition: all 0.3s; cursor: default; }
.chip:hover { border-color: var(--champ); color: var(--champ); background: var(--champ-p); }

@media (max-width: 900px) {
  #turnos { padding: 4rem 1.5rem; grid-template-columns: 1fr; gap: 3rem; }
}

/* ── CREADOR DE WEBS ── */
#creador-webs {
  padding: 8rem 3.5rem;
  display: grid; grid-template-columns: 5fr 7fr; gap: 6rem;
  align-items: center;
}
@media (max-width: 900px) {
  #creador-webs { padding: 4rem 1.5rem; grid-template-columns: 1fr; gap: 3rem; }
}

/* ── PRECIOS ── */
#precios { padding: 8rem 3.5rem; background: var(--night); position: relative; overflow: hidden; }
#precios .sec-num { color: rgba(255,255,255,0.06); }
#precios .sec-title { color: var(--frost); }
#precios .sec-title em { color: var(--champ-l); }
#precios .sec-header { border-color: rgba(255,255,255,0.07); margin-bottom: 3rem; }

.pr-tabs {
  display: flex; gap: 0; margin-bottom: 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07); width: fit-content;
}
.pr-tab {
  font-size: 0.6rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); padding: 0.8rem 1.6rem; cursor: pointer;
  border-right: 1px solid rgba(255,255,255,0.07); transition: all 0.3s;
  background: none; font-family: var(--sans); border-top: none; border-bottom: none; border-left: none;
}
.pr-tab:last-child { border-right: none; }
.pr-tab.active { background: var(--champ); color: var(--night); font-weight: 500; }
.pr-tab:hover:not(.active) { color: var(--champ); }

.pricing-wrap {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
  margin-top: 0; position: relative; z-index: 1;
  border-top: none;
}
.pr-col {
  padding: 3rem 2.5rem; border-right: 1px solid rgba(255,255,255,0.07);
  position: relative; transition: background 0.4s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.pr-col:last-child { border-right: none; }
.pr-col.ft { background: rgba(201,169,110,0.06); }
.pr-col.selected {
  background: rgba(201,169,110,0.12) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-top: 2px solid var(--champ);
}
.pr-col::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--champ);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.pr-col:hover::before { transform: scaleX(1); }
.pr-col.selected::before { transform: scaleX(1); }
.pr-sel-check {
  position: absolute; top: 1rem; right: 1rem;
  width: 1.5rem; height: 1.5rem; background: var(--champ);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--night);
  opacity: 0; transition: opacity 0.3s;
}
.pr-col.selected .pr-sel-check { opacity: 1; }

.pr-badge { display: inline-block; font-size: 0.5rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; background: var(--champ); color: var(--night); padding: 0.25rem 0.7rem; margin-bottom: 1.8rem; }
.pr-tier { font-size: 0.62rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: var(--champ); margin-bottom: 1.3rem; }
.pr-amount { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--frost); line-height: 1; margin-bottom: 0.4rem; }
.pr-amount sup { font-size: 1.3rem; vertical-align: super; }
.pr-period { font-size: 0.68rem; font-weight: 300; color: var(--slate); margin-bottom: 1.8rem; }
.pr-desc { font-size: 0.8rem; font-weight: 300; line-height: 1.75; color: var(--mist); margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pr-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2.5rem; }
.pr-li { font-size: 0.78rem; font-weight: 300; color: var(--mist); display: flex; gap: 0.8rem; align-items: flex-start; }
.pr-li::before { content: '✓'; color: var(--champ); flex-shrink: 0; font-size: 0.68rem; }
.pr-li.no::before { content: '×'; color: rgba(255,255,255,0.1); }
.pr-btn { display: block; text-align: center; font-size: 0.6rem; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; padding: 0.95rem; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; font-family: var(--sans); width: 100%; }
.pr-btn.ghost { border: 1px solid rgba(255,255,255,0.15); color: var(--frost); background: none; }
.pr-btn.ghost:hover { border-color: var(--champ); color: var(--champ); }
.pr-btn.fill { background: var(--champ); color: var(--night); border: none; }
.pr-btn.fill:hover { background: var(--champ-l); }

.pr-wa-cta {
  margin-top: 3rem; padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.pr-wa-label { font-size: 0.65rem; font-weight: 300; color: var(--slate); margin-bottom: 1rem; letter-spacing: 0.05em; }
.pr-wa-btn {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: #25D366; color: white;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.9rem 2rem; text-decoration: none; transition: background 0.3s;
}
.pr-wa-btn:hover { background: #1db954; }

@media (max-width: 900px) {
  #precios { padding: 5rem 1.5rem; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .pr-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .pr-col.selected { transform: none; }
  .pr-tabs { overflow-x: auto; width: 100%; }
}

/* ── CONTACTO / WA FORM ── */
#contacto {
  padding: 8rem 3.5rem;
  display: grid; grid-template-columns: repeat(12, 1fr);
  position: relative; overflow: hidden;
}
#contacto::before {
  content: 'LUMORA'; position: absolute; bottom: -4rem; left: 0; right: 0;
  font-family: var(--serif); font-size: 22vw; font-weight: 300;
  color: rgba(11,14,20,0.04); text-align: center; line-height: 1;
  pointer-events: none; letter-spacing: 0.08em;
}
.ct-main { grid-column: 2 / 9; position: relative; z-index: 2; }
.ct-label { font-size: 0.6rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: var(--champ-dark); margin-bottom: 1.8rem; }
.ct-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 4.5rem); font-weight: 300; line-height: 1.05; color: var(--navy); margin-bottom: 0.8rem; }
.ct-title em { font-style: italic; color: var(--champ); }
.ct-subtitle { font-size: 0.85rem; font-weight: 300; color: var(--slate); line-height: 1.7; margin-bottom: 3rem; max-width: 45ch; }

.ct-form { display: flex; flex-direction: column; gap: 1rem; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ct-form input, .ct-form select, .ct-form textarea {
  background: var(--frost); border: 1px solid var(--silver);
  color: var(--navy); font-family: var(--sans);
  font-size: 0.85rem; font-weight: 300;
  padding: 1rem 1.2rem; outline: none;
  transition: border-color 0.3s; width: 100%; -webkit-appearance: none; appearance: none;
}
.ct-form input::placeholder, .ct-form textarea::placeholder { color: var(--mist); }
.ct-form input:focus, .ct-form select:focus, .ct-form textarea:focus { border-color: var(--champ); }
.ct-form select { color: var(--slate); }
.ct-form select option { background: white; color: var(--navy); }
.ct-form textarea { resize: none; height: 100px; }

.ct-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  background: #25D366; color: white; border: none;
  padding: 1.2rem 2rem; font-family: var(--sans);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
  text-decoration: none;
}
.ct-wa-btn:hover { background: #1db954; }
.wa-icon { font-size: 1.2rem; }

.ct-aside {
  grid-column: 10 / 13; position: relative; z-index: 2;
  padding-left: 2.5rem; border-left: 1px solid var(--silver);
  display: flex; flex-direction: column; justify-content: center; gap: 2.5rem;
}
.ci-label { font-size: 0.58rem; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); margin-bottom: 0.3rem; }
.ci-val { font-family: var(--serif); font-size: 1rem; font-weight: 300; color: var(--navy); }

@media (max-width: 900px) {
  #contacto { padding: 5rem 1.5rem; grid-template-columns: 1fr; gap: 3rem; }
  .ct-main { grid-column: 1; }
  .ct-aside { grid-column: 1; border-left: none; padding-left: 0; border-top: 1px solid var(--silver); padding-top: 2.5rem; flex-direction: row; flex-wrap: wrap; gap: 2rem; }
  .ct-row { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
footer {
  background: var(--night); padding: 2.5rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.ft-logo { font-family: var(--serif); font-size: 1.2rem; color: rgba(255,255,255,0.7); letter-spacing: 0.3em; }
.ft-logo span { color: var(--champ); }
.ft-copy { font-size: 0.6rem; font-weight: 300; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.ft-links { display: flex; gap: 2rem; list-style: none; }
.ft-links a { font-size: 0.6rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.ft-links a:hover { color: var(--champ); }

@media (max-width: 900px) {
  footer { padding: 2rem 1.5rem; }
  .ft-copy { order: 3; width: 100%; }
}

/* ── WA FLOTANTE ── */
.wa-float {
  display: none;
}
@media (max-width: 900px) {
  .wa-float {
    display: flex; position: fixed; bottom: 2rem; right: 1.5rem; z-index: 999;
    width: 3.8rem; height: 3.8rem; background: #25D366; border-radius: 50%;
    align-items: center; justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .wa-float::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%; background: transparent;
    border: 3px solid rgba(37,211,102,0.7);
    animation: pulse-wa 2s infinite; pointer-events: none;
  }
  .wa-float:hover { 
    transform: scale(1.05); 
    box-shadow: 0 6px 28px rgba(37,211,102,0.6); 
  }
  .wa-float:hover::after { animation: none; opacity: 0; }
}
@keyframes pulse-wa {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.vis { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.35s; }
.d4 { transition-delay: 0.5s; }

/* ── BTN PRIMARY ── */
.btn-primary {
  display: inline-block; font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--night); background: var(--champ);
  padding: 1rem 2rem; text-decoration: none;
  transition: background 0.3s, letter-spacing 0.4s;
}
.btn-primary:hover { background: var(--champ-l); letter-spacing: 0.32em; }

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .sec-title { font-size: 2.2rem; }
  .sm-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-amount { font-size: 2.4rem; }
  .mobile-menu a { font-size: 1.6rem; }
  #tienda { gap: 4rem; }
}

/* ── MODALS LEGALES ── */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 14, 20, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease; padding: 1.5rem;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-content {
  background: var(--paper); color: var(--navy);
  width: 100%; max-width: 700px; max-height: 85vh; overflow-y: auto;
  padding: 3rem 3.5rem; position: relative;
  transform: translateY(30px); transition: transform 0.4s ease; cursor: auto; 
}
.modal-overlay.open .modal-content { transform: none; }
.modal-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; font-size: 2rem; font-weight: 300; color: var(--mist); cursor: pointer; transition: color 0.3s; }
.modal-close:hover { color: var(--champ); }
.modal-content h2 { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--navy); margin-bottom: 2rem; }
.modal-content h3 { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--champ); margin: 2rem 0 0.8rem; }
.modal-content p { font-size: 0.85rem; font-weight: 300; line-height: 1.8; color: var(--slate); margin-bottom: 1rem; }
@media (max-width: 900px) { .modal-content { padding: 2rem 1.5rem; } .modal-close { top: 1rem; right: 1rem; } }