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

:root {
  --bg: #02030b;
  --bg-deep: #00020a;
  --white: #f2f3e9;
  --muted: rgba(242, 243, 233, .64);
  --faint: rgba(242, 243, 233, .34);
  --blue: #071dff;
  --blue-soft: #123bff;
  --cyan: #32ffe1;
  --cyan-deep: #0fc0bc;
  --line: rgba(255, 255, 255, .12);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.agency-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(19, 22, 44, .36), transparent 31%),
    linear-gradient(180deg, #050612 0%, #01020a 100%);
}

.agency-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -7;
  background:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .38;
  mask-image: radial-gradient(circle at center, #000 0 46%, transparent 82%);
}

.noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: .15;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.16) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.11) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.08) 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px, 13px 13px;
  animation: grainMove .55s steps(2) infinite;
}

.deep-vignette {
  position: absolute;
  inset: -2px;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0 36%, rgba(0,0,0,.10) 58%, rgba(0,0,0,.78) 100%),
    linear-gradient(90deg, rgba(0,0,0,.74), transparent 25%, transparent 75%, rgba(0,0,0,.74));
}

.bg-field {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: .82;
  mix-blend-mode: screen;
  will-change: transform;
}

.glow-left {
  width: 36vw;
  height: 19vw;
  left: 12%;
  top: 39%;
  background: radial-gradient(ellipse at center, rgba(22, 42, 255, .88) 0 18%, rgba(11, 22, 160, .60) 38%, transparent 70%);
  animation: pulseLeft 7s ease-in-out infinite alternate;
}

.glow-right {
  width: 37vw;
  height: 19vw;
  right: 12%;
  top: 39%;
  background: radial-gradient(ellipse at center, rgba(22, 42, 255, .82) 0 18%, rgba(11, 22, 160, .55) 38%, transparent 72%);
  animation: pulseRight 7.5s ease-in-out infinite alternate;
}

.glow-center {
  width: 25vw;
  height: 11vw;
  left: 50%;
  top: 55%;
  translate: -50% -50%;
  background: radial-gradient(ellipse at center, rgba(36, 255, 226, .74), transparent 72%);
  filter: blur(25px);
  opacity: .72;
  animation: centerBreath 5.5s ease-in-out infinite alternate;
}

.cyan-ring {
  position: absolute;
  left: 50%;
  top: 62%;
  width: clamp(190px, 24vw, 350px);
  height: clamp(92px, 11.4vw, 160px);
  translate: -50% -50%;
  border-radius: 0 0 999px 999px;
  border-bottom: clamp(18px, 2.6vw, 35px) solid rgba(42, 255, 226, .88);
  border-left: clamp(18px, 2.6vw, 35px) solid rgba(42, 255, 226, .72);
  border-right: clamp(18px, 2.6vw, 35px) solid rgba(42, 255, 226, .72);
  border-top: 0;
  filter:
    blur(.2px)
    drop-shadow(0 0 18px rgba(42, 255, 226, .96))
    drop-shadow(0 0 46px rgba(42, 255, 226, .62));
  opacity: .82;
  transform-origin: center;
  animation: ringFloat 4.6s ease-in-out infinite alternate;
}

.cyan-ring::before {
  content: "";
  position: absolute;
  inset: 26% 11% -18% 11%;
  border-radius: 0 0 999px 999px;
  border-bottom: 12px solid rgba(42,255,226,.55);
  filter: blur(8px);
}

.aura-line {
  position: absolute;
  width: 14vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  opacity: .24;
}

.line-one {
  left: 23%;
  top: 47%;
  rotate: -6deg;
  animation: lineMove 6s ease-in-out infinite alternate;
}

.line-two {
  right: 23%;
  top: 46%;
  rotate: 6deg;
  animation: lineMove 6.8s ease-in-out infinite alternate-reverse;
}

.star {
  position: absolute;
  color: rgba(255,255,255,.70);
  font-size: 12px;
  opacity: .64;
  animation: twinkle 2.4s ease-in-out infinite alternate;
}

.star-one {
  left: 49%;
  top: 31%;
}

.star-two {
  right: 38%;
  top: 50%;
  animation-delay: .4s;
}

/* TOPBAR */
.topbar {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 82px;
  margin: 0;
  padding: 0 clamp(26px, 3.2vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  animation: headerIn .72s ease both;
}

.top-left {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 38px);
}

.store-name {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(24px, 2.05vw, 38px);
  font-weight: 700;
  letter-spacing: -.095em;
  text-transform: none;
  color: var(--white);
  text-shadow: 0 0 24px rgba(255,255,255,.14);
  transition: transform .25s ease, opacity .25s ease;
}

.store-name:hover {
  transform: translateY(-2px);
}

.menu-trigger {
  cursor: pointer;
}

.brand-logo {
  position: relative;
  width: 82px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 28px;
  background: transparent;
  transition: transform .32s ease, filter .32s ease;
}

.brand-logo img {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 58px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(255,255,255,.24))
    drop-shadow(0 0 26px rgba(50,255,225,.10));
}

.logo-pulse {
  position: absolute;
  inset: 10px 8px;
  z-index: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(50,255,225,.18), transparent 64%);
  opacity: .75;
  transform: scale(.82);
  animation: logoPulse 2.2s ease-in-out infinite;
}

.brand-logo:hover {
  transform: translateY(-3px) scale(1.045);
  filter: drop-shadow(0 0 20px rgba(50,255,225,.18));
}

.brand-logo[aria-expanded="true"] {
  transform: translateY(-2px) scale(1.06);
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(.82);
    opacity: .35;
  }
  50% {
    transform: scale(1.18);
    opacity: .85;
  }
}

.top-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-pill {
  height: 36px;
  min-width: 126px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}


.top-pill i {
  font-size: 12px;
}

.top-pill:hover {
  transform: translateY(-2px);
}

.top-pill-ghost {
  color: rgba(242,243,233,.88);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
}

.top-pill-solid {
  color: #02030b;
  border: 1px solid var(--white);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(255,255,255,.07);
}


.floating-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 110px clamp(24px, 5vw, 86px) 58px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .36s ease;
}

.floating-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 13%, rgba(50,255,225,.13), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(0,24,255,.18), transparent 42%),
    rgba(1, 2, 10, .72);
  backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity .36s ease;
}

.floating-nav.is-open .menu-backdrop {
  opacity: 1;
}

.nav-orbit {
  position: relative;
  z-index: 2;
  width: min(1080px, 94vw);
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  transform: translateY(24px) scale(.98);
  opacity: 0;
  transition:
    transform .48s cubic-bezier(.19,1,.22,1),
    opacity .36s ease;
}

.floating-nav.is-open .nav-orbit {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.nav-brand {
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 24px;
  min-height: 440px;
  border-right: 1px solid rgba(255,255,255,.10);
}

.nav-brand img {
  width: clamp(105px, 10vw, 160px);
  height: auto;
  filter:
    drop-shadow(0 0 24px rgba(255,255,255,.22))
    drop-shadow(0 0 42px rgba(50,255,225,.12));
}

.nav-brand span {
  max-width: 280px;
  color: rgba(242,243,233,.44);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .36em;
  line-height: 1.8;
  text-transform: uppercase;
}

.nav-links {
  display: grid;
  gap: clamp(12px, 1.45vw, 22px);
}

.nav-links a {
  position: relative;
  display: grid;
  grid-template-columns: 42px 42px minmax(210px, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  color: rgba(242,243,233,.72);
  transition: color .25s ease, transform .25s ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 102px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.18), transparent);
  transform-origin: left;
  scale: .62 1;
  opacity: .72;
  transition: scale .3s ease, opacity .3s ease;
}

