:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-light: #F3F4F4;
  --panel: #141414;
  --text: #f5f5f2;
  --text-dark: #0a0a0a;
  --cyan: #01aced;
  --magenta: #ea038c;
  --yellow: #fff000;
  --green: #24e844;
  --muted: rgba(255, 255, 255, 0.6);
  --muted-dark: rgba(10, 10, 10, 0.55);
  --border: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --font: "Poppins", sans-serif;
  --page-pad-x: 16px;
  --section-pad-y: 56px;
  --touch: 48px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--cyan);
}

a:hover {
  color: var(--magenta);
}

::selection {
  background: var(--magenta);
  color: var(--bg);
}

button,
input {
  font-family: inherit;
}

@keyframes glowPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px var(--page-pad-x);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  flex-wrap: nowrap;
  transition: background 0.25s ease;
}

.site-header.is-scrolled {
  background: var(--bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header .logo img,
.site-header a.logo img {
  height: 36px;
  width: auto;
}

.site-header a.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-cta {
  text-decoration: none;
  background: var(--yellow);
  color: var(--bg);
  font-weight: 800;
  font-size: 13px;
  padding: 12px 16px;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  box-shadow: 0 0 0 2px var(--bg), 0 0 18px rgba(255, 240, 0, 0.5);
  white-space: nowrap;
}

.btn-cta:hover {
  color: var(--bg);
}

.btn-back {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.btn-back:hover {
  color: var(--cyan);
}

/* Hero — mobile first, fluid */
.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding:
    max(5.5rem, calc(env(safe-area-inset-top, 0px) + 4.25rem))
    max(var(--page-pad-x), env(safe-area-inset-right, 0px))
    max(3rem, env(safe-area-inset-bottom, 0px))
    max(var(--page-pad-x), env(safe-area-inset-left, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: min(100svh, 52rem);
  min-height: min(100dvh, 52rem);
  background: linear-gradient(160deg, #0a0a0a, #111827 55%, #0a0a0a);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 58rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2.2vw, 1.6rem);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__orb--cyan {
  top: clamp(1rem, 6vw, 2.5rem);
  left: clamp(2%, 6vw, 8%);
  width: clamp(5.5rem, 22vw, 13.75rem);
  height: clamp(5.5rem, 22vw, 13.75rem);
  background: var(--cyan);
  filter: blur(clamp(2.5rem, 8vw, 5.5rem));
  opacity: 0.55;
}

.hero__orb--magenta {
  bottom: clamp(0.5rem, 3vw, 1rem);
  right: clamp(2%, 6vw, 10%);
  width: clamp(6.5rem, 26vw, 16.25rem);
  height: clamp(6.5rem, 26vw, 16.25rem);
  background: var(--magenta);
  filter: blur(clamp(3rem, 9vw, 6.5rem));
  opacity: 0.5;
}

.hero__orb--yellow {
  top: 28%;
  right: clamp(12%, 22vw, 28%);
  width: clamp(4rem, 16vw, 10rem);
  height: clamp(4rem, 16vw, 10rem);
  background: var(--yellow);
  filter: blur(clamp(2.5rem, 8vw, 6rem));
  opacity: 0.28;
}

.hero__glass {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  max-width: min(100%, 22rem);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(36, 232, 68, 0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--green);
  color: var(--green);
  font-weight: 700;
  font-size: clamp(0.6875rem, 0.62rem + 0.35vw, 0.8125rem);
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-wrap: balance;
  animation: glowPulse 2.4s ease-in-out infinite;
}

.hero h1 {
  margin: 0;
  width: 100%;
  max-width: 14ch;
  font-size: clamp(2.125rem, 1.1rem + 6.5vw, 5.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  overflow-wrap: anywhere;
}

.hero h1 .accent-yellow { color: var(--yellow); }
.hero h1 .accent-magenta { color: var(--magenta); }

.hero__lead {
  margin: 0;
  width: 100%;
  max-width: 28rem;
  padding-inline: 0.25rem;
  font-size: clamp(0.9375rem, 0.88rem + 0.35vw, 1.25rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  max-width: min(100%, 22.5rem);
  margin-top: 0.15rem;
}

.hero__actions .btn-primary,
.hero__actions .btn-secondary {
  width: 100%;
  justify-content: center;
  white-space: normal;
  text-align: center;
  min-height: var(--touch);
  padding-inline: 1.1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--touch);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  text-align: center;
}

.btn-primary {
  background: rgba(1, 172, 237, 0.85);
  backdrop-filter: blur(6px);
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 28px rgba(1, 172, 237, 0.45);
}

.btn-primary:hover {
  color: var(--bg);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1.5px solid var(--magenta);
}

.btn-secondary:hover {
  color: #fff;
}

/* Marquee */
.marquee {
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}

.marquee__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Catalog — mobile first */
.catalog {
  position: relative;
  padding: var(--section-pad-y) var(--page-pad-x);
  background: var(--bg-light);
  overflow: hidden;
}

.catalog__deco {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  max-width: 45vw;
}

.catalog__deco--tr {
  top: -40px;
  right: -50px;
  width: 200px;
  height: 200px;
  transform: rotate(12deg);
}

.catalog__deco--bl {
  bottom: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  opacity: 0.05;
  transform: rotate(-18deg) scaleX(-1);
}

.catalog__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.catalog__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.catalog__head h2,
.promos h2,
.process h2,
.quote-cta h2,
.faq h2,
.social h2 {
  margin: 0;
  font-size: clamp(26px, 7vw, 42px);
  font-weight: 800;
}

.catalog__head h2 { color: var(--text-dark); }
.catalog__head h2 span { color: var(--cyan); }

.catalog__head p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
  max-width: 100%;
  line-height: 1.45;
}

.catalog__carousel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog__nav {
  display: none;
}

.catalog__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
}

.catalog__grid--featured,
.catalog__grid--full {
  grid-template-columns: 1fr;
}

.catalog__more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.catalog__more-btn {
  width: 100%;
  max-width: 360px;
  color: var(--text-dark);
  border-color: var(--magenta);
  background: #fff;
}

.catalog__more-btn:hover {
  color: var(--magenta);
}

.catalog__head--page {
  margin-bottom: 28px;
}

.catalog--page {
  padding-top: 40px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.header-actions .btn-back {
  font-size: 13px;
}

@font-face {
  font-family: "Armageda Wide";
  src: url("../assets/ArmagedaWide.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Catalog LP hero — estructura tipo tape + marca */
.catalog-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.55) 45%, rgba(10, 10, 10, 0.78) 100%),
    url("../assets/e0d6767e18c27efcf84f2a8ee7192090.jpg") center / cover no-repeat;
  min-height: 72svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 72px 0 64px;
}

.catalog-hero__tape {
  position: absolute;
  left: -20%;
  width: 140%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.04);
  border-top: 2px dashed rgba(255, 255, 255, 0.35);
  border-bottom: 2px dashed rgba(255, 255, 255, 0.35);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.catalog-hero__tape--top {
  top: 18%;
  transform: rotate(-7deg);
}

.catalog-hero__tape--bottom {
  bottom: 16%;
  transform: rotate(7deg);
}

.catalog-hero__tape-track {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  animation: marquee 28s linear infinite;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #fff;
  width: max-content;
}

.catalog-hero__tape--bottom .catalog-hero__tape-track {
  animation-direction: reverse;
  animation-duration: 32s;
}

.catalog-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.catalog-hero__dot--cyan { background: var(--cyan); }
.catalog-hero__dot--magenta { background: var(--magenta); }
.catalog-hero__dot--yellow { background: var(--yellow); }
.catalog-hero__dot--green { background: var(--green); }

.catalog-hero__stage {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 var(--page-pad-x);
  max-width: 640px;
}

.catalog-hero__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 300px);
  opacity: 0.06;
  transform: translate(-50%, -54%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  filter: invert(1) brightness(1.2);
}

.catalog-hero__spark {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.85;
  z-index: 1;
  animation: glowPulse 2.8s ease-in-out infinite;
}

.catalog-hero__spark--1 {
  top: 8%;
  right: 8%;
  background: var(--cyan);
}

.catalog-hero__spark--2 {
  bottom: 18%;
  left: 6%;
  width: 9px;
  height: 9px;
  background: var(--magenta);
  animation-delay: 0.6s;
}

.catalog-hero__spark--3 {
  top: 22%;
  left: 14%;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  animation-delay: 1.2s;
}

.catalog-hero__title {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.95;
  gap: 4px;
}

.catalog-hero__title-main {
  font-family: "Armageda Wide", var(--font);
  font-size: clamp(42px, 14vw, 92px);
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.02em;
}

.catalog-hero__title-accent {
  font-family: var(--font);
  font-size: clamp(34px, 11vw, 72px);
  font-weight: 900;
  color: var(--magenta);
  letter-spacing: -0.02em;
}

.catalog-hero__lead {
  position: relative;
  z-index: 1;
  margin: 4px 0 8px;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.catalog-hero__cta {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 280px;
  margin-top: 4px;
}

.catalog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.08);
}

.catalog-card__media {
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 170px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.catalog-card__media--photo {
  background: #111;
  padding: 0;
}

.catalog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.catalog-card__media span {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: rgba(10, 10, 10, 0.55);
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 999px;
}

.catalog-card__dot {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.catalog-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.catalog-card__body h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.catalog-card__body p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(10, 10, 10, 0.6);
  line-height: 1.45;
}

.catalog-card__body a {
  margin-top: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.catalog-card__toggle {
  margin-top: 10px;
  align-self: flex-start;
  background: none;
  border: 1.5px solid rgba(10, 10, 10, 0.15);
  border-radius: 999px;
  padding: 8px 14px;
  min-height: 40px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
}

.catalog-card__modelos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.catalog-card__modelos[hidden] {
  display: none !important;
}

.catalog-modelo {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
}

.catalog-modelo__media {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.catalog-modelo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.catalog-modelo__media span {
  font-size: 10px;
  color: rgba(10, 10, 10, 0.4);
}

.catalog-modelo__info strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
}

.catalog-modelo__info p {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(10, 10, 10, 0.55);
  line-height: 1.35;
}

.catalog-card__modelos-cta {
  margin-top: 4px !important;
  font-size: 13px !important;
}

.catalog__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.catalog__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

/* Promos */
.promos {
  padding: var(--section-pad-y) var(--page-pad-x);
  background: var(--bg-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.promos__inner,
.process__inner,
.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.promos h2 { color: #fff; margin-bottom: 8px; }
.promos h2 span { color: var(--yellow); }

.promos > .promos__inner > p,
.section-lead {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.45;
}

.promos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.promo-card {
  border-radius: var(--radius);
  padding: 26px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.promo-card__tag {
  align-self: flex-start;
  color: var(--bg);
  font-weight: 800;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
}

.promo-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.promo-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}

.promo-card a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

/* Process */
.process {
  position: relative;
  padding: var(--section-pad-y) var(--page-pad-x);
  background: var(--bg-light);
  overflow: hidden;
}

.process__deco {
  display: none;
}

.process h2 {
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
}

.process h2 span { color: var(--cyan); }

.process .section-lead {
  color: var(--muted-dark);
  text-align: center;
  margin-bottom: 28px;
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.process-step__n {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--bg);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}

.process-step p {
  margin: 0;
  font-size: 14px;
  color: rgba(10, 10, 10, 0.6);
  line-height: 1.5;
  font-weight: 500;
}

/* Quote CTA */
.quote-cta {
  position: relative;
  padding: 64px var(--page-pad-x);
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}

.quote-cta__frame {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 3px;
  border-radius: 28px;
  background: conic-gradient(from 200deg, #01aced, #ea038c, #fff000, #24e844, #01aced);
}

.quote-cta__inner {
  background: var(--bg);
  border-radius: 24px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.quote-cta h2 { color: #fff; }
.quote-cta h2 span { color: var(--yellow); }

.quote-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 440px;
}

.quote-cta__btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  min-height: var(--touch);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.quote-cta__btn:hover {
  color: #fff;
}

/* FAQ */
.faq {
  padding: var(--section-pad-y) var(--page-pad-x);
  background: var(--bg-light);
}

.faq__inner {
  max-width: 760px;
}

.faq h2 {
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 36px;
}

.faq h2 span { color: var(--magenta); }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.faq-item__btn {
  width: 100%;
  text-align: left;
  padding: 16px;
  min-height: var(--touch);
  background: none;
  border: none;
  color: var(--text-dark);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item__icon {
  color: var(--cyan);
  font-size: 20px;
  font-weight: 800;
}

.faq-item__answer {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(10, 10, 10, 0.6);
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

/* Social */
.social {
  padding: var(--section-pad-y) var(--page-pad-x);
  max-width: 1200px;
  margin: 0 auto;
}

.social__head {
  text-align: center;
  margin-bottom: 24px;
}

.social h2 { color: #fff; margin-bottom: 10px; }
.social h2 span { color: var(--cyan); }

.social__head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.social__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
  justify-items: center;
}

.social__embed {
  width: 100%;
  max-width: 325px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}

.social__embed .tiktok-embed {
  margin: 0 !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.social__placeholder {
  aspect-ratio: 1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social__placeholder span {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.social__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.social__link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  min-height: var(--touch);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  width: 100%;
}

.social__link--fb { border: 1.5px solid var(--cyan); }
.social__link--ig { border: 1.5px solid var(--magenta); }
.social__link--tt { border: 1.5px solid var(--yellow); }

.social__link:hover {
  color: #fff;
}

/* Footer */
.site-footer {
  padding: 40px var(--page-pad-x) 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.site-footer img {
  height: 44px;
  width: auto;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.site-footer__links a:hover {
  color: var(--cyan);
}

.site-footer__links span {
  font-weight: 600;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12.5px;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom));
  right: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--touch);
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--bg);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 6px 24px rgba(36, 232, 68, 0.4);
  animation: floatY 3s ease-in-out infinite;
}

.wa-float:hover {
  color: var(--bg);
}

/* Cotizador page */
.quote-page {
  padding: 40px var(--page-pad-x) 110px;
  max-width: 760px;
  margin: 0 auto;
}

.quote-page__head {
  text-align: center;
  margin-bottom: 44px;
}

.quote-page__head h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
}

.quote-page__head h1 span { color: var(--green); }

.quote-page__head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.wizard {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 18px;
  position: relative;
  min-height: 280px;
}

.wizard__progress {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.wizard__progress.is-visible {
  display: flex;
}

.wizard__progress span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
}

.wizard__reset {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
}

.wizard__panel {
  display: none;
}

.wizard__panel.is-active {
  display: block;
}

.wizard__title {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.wizard__eyebrow {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
}

.wizard__question {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.wizard__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.wizard__grid--opts {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.wizard__grid--design {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.wiz-option {
  cursor: pointer;
  text-align: left;
  padding: 18px;
  border-radius: 14px;
  border: 1.5px solid;
  background: transparent;
  color: #fff;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.15s, color 0.15s;
}

.wiz-option span:last-child {
  font-weight: 700;
  font-size: 15px;
}

.wiz-option__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.wiz-choice {
  cursor: pointer;
  padding: 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: var(--bg);
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.15s, color 0.15s;
}

.wiz-choice:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

.wiz-choice--design {
  cursor: pointer;
  padding: 18px;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
}

.wizard__back {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
}

/* Libreta form — simple */
.libreta-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.libreta-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.libreta-label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.libreta-radios,
.libreta-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.libreta-radios label,
.libreta-checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  min-height: var(--touch);
  padding: 4px 0;
}

.libreta-radios input,
.libreta-checks input {
  accent-color: var(--magenta);
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
}

.libreta-field select,
.libreta-form__stickers-qty select {
  width: 100%;
  max-width: 100%;
  min-height: var(--touch);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: var(--bg);
  color: #fff;
  font-family: inherit;
  font-size: 16px; /* evita zoom iOS */
}

.libreta-field select option {
  background: #141414;
  color: #fff;
}

.libreta-form__other {
  margin-top: 4px;
  width: 100%;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: var(--bg);
  color: #fff;
  font-size: 14px;
}

.libreta-form__other::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.libreta-form__stickers-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 26px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.libreta-form__stickers-qty select {
  width: 80px;
  max-width: none;
  padding: 8px 10px;
}

/* Barra fija de precio */
.price-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px var(--page-pad-x);
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 240, 0, 0.35);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
}

.price-bar[hidden] {
  display: none !important;
}

.price-bar__label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.price-bar__total {
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
}

body.has-price-bar {
  padding-bottom: 88px;
}

body.has-price-bar .wa-float {
  bottom: 88px;
}

.wizard__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.wizard__fields input {
  padding: 14px 16px;
  min-height: var(--touch);
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: var(--bg);
  color: #fff;
  font-size: 16px;
}

.wizard__fields input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.wizard__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.wizard__submit {
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: var(--yellow);
  color: var(--bg);
  font-weight: 800;
  font-size: 15px;
}

.wizard__submit:disabled {
  opacity: 0.5;
  cursor: default;
}

.summary__label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.summary__title {
  margin: 0 0 22px;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
}

.summary__box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--bg);
  border-radius: 14px;
}

.summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.summary__row span:last-child {
  color: #fff;
  font-weight: 600;
}

.summary__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 6px 0;
}

.summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.summary__total span:last-child {
  color: var(--yellow);
}

.summary__note {
  margin: 0 0 20px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.summary__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.summary__wa {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--green);
  color: var(--bg);
  font-weight: 800;
  font-size: 15px;
}

.summary__wa:hover {
  color: var(--bg);
}

.summary__new {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  padding: 16px 22px;
  border-radius: 999px;
}

/* Responsive — mobile first (min-width) */
@media (min-width: 480px) {
  .promos__grid {
    grid-template-columns: 1fr;
  }

  .social__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    justify-items: center;
  }

  .social__embed {
    max-width: 100%;
  }
}

@media (min-width: 640px) {
  :root {
    --page-pad-x: 24px;
    --section-pad-y: 72px;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: min(100%, 34rem);
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-secondary,
  .btn-primary,
  .btn-secondary {
    width: auto;
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-secondary {
    flex: 1 1 auto;
    min-width: min(100%, 11.5rem);
  }

  .catalog__grid--featured,
  .catalog__grid--full {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .social__links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social__link {
    width: auto;
  }

  .site-footer__links {
    flex-direction: row;
    gap: 20px;
  }

  .catalog__more-btn {
    width: auto;
  }

  .quote-cta__btn {
    width: auto;
  }
}

@media (min-width: 900px) {
  :root {
    --page-pad-x: 28px;
    --section-pad-y: 80px;
  }

  .site-header {
    padding: 14px var(--page-pad-x);
    gap: 16px;
  }

  .btn-cta {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero {
    padding-block: clamp(5rem, 8vw, 6.5rem) clamp(4rem, 7vw, 6.25rem);
  }

  .hero__orb--cyan {
    filter: blur(5.5rem);
  }

  .hero__orb--magenta {
    filter: blur(6.5rem);
  }

  .hero__orb--yellow {
    filter: blur(6rem);
  }

  .hero__badge {
    padding: 0.5rem 1.1rem;
  }

  .catalog__head {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 36px;
  }

  .catalog__head p {
    max-width: 420px;
    font-size: 15px;
  }

  .catalog__deco {
    opacity: 0.09;
    max-width: none;
  }

  .catalog__deco--tr {
    width: 320px;
    height: 320px;
  }

  .catalog__deco--bl {
    width: 260px;
    height: 260px;
    opacity: 0.08;
  }

  .process__deco {
    display: block;
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
  }

  .process__deco--tr {
    top: -40px;
    right: -60px;
    width: 340px;
    transform: rotate(15deg);
  }

  .process__deco--bl {
    bottom: -60px;
    left: -70px;
    width: 300px;
    opacity: 0.07;
    transform: rotate(200deg);
  }

  .catalog__grid--featured {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .catalog__grid--full {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

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

  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .social__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .quote-cta {
    padding: 110px var(--page-pad-x);
  }

  .quote-cta__frame {
    padding: 4px;
    border-radius: 36px;
  }

  .quote-cta__inner {
    border-radius: 32px;
    padding: 56px 40px;
  }

  .catalog-hero {
    min-height: 78svh;
    padding: 96px 0 88px;
  }

  .catalog-hero__tape--top {
    top: 20%;
    transform: rotate(-8deg);
  }

  .catalog-hero__tape--bottom {
    bottom: 18%;
    transform: rotate(8deg);
  }

  .catalog-hero__tape-track {
    font-size: 15px;
    gap: 16px;
  }

  .catalog-hero__lead {
    max-width: 36ch;
    font-size: 16px;
  }

  .catalog-hero__cta {
    width: auto;
  }

  .catalog-hero__watermark {
    width: min(52vw, 420px);
    opacity: 0.05;
  }

  .wizard {
    padding: 36px 30px;
    border-radius: 24px;
    min-height: 340px;
  }

  .quote-page {
    padding: 70px var(--page-pad-x) 100px;
  }

  .site-footer {
    padding: 56px var(--page-pad-x) 40px;
  }

  .wa-float {
    bottom: 24px;
    right: 24px;
    padding: 16px 22px;
  }

  .price-bar {
    padding: 16px 28px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
}

@media (min-width: 1100px) {
  .catalog__grid--full {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge,
  .wa-float,
  .marquee__track {
    animation: none;
  }
}

/* Hero: pantallas bajas / landscape móvil */
@media (max-height: 560px) {
  .hero {
    min-height: auto;
    padding-block: 4.5rem 2.5rem;
  }

  .hero__inner {
    gap: 0.65rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vh, 2.75rem);
  }
}

@media (max-width: 359px) {
  .hero__badge {
    max-width: 100%;
    border-radius: 1rem;
  }

  .hero__actions {
    max-width: 100%;
  }
}

.admin-login {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}

.admin-login[hidden],
#admin-app[hidden] {
  display: none !important;
}

.admin-login__card {
  width: 100%;
  max-width: 420px;
  padding: 28px 22px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-login__card h1 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.admin-login__card > p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.admin-login__form {
  padding: 0;
  border: none;
  background: transparent;
}

.header-actions .admin-link-btn {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  min-height: 40px;
}


.admin-main {
  padding: 28px var(--page-pad-x) 80px;
  max-width: 960px;
  margin: 0 auto;
}

.admin-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 800;
}

.admin-hero h1 span {
  color: var(--yellow);
}

.admin-hero p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.admin-status {
  margin-top: 12px !important;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
}

.admin-status--ok {
  border-color: rgba(36, 232, 68, 0.45);
  color: var(--green);
}

.admin-status--error {
  border-color: rgba(234, 3, 140, 0.5);
  color: #ff7ac2;
}

.admin-section {
  margin-top: 32px;
}

.admin-section__head h2 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.admin-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.admin-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-card__media {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
}

.admin-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.admin-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 8px;
}

.admin-card__body h3 {
  margin: 0;
  font-size: 15px;
  color: #fff;
}

.admin-card__body p {
  margin: 6px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.admin-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.admin-card__top-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.admin-link-btn--danger {
  color: #ff6ba8;
}

.admin-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.admin-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.admin-upload {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  cursor: pointer;
}

.admin-upload input {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.admin-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  min-height: var(--touch);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: var(--bg);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
}

.admin-form textarea {
  min-height: 96px;
  resize: vertical;
}

.admin-form .admin-check {
  flex-direction: row;
  min-height: var(--touch);
}

.admin-empty {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.5;
}

.admin-edit-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 12px 0;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-edit-form[hidden] {
  display: none !important;
}

.admin-edit-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.admin-edit-form input,
.admin-edit-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: var(--bg);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}

.admin-edit-form textarea {
  min-height: 84px;
  resize: vertical;
}

.admin-edit-form .admin-check {
  flex-direction: row;
  align-items: center;
}

.admin-edit-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

@media (min-width: 700px) {
  .admin-edit-form {
    grid-template-columns: 1fr 1fr;
  }

  .admin-edit-form .admin-form__full {
    grid-column: 1 / -1;
  }
}

.admin-modelos {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-modelos__head h4 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.admin-modelos__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.admin-modelos__empty {
  margin: 0 0 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.admin-modelo {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
}

.admin-modelo__media {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: #0a0a0a;
}

.admin-modelo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.admin-modelo__body strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.admin-modelo__body p {
  margin: 2px 0 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.admin-modelo__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.admin-modelo-form {
  display: grid;
  gap: 8px;
}

.admin-modelo-form input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: var(--bg);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}

.admin-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.admin-link-btn--accent {
  color: var(--yellow);
  min-height: 40px;
}

@media (min-width: 700px) {
  .admin-list {
    grid-template-columns: 1fr;
  }

  .admin-card {
    grid-template-columns: 120px 1fr;
  }

  .admin-card__media {
    width: 120px;
    height: 120px;
  }

  .admin-form {
    grid-template-columns: 1fr 1fr;
  }

  .admin-form__full,
  .admin-form .wizard__submit {
    grid-column: 1 / -1;
  }

  .admin-modelo-form {
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
  }
}