.nav-links a::after {
  content: "↗";
  justify-self: end;
  color: rgba(50,255,225,.58);
  font-size: 18px;
  transform: translate(-10px, 8px);
  opacity: .42;
  transition: transform .25s ease, opacity .25s ease, color .25s ease;
}

.nav-links a:hover {
  color: var(--white);
  transform: translateX(12px);
}

.nav-links a:hover::before {
  scale: 1 1;
  opacity: 1;
}

.nav-links a:hover::after {
  transform: translate(0, 0);
  opacity: 1;
  color: var(--cyan);
}

.nav-number {
  color: rgba(50,255,225,.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.nav-links i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: rgba(50,255,225,.84);
  font-size: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(50,255,225,.15), transparent 68%);
  text-shadow: 0 0 18px rgba(50,255,225,.32);
}

.nav-links strong {
  display: block;
  font-size: clamp(22px, 3.3vw, 48px);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .9;
  text-transform: uppercase;
}

.nav-links small {
  justify-self: end;
  color: rgba(242,243,233,.46);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.01em;
}

/* HERO */
.hero-content {
  position: relative;
  z-index: 8;
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: 0 18px 70px;
}

.headline-wrap {
  position: relative;
  width: min(1020px, 94vw);
  display: grid;
  place-items: center;
  perspective: 900px;
}

h1 {
  position: relative;
  z-index: 2;
  font-family: "Inter", system-ui, sans-serif;
  color: #f0f1e7;
  font-size: clamp(44px, 6.5vw, 104px);
  line-height: .88;
  font-weight: 900;
  letter-spacing: clamp(-3px, -.35vw, -7px);
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(255,255,255,.16),
    0 16px 58px rgba(0,0,0,.78);
  animation: titleReveal 1.05s cubic-bezier(.19, 1, .22, 1) both;
  will-change: transform;
}

h1::selection {
  color: #02030b;
  background: var(--cyan);
}

.tiny-label {
  position: absolute;
  z-index: 8;
  color: rgba(242,243,233,.66);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -.03em;
  text-shadow: 0 0 18px rgba(0,0,0,.5);
  animation: tinyIn .9s .45s ease both;
}

.label-left {
  left: 22%;
  top: 53%;
}

.label-right {
  right: 20%;
  top: 35%;
}

/* SCROLL */
.scroll-hint {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 28px;
  translate: -50% 0;
  width: 118px;
  height: 78px;
  display: grid;
  grid-template-columns: 38px 38px;
  grid-template-rows: 52px 18px;
  justify-content: center;
  align-items: center;
  column-gap: 13px;
  color: rgba(242,243,233,.70);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 8px;
}

.scroll-line {
  justify-self: end;
  position: relative;
  width: 2px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.56), transparent);
}

.scroll-line i {
  position: absolute;
  left: 50%;
  top: 0;
  width: 5px;
  height: 5px;
  translate: -50% 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 12px rgba(255,255,255,.85),
    0 0 24px rgba(50,255,225,.55);
  animation: scrollDot 1.7s ease-in-out infinite;
}

.mouse-icon {
  justify-self: start;
  position: relative;
  width: 25px;
  height: 38px;
  border: 2px solid rgba(242,243,233,.74);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(50,255,225,.10);
}

.mouse-icon b {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 7px;
  translate: -50% 0;
  border-radius: 999px;
  background: var(--white);
  animation: wheelMove 1.35s ease-in-out infinite;
}

.scroll-hint small {
  grid-column: 1 / -1;
  justify-self: center;
  font-size: 8px;
  font-weight: 900;
}

/* SECCIONES */
.section {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 112px 0;
}

.section-kicker {
  margin-bottom: 18px;
  color: rgba(50,255,225,.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .26em;
}

.section h2 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(38px, 5.6vw, 82px);
  line-height: .96;
  letter-spacing: -3px;
}

.section p {
  max-width: 720px;
  color: rgba(242,243,233,.68);
  font-size: 18px;
  line-height: 1.8;
}

.cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cards article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018)),
    radial-gradient(circle at 50% 100%, rgba(47,255,228,.10), transparent 60%);
}

.cards span {
  color: rgba(50,255,225,.76);
  font-size: 12px;
  font-weight: 900;
}

.cards strong {
  display: block;
  margin: 36px 0 10px;
  font-size: 24px;
}

.cards p {
  font-size: 15px;
  line-height: 1.6;
}

.contact-form {
  max-width: 690px;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  outline: 0;
  background: rgba(255,255,255,.035);
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 18px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(50,255,225,.56);
}

.contact-form button,
.page-link {
  width: max-content;
  min-height: 50px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #02030b;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-form button:hover,
.page-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(50,255,225,.12);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
  background:
    radial-gradient(circle at 50% 35%, rgba(50,255,225,.12), transparent 25%),
    radial-gradient(circle at 35% 55%, rgba(7,29,255,.24), transparent 32%),
    #02030b;
}

.page-box {
  width: min(720px, 92vw);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 34px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(18px);
}

.page-box img {
  width: 86px;
  margin-bottom: 26px;
}

.page-box h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 6vw, 72px);
  text-align: left;
}

.page-box p {
  margin-bottom: 28px;
  color: rgba(242,243,233,.68);
  font-size: 17px;
  line-height: 1.7;
}

@keyframes grainMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(2%, -2%); }
}

@keyframes pulseLeft {
  0% { transform: translate3d(-5%, 3%, 0) scale(.92); opacity: .52; }
  100% { transform: translate3d(8%, -2%, 0) scale(1.1); opacity: .84; }
}

@keyframes pulseRight {
  0% { transform: translate3d(5%, -3%, 0) scale(.92); opacity: .50; }
  100% { transform: translate3d(-8%, 2%, 0) scale(1.1); opacity: .82; }
}

@keyframes centerBreath {
  0% { transform: scale(.8); opacity: .35; }
  100% { transform: scale(1.15); opacity: .78; }
}

@keyframes ringFloat {
  0% { transform: translate3d(0, 12px, 0) scale(.96); opacity: .62; }
  100% { transform: translate3d(0, -9px, 0) scale(1.04); opacity: .9; }
}

@keyframes lineMove {
  0% { transform: translateX(-12px); opacity: .12; }
  100% { transform: translateX(12px); opacity: .34; }
}

@keyframes twinkle {
  0% { transform: scale(.72) rotate(0deg); opacity: .20; }
  100% { transform: scale(1.1) rotate(20deg); opacity: .75; }
}

@keyframes headerIn {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(42px) rotateX(14deg) scale(.96);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes tinyIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(42px); opacity: 0; }
}

@keyframes wheelMove {
  0%, 100% { transform: translateY(0); opacity: .28; }
  50% { transform: translateY(11px); opacity: 1; }
}

@media (max-width: 1040px) {
  .topbar {
    width: 92%;
    grid-template-columns: 1fr auto 1fr;
  }

  .store-name {
    font-size: 21px;
  }

  .top-actions {
    gap: 8px;
  }

  .top-pill {
    min-width: auto;
    padding: 0 13px;
  }

  .glow-left,
  .glow-right {
    width: 52vw;
    height: 30vw;
  }

  .glow-left {
    left: -2%;
  }

  .glow-right {
    right: -2%;
  }

  .label-left {
    left: 11%;
    top: 58%;
  }

  .label-right {
    right: 10%;
    top: 32%;
  }

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

@media (max-width: 740px) {
  .topbar {
    height: 86px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 6px 18px;
    padding-top: 12px;
  }

  .top-left {
    gap: 14px;
  }

  .store-name {
    font-size: 18px;
  }

  .brand-logo {
    grid-column: 2;
    grid-row: 1;
    width: 62px;
    height: 50px;
  }

  .brand-logo img {
    width: 58px;
    height: 45px;
  }

  .top-actions {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
    padding-top: 4px;
  }

  .top-pill {
    height: 31px;
    font-size: 10px;
  }

  .hero-content {
    min-height: calc(100vh - 86px);
    padding-bottom: 88px;
  }

  h1 {
    font-size: clamp(40px, 12.6vw, 72px);
    letter-spacing: -3px;
  }

  .tiny-label {
    font-size: 8px;
  }

  .label-left {
    left: 6%;
    top: 64%;
  }

  .label-right {
    right: 6%;
    top: 28%;
    max-width: 110px;
    text-align: right;
  }

  .cyan-ring {
    top: 64%;
  }

  .scroll-hint {
    bottom: 18px;
  }

  .section {
    padding: 84px 0;
  }

  .section h2 {
    letter-spacing: -2px;
  }

  .contact-form button {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .store-name {
    font-size: 16px;
  }

  .top-pill {
    padding: 0 11px;
  }

  h1 {
    font-size: 43px;
  }

  .label-left,
  .label-right {
    display: none;
  }
}


@media (max-width: 900px) {
  .topbar {
    padding: 0 22px;
  }

  .store-name {
    font-size: 24px;
  }

  .top-pill {
    min-width: auto;
    padding: 0 13px;
  }

  .top-pill span {
    display: none;
  }

  .floating-nav {
    padding: 96px 24px 42px;
    place-items: start center;
  }

  .nav-orbit {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nav-brand {
    min-height: auto;
    padding-bottom: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
    justify-items: center;
    text-align: center;
  }

  .nav-brand img {
    width: 90px;
  }

  .nav-links a {
    grid-template-columns: 34px 38px 1fr;
    gap: 12px;
  }

  .nav-links a::before {
    left: 86px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links small {
    grid-column: 3;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .topbar {
    height: 72px;
    padding: 0 16px;
  }

  .store-name {
    font-size: 19px;
  }

  .top-actions {
    gap: 8px;
  }

  .top-pill {
    width: 34px;
    height: 34px;
    padding: 0;
    min-width: 34px;
  }

  .brand-logo {
    width: 62px;
    height: 52px;
  }

  .brand-logo img {
    width: 58px;
    height: 46px;
  }

  .nav-links strong {
    font-size: 25px;
  }
}


/* Ajustes v3: cierre por click afuera + responsive reforzado */
body.menu-open {
  overflow: hidden;
}

body.menu-open .agency-hero > .hero-content,
body.menu-open .scroll-hint {
  pointer-events: none;
}

.menu-backdrop {
  cursor: pointer;
}

.nav-orbit {
  pointer-events: auto;
}

@media (max-width: 1180px) {
  .nav-orbit {
    width: min(960px, 94vw);
    gap: 54px;
  }

  .nav-links strong {
    font-size: clamp(25px, 3.9vw, 44px);
  }

  .nav-links small {
    max-width: 160px;
    text-align: right;
  }
}

@media (max-width: 900px) {
  .topbar {
    height: 78px;
    width: 100%;
    padding: 0 20px;
  }

  .top-left {
    min-width: 0;
  }

  .store-name {
    max-width: 165px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 24px;
  }

  .top-actions {
    gap: 8px;
  }

  .top-pill {
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
    border-radius: 999px;
  }

  .top-pill span {
    display: none;
  }

  .top-pill i {
    font-size: 13px;
  }

  .brand-logo {
    width: 64px;
    height: 54px;
  }

  .brand-logo img {
    width: 60px;
    height: 48px;
  }

  .floating-nav {
    align-items: start;
    padding: 92px 20px 26px;
    overflow-y: auto;
  }

  .nav-orbit {
    width: min(620px, 100%);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav-brand {
    min-height: auto;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
    justify-items: center;
    text-align: center;
  }

  .nav-brand img {
    width: 88px;
  }

  .nav-brand span {
    max-width: none;
    font-size: 10px;
    letter-spacing: .28em;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    min-height: 76px;
    grid-template-columns: 36px 42px 1fr;
    gap: 12px;
    padding: 6px 0;
  }

  .nav-links a::before {
    left: 90px;
    right: 0;
    scale: 1 1;
    opacity: .45;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links i {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .nav-links strong {
    font-size: clamp(25px, 8vw, 42px);
    letter-spacing: -.08em;
  }

  .nav-links small {
    grid-column: 3;
    justify-self: start;
    max-width: none;
    text-align: left;
    font-size: 10px;
  }

  .hero-content {
    min-height: calc(100vh - 78px);
    padding: 18px 18px 86px;
  }

  .headline-wrap {
    width: min(94vw, 720px);
  }

  h1 {
    font-size: clamp(42px, 11.5vw, 84px);
    line-height: .9;
    letter-spacing: -3px;
  }

  .label-left {
    left: 8%;
    top: 59%;
  }

  .label-right {
    right: 8%;
    top: 34%;
    max-width: 160px;
    text-align: right;
  }

  .cyan-ring {
    top: 64%;
    width: min(360px, 58vw);
  }

  .section {
    padding: 86px 0;
  }

  .section h2 {
    font-size: clamp(36px, 10vw, 66px);
    letter-spacing: -2px;
  }

  .section p {
    font-size: 16px;
  }
}

@media (max-width: 620px) {
  .topbar {
    height: 70px;
    padding: 0 14px;
    gap: 10px;
  }

  .store-name {
    max-width: 128px;
    font-size: 19px;
  }

  .top-actions {
    gap: 6px;
  }

  .top-pill {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .brand-logo {
    width: 56px;
    height: 48px;
  }

  .brand-logo img {
    width: 54px;
    height: 42px;
  }

  .hero-content {
    min-height: calc(100vh - 70px);
    padding-bottom: 96px;
  }

  h1 {
    font-size: clamp(38px, 13.1vw, 62px);
    line-height: .91;
  }

  .tiny-label {
    display: none;
  }

  .glow-left,
  .glow-right {
    width: 70vw;
    height: 36vw;
    top: 47%;
  }

  .glow-left {
    left: -18%;
  }

  .glow-right {
    right: -18%;
  }

  .glow-center {
    width: 64vw;
    height: 28vw;
    top: 60%;
  }

  .cyan-ring {
    top: 65%;
    width: min(300px, 72vw);
  }

  .scroll-hint {
    bottom: 16px;
    transform: scale(.88);
  }

  .floating-nav {
    padding: 82px 18px 22px;
  }

  .nav-brand img {
    width: 74px;
  }

  .nav-brand span {
    font-size: 9px;
    letter-spacing: .22em;
  }

  .nav-links a {
    min-height: 68px;
    grid-template-columns: 30px 34px 1fr;
    gap: 10px;
  }

  .nav-links a::before {
    left: 74px;
  }

  .nav-number {
    font-size: 10px;
  }

  .nav-links i {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .nav-links strong {
    font-size: clamp(22px, 8.6vw, 34px);
  }

  .nav-links small {
    font-size: 9px;
  }

  .cards {
    gap: 14px;
  }

  .cards article {
    min-height: auto;
    padding: 24px;
  }

  .contact-form button {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .store-name {
    max-width: 108px;
    font-size: 17px;
  }

  .topbar {
    padding: 0 10px;
  }

  .top-pill {
    width: 31px;
    height: 31px;
    min-width: 31px;
  }

  .brand-logo {
    width: 50px;
  }

  h1 {
    font-size: 36px;
  }

  .nav-links strong {
    font-size: 24px;
  }

  .nav-links small {
    display: none;
  }

  .nav-links a {
    min-height: 58px;
  }
}


/* Ajustes v4: mobile refinado */
@media (max-width: 740px) {
  .agency-hero::before {
    background:
      radial-gradient(ellipse 72% 26% at 50% 58%, rgba(50,255,225,.34), transparent 70%),
      radial-gradient(ellipse 88% 34% at 50% 56%, rgba(0,26,255,.42), transparent 74%),
      radial-gradient(ellipse 54% 26% at 50% 38%, rgba(6,12,42,.72), transparent 72%);
    filter: blur(34px) saturate(1.42);
    opacity: .92;
  }

  .agency-hero::after {
    background:
      radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(0,0,0,.24) 58%, rgba(0,0,0,.82) 100%),
      linear-gradient(90deg, rgba(0,0,0,.64), transparent 24%, transparent 76%, rgba(0,0,0,.64));
  }

  .glow-left,
  .glow-right {
    filter: blur(52px);
    opacity: .68;
  }

  .glow-center {
    filter: blur(42px);
    opacity: .72;
  }

  .cyan-ring {
    filter:
      blur(1.2px)
      drop-shadow(0 0 28px rgba(42,255,226,.86))
      drop-shadow(0 0 68px rgba(42,255,226,.48));
    opacity: .78;
  }

  .topbar {
    position: relative;
    width: 100%;
    height: 82px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 82px;
    align-items: center;
    gap: 0;
  }

  .top-left {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
  }

  .store-name {
    display: inline-block;
    max-width: 156px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 24px;
    line-height: 1;
  }

  .brand-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 62px;
    height: 54px;
  }

  .brand-logo img {
    width: 60px;
    height: 48px;
  }

  .top-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 0;
  }

  .top-pill {
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
  }

  .top-pill span {
    display: none;
  }

  .top-pill i {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .topbar {
    height: 78px;
    grid-template-rows: 78px;
    padding: 0 16px;
  }

  .store-name {
    max-width: 142px;
    font-size: 22px;
  }

  .brand-logo {
    width: 58px;
    height: 50px;
  }

  .brand-logo img {
    width: 56px;
    height: 44px;
  }

  .top-actions {
    gap: 7px;
  }

  .top-pill {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
}

@media (max-width: 430px) {
  .topbar {
    padding: 0 13px;
  }

  .store-name {
    max-width: 125px;
    font-size: 20px;
  }

  .brand-logo {
    width: 54px;
    height: 48px;
  }

  .brand-logo img {
    width: 52px;
    height: 42px;
  }

  .top-actions {
    gap: 6px;
  }

  .top-pill {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
}

@media (max-width: 370px) {
  .store-name {
    max-width: 110px;
    font-size: 18px;
  }

  .brand-logo {
    width: 50px;
  }

  .top-pill {
    width: 31px;
    height: 31px;
    min-width: 31px;
  }
}


/* =========================
   TIENDA WEB AUSTRAL + CATEGORÍAS
   ========================= */

.shop-body {
  background: #02030b;
  color: var(--white, #f2f3e9);
}

.shop-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(50,255,225,.10), transparent 18%),
    radial-gradient(circle at 50% 44%, rgba(0,26,255,.20), transparent 41%),
    linear-gradient(180deg, #050612 0%, #01020a 100%);
}

.shop-stage::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: -8;
  background:
    radial-gradient(ellipse 44% 21% at 22% 56%, rgba(0,26,255,.55), transparent 72%),
    radial-gradient(ellipse 44% 21% at 78% 55%, rgba(0,26,255,.48), transparent 72%),
    radial-gradient(ellipse 34% 18% at 50% 68%, rgba(50,255,225,.52), transparent 70%),
    radial-gradient(ellipse 48% 28% at 50% 40%, rgba(3,9,44,.75), transparent 72%);
  filter: blur(32px) saturate(1.32);
  animation: shopBackground 10s ease-in-out infinite alternate;
}

.shop-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -6;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.62), transparent 24%, transparent 76%, rgba(0,0,0,.62)),
    radial-gradient(circle at 50% 50%, transparent 0 32%, rgba(0,0,0,.22) 58%, rgba(0,0,0,.84) 100%);
}

.shop-noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: .13;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.16) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.11) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.08) 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px, 13px 13px;
  animation: grainMove .55s steps(2) infinite;
}

.shop-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.shop-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  mix-blend-mode: screen;
  opacity: .70;
}

.shop-glow-left {
  width: 30vw;
  height: 16vw;
  left: 10%;
  top: 48%;
  background: #001aff;
  animation: shopFloatLeft 9s ease-in-out infinite alternate;
}

.shop-glow-right {
  width: 31vw;
  height: 16vw;
  right: 10%;
  top: 48%;
  background: #001aff;
  animation: shopFloatRight 9.5s ease-in-out infinite alternate;
}

.shop-glow-center {
  width: 24vw;
  height: 12vw;
  left: 50%;
  top: 63%;
  translate: -50% -50%;
  background: #31f7da;
  filter: blur(34px);
  animation: shopPulse 6.4s ease-in-out infinite alternate;
}

.shop-orbit {
  position: absolute;
  left: 50%;
  top: 66%;
  width: clamp(200px, 25vw, 390px);
  height: clamp(88px, 11vw, 160px);
  translate: -50% -50%;
  border-radius: 0 0 999px 999px;
  border-left: clamp(16px, 2vw, 28px) solid rgba(49,247,218,.62);
  border-right: clamp(16px, 2vw, 28px) solid rgba(49,247,218,.62);
  border-bottom: clamp(16px, 2vw, 28px) solid rgba(49,247,218,.78);
  filter:
    drop-shadow(0 0 28px rgba(49,247,218,.72))
    drop-shadow(0 0 70px rgba(49,247,218,.30));
  opacity: .72;
  animation: shopOrbit 5.2s ease-in-out infinite alternate;
}

.shop-topbar {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 86px;
  padding: 0 clamp(26px, 3.2vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.shop-wordmark {
  justify-self: start;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(24px, 2.05vw, 38px);
  font-weight: 700;
  letter-spacing: -.095em;
  text-shadow: 0 0 24px rgba(255,255,255,.14);
  transition: transform .25s ease;
}

.shop-wordmark:hover {
  transform: translateY(-2px);
}

.shop-logo {
  width: 82px;
  height: 64px;
  display: grid;
  place-items: center;
  transition: transform .28s ease;
}

.shop-logo:hover {
  transform: translateY(-3px) scale(1.04);
}

.shop-logo img {
  width: 76px;
  height: 58px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(255,255,255,.24))
    drop-shadow(0 0 26px rgba(50,255,225,.10));
}

.shop-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.shop-actions a {
  height: 36px;
  min-width: 118px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  color: rgba(242,243,233,.88);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.shop-actions a:hover {
  transform: translateY(-2px);
}

.shop-actions a.active {
  color: #02030b;
  border-color: #f2f3e9;
  background: #f2f3e9;
}

.shop-hero {
  position: relative;
  z-index: 6;
  min-height: calc(100vh - 86px);
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  place-items: center;
  align-content: center;
  padding-bottom: 82px;
  text-align: center;
}

.category-orbit {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 10;
  translate: -50% 0;
  width: min(780px, 88vw);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  animation: shopFadeUp .8s .08s ease both;
}

.category-orbit a {
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(242,243,233,.70);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  backdrop-filter: blur(16px);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  transition:
    transform .25s ease,
    color .25s ease,
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.category-orbit a i {
  color: #31f7da;
  font-size: 14px;
  filter: drop-shadow(0 0 12px rgba(49,247,218,.28));
}

.category-orbit a:hover {
  color: #f2f3e9;
  border-color: rgba(49,247,218,.42);
  background: rgba(49,247,218,.075);
  box-shadow: 0 18px 50px rgba(49,247,218,.08);
  transform: translateY(-4px);
}

.shop-kicker {
  color: rgba(49,247,218,.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.shop-hero .shop-kicker {
  margin-bottom: 18px;
  animation: shopFadeUp .8s ease both;
}

.shop-hero h1 {
  max-width: 1040px;
  margin: 0 auto;
  color: #f2f3e9;
  font-size: clamp(52px, 7.7vw, 124px);
  line-height: .84;
  font-weight: 900;
  letter-spacing: clamp(-4px, -.45vw, -8px);
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(255,255,255,.16),
    0 16px 58px rgba(0,0,0,.78);
  animation: shopTitle .95s .1s cubic-bezier(.19, 1, .22, 1) both;
}

.shop-intro {
  max-width: 660px;
  margin: 26px auto 0;
  color: rgba(242,243,233,.64);
  font-size: 17px;
  line-height: 1.8;
  animation: shopFadeUp .8s .22s ease both;
}

.shop-stats {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 54px);
  animation: shopFadeUp .8s .32s ease both;
}

.shop-stats span {
  display: grid;
  gap: 5px;
  color: rgba(242,243,233,.44);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.shop-stats b {
  color: #f2f3e9;
  font-size: 24px;
  letter-spacing: -.06em;
}

.shop-scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  translate: -50% 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(242,243,233,.70);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .25s ease, color .25s ease;
}

.shop-scroll i {
  color: #31f7da;
  font-size: 19px;
  animation: shopMouse 1.5s ease-in-out infinite;
}

.shop-scroll:hover {
  color: #f2f3e9;
  transform: translateY(-3px);
}

.shop-catalog,
.shop-process,
.shop-cta {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 112px 0;
}

.catalog-head {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 32px;
}

.catalog-head h2,
.shop-process h2,
.shop-cta h2,
.products-top h2 {
  max-width: 900px;
  color: #f2f3e9;
  font-size: clamp(38px, 5.6vw, 82px);
  line-height: .96;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.product-list {
  display: grid;
}

.product-row {
  position: relative;
  min-height: 150px;
  display: grid;
  grid-template-columns: 64px 64px minmax(0, 1fr) 150px 46px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.11);
  isolation: isolate;
}

.product-row:last-child {
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.product-row::before {
  content: "";
  position: absolute;
  inset: 0 -24px;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 50%, rgba(49,247,218,.10), transparent 20%),
    linear-gradient(90deg, rgba(255,255,255,.045), transparent 62%);
  opacity: 0;
  transition: opacity .28s ease;
}

.product-row:hover::before {
  opacity: 1;
}

.product-number {
  color: rgba(49,247,218,.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
}

.product-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #31f7da;
  font-size: 21px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(49,247,218,.16), transparent 67%);
  text-shadow: 0 0 18px rgba(49,247,218,.36);
  transition: transform .28s ease;
}

.product-row:hover .product-icon {
  transform: translateY(-4px) scale(1.08);
}

.product-main span {
  display: block;
  margin-bottom: 6px;
  color: rgba(49,247,218,.64);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.product-main h3 {
  margin-bottom: 10px;
  color: #f2f3e9;
  font-size: clamp(26px, 3.7vw, 54px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.product-main p {
  max-width: 620px;
  color: rgba(242,243,233,.58);
  font-size: 15px;
  line-height: 1.65;
}

.product-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.product-meta small {
  color: rgba(242,243,233,.46);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.product-meta strong {
  color: #f2f3e9;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.06em;
}

.product-action {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  justify-self: end;
  color: rgba(242,243,233,.72);
  border-radius: 999px;
  transition: color .25s ease, transform .25s ease, background .25s ease;
}

.product-action:hover {
  color: #02030b;
  background: #31f7da;
  transform: translate(4px, -4px);
}

/* cards visuales */
.shop-products {
  width: min(1320px, 92%);
  margin: 0 auto;
  padding: 112px 0;
}

.products-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
}

.products-tools {
  display: grid;
  justify-items: end;
  gap: 18px;
}

.search-tool,
.sort-tool {
  height: 58px;
  min-width: 280px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(242,243,233,.56);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(14px);
}

.search-tool input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #f2f3e9;
  background: transparent;
  font-weight: 700;
}

.search-tool input::placeholder {
  color: rgba(242,243,233,.42);
}

.sort-tool {
  min-width: 170px;
  justify-content: space-between;
  font-weight: 900;
  cursor: pointer;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.filter-pills a {
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(242,243,233,.62);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  font-size: 13px;
  font-weight: 900;
  transition: transform .25s ease, color .25s ease, border-color .25s ease, background .25s ease;
}

.filter-pills a i {
  color: rgba(49,247,218,.75);
}

.filter-pills a:hover,
.filter-pills a.active {
  color: #f2f3e9;
  border-color: rgba(49,247,218,.36);
  background: rgba(49,247,218,.06);
  transform: translateY(-3px);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.visual-card {
  position: relative;
  min-height: 410px;
  display: grid;
  grid-template-rows: 1.1fr .92fr;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.018));
  box-shadow: 0 20px 80px rgba(0,0,0,.28);
  transition:
    transform .35s cubic-bezier(.19,1,.22,1),
    border-color .25s ease,
    box-shadow .25s ease;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.08), transparent 18%),
    radial-gradient(circle at 70% 25%, rgba(49,247,218,.14), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(0,26,255,.22), transparent 32%);
  filter: blur(16px);
  opacity: .9;
  transition: transform .5s ease, opacity .3s ease;
}

.visual-card:hover {
  transform: translateY(-10px);
  border-color: rgba(49,247,218,.28);
  box-shadow:
    0 28px 100px rgba(0,0,0,.38),
    0 0 60px rgba(49,247,218,.08);
}

.visual-card:hover::before {
  transform: rotate(8deg) scale(1.08);
  opacity: 1;
}

.visual-card.pink::before {
  background:
    radial-gradient(circle at 16% 8%, rgba(255,24,84,.55), transparent 28%),
    radial-gradient(circle at 72% 70%, rgba(0,26,255,.18), transparent 36%);
}

.visual-card.violet::before {
  background:
    radial-gradient(circle at 20% 8%, rgba(142,75,255,.55), transparent 30%),
    radial-gradient(circle at 70% 74%, rgba(49,247,218,.15), transparent 34%);
}

.visual-card.cyan::before {
  background:
    radial-gradient(circle at 20% 8%, rgba(49,247,218,.42), transparent 30%),
    radial-gradient(circle at 70% 74%, rgba(0,26,255,.28), transparent 34%);
}

.visual-card.blue::before {
  background:
    radial-gradient(circle at 20% 8%, rgba(0,26,255,.50), transparent 30%),
    radial-gradient(circle at 70% 74%, rgba(49,247,218,.14), transparent 34%);
}

.visual-card.green::before {
  background:
    radial-gradient(circle at 20% 8%, rgba(45,255,143,.38), transparent 30%),
    radial-gradient(circle at 70% 74%, rgba(0,26,255,.20), transparent 34%);
}

.visual-card.gold::before {
  background:
    radial-gradient(circle at 20% 8%, rgba(255,196,77,.42), transparent 30%),
    radial-gradient(circle at 70% 74%, rgba(49,247,218,.14), transparent 34%);
}

.visual-art {
  position: relative;
  min-height: 220px;
  padding: 28px;
  display: grid;
  align-content: end;
  overflow: hidden;
}

.visual-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
    repeating-linear-gradient(120deg, rgba(255,255,255,.035) 0 1px, transparent 1px 28px);
}

.visual-art i {
  position: absolute;
  left: 28px;
  top: 28px;
  color: #31f7da;
  font-size: 30px;
  text-shadow: 0 0 24px rgba(49,247,218,.45);
}

.visual-art span {
  margin-bottom: 9px;
  color: rgba(49,247,218,.78);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.visual-art strong {
  max-width: 360px;
  color: #f2f3e9;
  font-size: clamp(30px, 3vw, 46px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.visual-info {
  padding: 24px 28px 28px;
  display: grid;
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.34)),
    rgba(255,255,255,.022);
}

.visual-info small {
  display: block;
  margin-bottom: 8px;
  color: rgba(242,243,233,.42);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.visual-info h3 {
  margin-bottom: 10px;
  color: #f2f3e9;
  font-size: 23px;
  line-height: 1;
  letter-spacing: -.06em;
}

.visual-info p {
  color: rgba(242,243,233,.60);
  font-size: 14px;
  line-height: 1.6;
}

.visual-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.visual-buy strong {
  color: #f2f3e9;
  font-size: 26px;
  letter-spacing: -.06em;
}

.visual-buy div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.visual-buy a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: rgba(242,243,233,.78);
  border-radius: 12px;
  background: rgba(255,255,255,.075);
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.visual-buy a:hover {
  color: #02030b;
  background: #31f7da;
  transform: translateY(-3px);
}

.visual-buy a.arrow {
  color: #02030b;
  background: #f2f3e9;
}

.visual-buy a.arrow:hover {
  background: #31f7da;
}

.process-line {
  position: relative;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(49,247,218,.56), transparent);
}

.process-line article {
  position: relative;
  padding-top: 70px;
}

.process-line i {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #31f7da;
  font-size: 20px;
  border-radius: 999px;
  background: #02030b;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.10),
    0 0 26px rgba(49,247,218,.16);
}

.process-line span {
  display: block;
  margin-bottom: 16px;
  color: rgba(49,247,218,.74);
  font-size: 12px;
  font-weight: 900;
}

.process-line strong {
  display: block;
  margin-bottom: 10px;
  color: #f2f3e9;
  font-size: 22px;
}

.process-line p {
  color: rgba(242,243,233,.60);
  font-size: 15px;
  line-height: 1.65;
}

.shop-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.shop-cta a {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #02030b;
  background: #f2f3e9;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease;
}

.shop-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(49,247,218,.16);
}

@keyframes shopBackground {
  0% { transform: translate3d(-1%, -1%, 0) scale(1.02); opacity: .72; }
  100% { transform: translate3d(1.2%, 1.5%, 0) scale(1.12); opacity: 1; }
}

@keyframes shopFloatLeft {
  0% { transform: translate3d(-6%, 4%, 0) scale(.94); opacity: .52; }
  100% { transform: translate3d(8%, -3%, 0) scale(1.09); opacity: .78; }
}

@keyframes shopFloatRight {
  0% { transform: translate3d(6%, -4%, 0) scale(.94); opacity: .50; }
  100% { transform: translate3d(-8%, 3%, 0) scale(1.09); opacity: .76; }
}

@keyframes shopPulse {
  0% { transform: scale(.82); opacity: .35; }
  100% { transform: scale(1.18); opacity: .74; }
}

@keyframes shopOrbit {
  0% { transform: translateY(12px) scale(.96); opacity: .58; }
  100% { transform: translateY(-8px) scale(1.04); opacity: .82; }
}

@keyframes shopTitle {
  from {
    opacity: 0;
    transform: translateY(42px) rotateX(14deg) scale(.96);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes shopFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shopMouse {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 1120px) {
  .category-orbit {
    position: relative;
    top: auto;
    left: auto;
    translate: none;
    width: min(760px, 94vw);
    margin: 0 auto 34px;
  }

  .visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-top {
    grid-template-columns: 1fr;
  }

  .products-tools {
    justify-items: start;
    grid-template-columns: 1fr auto;
    width: 100%;
  }

  .search-tool {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 960px) {
  .shop-topbar {
    height: 78px;
    padding: 0 20px;
  }

  .shop-wordmark {
    font-size: 24px;
  }

  .shop-logo {
    width: 62px;
    height: 54px;
  }

  .shop-logo img {
    width: 60px;
    height: 48px;
  }

  .shop-actions {
    gap: 8px;
  }

  .shop-actions a {
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
  }

  .shop-actions a span {
    display: none;
  }

  .shop-hero {
    min-height: calc(100vh - 78px);
    padding-bottom: 96px;
  }

  .shop-hero h1 {
    font-size: clamp(46px, 11vw, 88px);
  }

  .catalog-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-row {
    grid-template-columns: 44px 52px minmax(0, 1fr) 42px;
    gap: 16px;
  }

  .product-meta {
    grid-column: 3;
    grid-row: 2;
    justify-items: start;
  }

  .product-action {
    grid-column: 4;
    grid-row: 1 / span 2;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .category-orbit {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-orbit a {
    min-height: 44px;
    padding: 0 12px;
    font-size: 10px;
  }

  .shop-products {
    padding: 84px 0;
  }

  .products-top h2,
  .catalog-head h2,
  .shop-process h2,
  .shop-cta h2 {
    font-size: clamp(36px, 10vw, 62px);
    letter-spacing: -2px;
  }

  .products-tools {
    grid-template-columns: 1fr;
  }

  .search-tool,
  .sort-tool {
    width: 100%;
    min-width: 0;
  }

  .filter-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-pills a {
    min-height: 48px;
    padding: 0 13px;
    font-size: 11px;
  }

  .visual-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .visual-card {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .shop-stage::before {
    filter: blur(38px) saturate(1.45);
  }

  .shop-topbar {
    height: 76px;
    padding: 0 15px;
  }

  .shop-wordmark {
    max-width: 138px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 21px;
  }

  .shop-logo {
    width: 56px;
    height: 48px;
  }

  .shop-logo img {
    width: 54px;
    height: 42px;
  }

  .shop-actions a {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .shop-hero {
    min-height: calc(100vh - 76px);
    width: 92%;
    padding-bottom: 92px;
  }

  .shop-hero h1 {
    font-size: clamp(42px, 12.5vw, 62px);
    letter-spacing: -3px;
  }

  .shop-intro {
    margin-top: 22px;
    font-size: 15px;
  }

  .shop-stats {
    gap: 22px;
  }

  .shop-stats b {
    font-size: 20px;
  }

  .shop-stats span {
    font-size: 8px;
  }

  .shop-orbit {
    top: 68%;
    width: min(310px, 75vw);
  }

  .shop-catalog,
  .shop-process,
  .shop-cta {
    padding: 84px 0;
  }

  .product-row {
    grid-template-columns: 34px 42px minmax(0, 1fr);
    gap: 12px;
    padding: 26px 0;
  }

  .product-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .product-main h3 {
    font-size: clamp(27px, 8.8vw, 40px);
  }

  .product-main p {
    font-size: 14px;
  }

  .product-meta {
    grid-column: 3;
    grid-row: auto;
  }

  .product-meta strong {
    font-size: 22px;
  }

  .product-action {
    grid-column: 3;
    grid-row: auto;
    justify-self: start;
    margin-top: 8px;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-line::before {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(49,247,218,.56), transparent);
  }

  .process-line article {
    padding-top: 0;
    padding-left: 70px;
  }

  .process-line i {
    left: 0;
  }

  .shop-cta a {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .category-orbit {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .category-orbit a {
    justify-content: flex-start;
  }

  .filter-pills {
    grid-template-columns: 1fr;
  }

  .visual-art {
    min-height: 190px;
    padding: 22px;
  }

  .visual-art i {
    left: 22px;
    top: 22px;
  }

  .visual-info {
    padding: 22px;
  }

  .visual-buy strong {
    font-size: 22px;
  }

  .visual-buy a {
    width: 42px;
    height: 42px;
  }

  .shop-wordmark {
    max-width: 118px;
    font-size: 18px;
  }

  .shop-logo {
    width: 50px;
  }

  .shop-actions {
    gap: 5px;
  }

  .shop-actions a {
    width: 31px;
    height: 31px;
    min-width: 31px;
  }

  .shop-hero h1 {
    font-size: 39px;
  }
}


/* =========================
   TABS + FOOTER TIENDA
   ========================= */

.shop-tabs-section {
  width: min(1320px, 92%);
  margin: 0 auto;
  padding: 112px 0;
}

.tabs-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
}

.tabs-head h2 {
  max-width: 960px;
  color: #f2f3e9;
  font-size: clamp(38px, 5.6vw, 82px);
  line-height: .96;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.shop-tabs {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 34px 0 46px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(2,3,11,.62);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0,0,0,.24);
}

.tab-button {
  min-height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: rgba(242,243,233,.58);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color .25s ease,
    background .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.tab-button i {
  color: rgba(49,247,218,.72);
  font-size: 15px;
}

.tab-button:hover {
  color: #f2f3e9;
  transform: translateY(-2px);
}

.tab-button.active {
  color: #02030b;
  background: #f2f3e9;
  box-shadow:
    0 10px 35px rgba(255,255,255,.08),
    0 0 42px rgba(49,247,218,.12);
}

.tab-button.active i {
  color: #02030b;
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
  animation: tabReveal .55s cubic-bezier(.19,1,.22,1) both;
}

.tab-panel.active {
  display: block;
}

.panel-title {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.panel-title h3 {
  color: #f2f3e9;
  font-size: clamp(32px, 4.7vw, 70px);
  line-height: .96;
  letter-spacing: -3px;
  text-transform: uppercase;
}

[data-search-item].is-hidden {
  display: none !important;
}

.site-footer {
  position: relative;
  width: min(1320px, 92%);
  margin: 30px auto 0;
  padding: 76px 0 34px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.12);
  isolation: isolate;
}

.footer-glow {
  position: absolute;
  left: 50%;
  top: 10%;
  z-index: -1;
  width: 42vw;
  height: 18vw;
  translate: -50% 0;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(49,247,218,.15), transparent 70%);
  filter: blur(34px);
  opacity: .8;
  pointer-events: none;
  animation: footerGlow 6s ease-in-out infinite alternate;
}

.footer-top {
  display: grid;
  grid-template-columns: .7fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 42px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
}

.footer-brand img {
  width: 60px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255,255,255,.18));
}

.footer-brand span {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: #f2f3e9;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.09em;
}

.footer-top p {
  max-width: 580px;
  color: rgba(242,243,233,.60);
  font-size: 15px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: rgba(242,243,233,.72);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  transition:
    color .25s ease,
    background .25s ease,
    transform .25s ease,
    border-color .25s ease;
}

.footer-social a:hover {
  color: #02030b;
  background: #31f7da;
  border-color: #31f7da;
  transform: translateY(-4px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links a {
  color: rgba(242,243,233,.55);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease;
}

.footer-links a:hover {
  color: #31f7da;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  color: rgba(242,243,233,.42);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom a {
  color: rgba(49,247,218,.76);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@keyframes tabReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes footerGlow {
  from {
    transform: scale(.88);
    opacity: .35;
  }
  to {
    transform: scale(1.1);
    opacity: .85;
  }
}

@media (max-width: 980px) {
  .tabs-head {
    grid-template-columns: 1fr;
  }

  .shop-tabs {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 28px;
  }

  .tab-button {
    border-radius: 18px;
  }

  .panel-title {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .shop-tabs-section {
    padding: 84px 0;
  }

  .tabs-head h2,
  .panel-title h3 {
    font-size: clamp(36px, 10vw, 62px);
    letter-spacing: -2px;
  }

  .shop-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .tab-button {
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 16px;
    font-size: 11px;
  }

  .footer-top {
    padding-bottom: 32px;
  }

  .footer-brand span {
    font-size: 24px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


/* =========================
   AUTH + PROFILE
   ========================= */

.auth-body,
.profile-body {
  min-height: 100vh;
  color: #f2f3e9;
  background: #02030b;
}

.auth-stage,
.profile-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 44%, rgba(0,26,255,.22), transparent 38%),
    radial-gradient(circle at 50% 70%, rgba(49,247,218,.12), transparent 28%),
    #02030b;
}

.auth-stage::before,
.profile-stage::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -3;
  background:
    radial-gradient(ellipse 45% 25% at 25% 45%, rgba(0,26,255,.48), transparent 72%),
    radial-gradient(ellipse 45% 25% at 78% 58%, rgba(49,247,218,.28), transparent 72%);
  filter: blur(38px) saturate(1.35);
  animation: shopBackground 10s ease-in-out infinite alternate;
}

.auth-stage::after,
.profile-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.64), transparent 25%, transparent 75%, rgba(0,0,0,.64)),
    radial-gradient(circle at 50% 50%, transparent 0 35%, rgba(0,0,0,.82) 100%);
}

.auth-logo {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 4;
  width: 80px;
  height: 62px;
  translate: -50% 0;
  display: grid;
  place-items: center;
}

.auth-logo img {
  width: 76px;
  height: 58px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(255,255,255,.24))
    drop-shadow(0 0 26px rgba(50,255,225,.10));
}

.auth-shell {
  position: relative;
  z-index: 2;
  width: min(1120px, 92%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 120px 0 70px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.auth-copy h1 {
  max-width: 680px;
  margin: 16px 0 24px;
  color: #f2f3e9;
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: .86;
  font-weight: 900;
  letter-spacing: clamp(-3px, -.38vw, -8px);
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(255,255,255,.16),
    0 16px 58px rgba(0,0,0,.78);
  animation: shopTitle .9s cubic-bezier(.19,1,.22,1) both;
}

.auth-copy p {
  max-width: 580px;
  color: rgba(242,243,233,.64);
  font-size: 17px;
  line-height: 1.8;
}

.auth-mini-links {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.auth-mini-links a {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(242,243,233,.76);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .25s ease, color .25s ease, border-color .25s ease;
}

.auth-mini-links a:hover {
  color: #31f7da;
  border-color: rgba(49,247,218,.38);
  transform: translateY(-3px);
}

.auth-form {
  position: relative;
  padding: clamp(24px, 3.6vw, 42px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0, rgba(49,247,218,.10), transparent 35%),
    rgba(255,255,255,.035);
  box-shadow:
    0 28px 100px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(22px);
  animation: shopFadeUp .85s .16s ease both;
}

.form-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 26px;
}

.form-head > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #02030b;
  border-radius: 999px;
  background: #f2f3e9;
}

.form-head strong {
  display: block;
  color: #f2f3e9;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.06em;
}

.form-head span {
  display: block;
  margin-top: 2px;
  color: rgba(242,243,233,.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.auth-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,77,141,.28);
  border-radius: 18px;
  color: rgba(255,220,230,.92);
  background: rgba(255,77,141,.08);
}

.auth-alert p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.auth-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.auth-form label span {
  color: rgba(242,243,233,.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: #f2f3e9;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  outline: none;
  background: rgba(2,3,11,.42);
  font-weight: 700;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.auth-form input:focus {
  border-color: rgba(49,247,218,.62);
  box-shadow: 0 0 0 4px rgba(49,247,218,.06);
}

.auth-form button {
  width: 100%;
  min-height: 58px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #02030b;
  border: 0;
  border-radius: 999px;
  background: #f2f3e9;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.auth-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(49,247,218,.16);
}

.auth-switch {
  margin-top: 18px;
  color: rgba(242,243,233,.58);
  font-size: 13px;
  text-align: center;
}

.auth-switch a {
  color: #31f7da;
  font-weight: 900;
}

.profile-topbar {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 86px;
  padding: 0 clamp(26px, 3.2vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.profile-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-actions a {
  height: 36px;
  min-width: 104px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(242,243,233,.86);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .25s ease, color .25s ease, border-color .25s ease;
}

.profile-actions a:hover {
  color: #31f7da;
  border-color: rgba(49,247,218,.38);
  transform: translateY(-2px);
}

.profile-hero {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 90px 0 54px;
  text-align: center;
}

.profile-avatar {
  width: 98px;
  height: 98px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  color: #02030b;
  border-radius: 999px;
  background: var(--avatar-color);
  box-shadow:
    0 0 34px color-mix(in srgb, var(--avatar-color), transparent 55%),
    0 20px 80px rgba(0,0,0,.35);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.08em;
}

.profile-hero h1 {
  margin: 16px auto 20px;
  color: #f2f3e9;
  font-size: clamp(48px, 7vw, 112px);
  line-height: .86;
  font-weight: 900;
  letter-spacing: clamp(-3px, -.38vw, -8px);
  text-transform: uppercase;
}

.profile-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(242,243,233,.64);
  font-size: 17px;
  line-height: 1.8;
}

.profile-grid {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.profile-panel {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0, rgba(49,247,218,.08), transparent 40%),
    rgba(255,255,255,.028);
}

.profile-panel > i {
  color: #31f7da;
  font-size: 24px;
  margin-bottom: 34px;
}

.profile-panel span {
  display: block;
  margin-bottom: 8px;
  color: rgba(242,243,233,.42);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.profile-panel strong {
  display: block;
  color: #f2f3e9;
  font-size: 22px;
  letter-spacing: -.06em;
  word-break: break-word;
}

.profile-panel p {
  margin-top: 10px;
  color: rgba(242,243,233,.58);
  font-size: 14px;
  line-height: 1.6;
}

.profile-sessions {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
}

.profile-sessions h2 {
  margin-top: 14px;
  color: #f2f3e9;
  font-size: clamp(34px, 5vw, 72px);
  line-height: .94;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.session-list {
  display: grid;
  gap: 12px;
}

.session-list div {
  min-height: 62px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.session-list i {
  color: #31f7da;
}

.session-list span {
  color: #f2f3e9;
  font-weight: 900;
}

.session-list small {
  color: rgba(242,243,233,.48);
}

.category-orbit:empty {
  display: none;
}

@media (max-width: 980px) {
  .auth-shell {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .profile-grid,
  .profile-sessions {
    grid-template-columns: 1fr;
  }

  .profile-sessions {
    gap: 26px;
  }
}

@media (max-width: 640px) {
  .auth-logo {
    top: 16px;
    width: 62px;
    height: 50px;
  }

  .auth-logo img {
    width: 58px;
    height: 44px;
  }

  .auth-shell {
    width: 92%;
    padding: 92px 0 54px;
  }

  .auth-copy h1 {
    font-size: clamp(38px, 12vw, 62px);
    letter-spacing: -3px;
  }

  .auth-copy p {
    font-size: 15px;
  }

  .auth-form {
    border-radius: 26px;
  }

  .profile-topbar {
    height: 76px;
    padding: 0 15px;
  }

  .profile-actions a {
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding: 0;
  }

  .profile-actions a span {
    display: none;
  }

  .profile-hero {
    padding-top: 64px;
  }

  .profile-avatar {
    width: 82px;
    height: 82px;
    font-size: 28px;
  }

  .profile-hero h1 {
    font-size: clamp(40px, 13vw, 64px);
    letter-spacing: -3px;
  }

  .profile-panel {
    min-height: auto;
  }

  .session-list div {
    grid-template-columns: 30px 1fr;
  }

  .session-list small {
    grid-column: 2;
  }
}


/* Ajuste: la tienda ya no muestra categorías superiores en el hero */
.shop-hero {
  padding-top: 0;
}



/* v2 usuario en navbar + registro extendido */
.user-session-pill {
  color: #02030b !important;
  border-color: #31f7da !important;
  background: #31f7da !important;
  box-shadow: 0 0 26px rgba(49,247,218,.14);
}

.user-session-pill span {
  max-width: 148px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-form input[type="date"] {
  color-scheme: dark;
}

.auth-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: .72;
  cursor: pointer;
}

@media (max-width: 960px) {
  .user-session-pill span {
    max-width: 90px;
  }
}

@media (max-width: 640px) {
  .user-session-pill span {
    display: none !important;
  }
}
