/* ───────────────────────────────────────────────
   TOKENS
   ─────────────────────────────────────────────── */
:root {
  --night: #0E1B2C;
  --sky: #74ACDF;
  --gold: #FCBF49;
  --ivory: #F7F5F0;
  --mist: #9CA3AF;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --max: 1280px;
  --pad-x: clamp(24px, 5vw, 48px);

  --ease: cubic-bezier(.2, .6, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--night);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--night);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ───────────────────────────────────────────────
   UTILS
   ─────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ───────────────────────────────────────────────
   NAV
   ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 300ms var(--ease), backdrop-filter 300ms var(--ease), border-color 300ms var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(247, 245, 240, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: rgba(14, 27, 44, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ivory);
  transition: color 300ms var(--ease);
}

.nav.is-scrolled .nav-brand {
  color: var(--night);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ivory);
  transition: color 250ms var(--ease);
}

.nav.is-scrolled .nav-links a {
  color: var(--night);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-burger {
  display: none;
}

@media (max-width: 640px) {
  .nav-inner {
    padding: 16px var(--pad-x);
  }

  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 9px;
    margin: -9px;
    border-radius: 2px;
    flex-shrink: 0;
  }

  .nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ivory);
    border-radius: 1px;
    transition: transform 260ms var(--ease), opacity 260ms var(--ease), background 300ms var(--ease);
    pointer-events: none;
  }

  .nav.is-scrolled .nav-burger span,
  .nav.is-open .nav-burger span {
    background: var(--night);
  }

  .nav.is-open .nav-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.is-open .nav-burger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.3);
  }

  .nav.is-open .nav-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(247, 245, 240, 0.97);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid rgba(14, 27, 44, 0.09);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 260ms var(--ease), transform 260ms var(--ease);
  }

  .nav.is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    display: block;
    padding: 15px var(--pad-x);
    font-size: 16px;
    color: var(--night);
    border-bottom: 1px solid rgba(14, 27, 44, 0.06);
    transition: color 200ms var(--ease), background 200ms var(--ease);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a:hover {
    color: var(--gold);
    background: rgba(14, 27, 44, 0.02);
  }
}

/* ───────────────────────────────────────────────
   HERO
   ─────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--night);
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(14, 27, 44, 0.65) 0%,
      rgba(14, 27, 44, 0.35) 60%,
      rgba(14, 27, 44, 0.55) 100%);
  z-index: 1;
}

#hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, var(--ivory) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  color: var(--ivory);
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
}

.hero-content h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ivory);
  max-width: 14ch;
  margin: 0 0 28px;
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero-subtext {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  max-width: 520px;
  color: rgba(247, 245, 240, 0.85);
  margin: 0 0 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border: 1px solid var(--ivory);
  color: var(--ivory);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 300ms var(--ease), color 300ms var(--ease), border-color 300ms var(--ease);
}

.hero-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--night);
}

.hero-cta .arrow {
  width: 16px;
  height: 16px;
  transition: transform 300ms var(--ease);
}

.hero-cta:hover .arrow {
  transform: translateX(4px);
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: rgba(247, 245, 240, 0.18);
  z-index: 3;
  overflow: hidden;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 24px;
  background: var(--ivory);
  animation: scrollHint 2.5s var(--ease) infinite;
}

@keyframes scrollHint {
  0% {
    transform: translateY(-100%);
  }

  60% {
    transform: translateY(120%);
  }

  100% {
    transform: translateY(120%);
  }
}

@media (max-width: 640px) {
  .hero-scroll-indicator {
    display: none;
  }
}

/* ───────────────────────────────────────────────
   PROBLEMA
   ─────────────────────────────────────────────── */
.problema {
  background: var(--ivory);
  padding: clamp(96px, 14vw, 160px) var(--pad-x);
}

.problema-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.problema p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--night);
  margin: 0;
}

.problema .ornament {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
}

/* ───────────────────────────────────────────────
   BENEFICIOS
   ─────────────────────────────────────────────── */
.beneficios {
  background: var(--ivory);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  border-top: 1px solid rgba(14, 27, 44, 0.07);
}

.beneficios-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.beneficio {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.beneficio-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.beneficio h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--night);
}

.beneficio p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--night);
  opacity: 0.78;
  margin: 0;
  max-width: 32ch;
}

@media (max-width: 1024px) {
  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    max-width: 520px;
  }
}

/* ───────────────────────────────────────────────
   SECTION HEADERS
   ─────────────────────────────────────────────── */
.section-head {
  max-width: var(--max);
  margin: 0 auto clamp(48px, 6vw, 72px);
  padding: 0 var(--pad-x);
}

.section-head .eyebrow {
  display: block;
  margin-bottom: 18px;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 18ch;
}

/* ───────────────────────────────────────────────
   DESTACADOS / MARQUEE
   ─────────────────────────────────────────────── */
.destacados {
  background: var(--ivory);
  padding: clamp(80px, 12vw, 140px) 0;
}

.marquee-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  padding: 40px 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(14, 27, 44, 0.04);
  box-shadow: 0 4px 12px rgba(14, 27, 44, 0.06);
  transition: transform 400ms var(--ease);
}

.marquee-item:hover {
  transform: translateY(-4px);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.marquee-item:hover img {
  transform: scale(1.04);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .marquee-item {
    width: 155px;
  }

  .marquee-track {
    gap: 12px;
  }

  .marquee-wrapper {
    padding: 24px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ───────────────────────────────────────────────
   CATÁLOGO
   ─────────────────────────────────────────────── */
.catalogo {
  background: var(--ivory);
  padding: clamp(80px, 12vw, 140px) 0 clamp(96px, 14vw, 160px);
  border-top: 1px solid rgba(14, 27, 44, 0.07);
}

.catalog-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.catalog-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(14, 27, 44, 0.04);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(14, 27, 44, 0.06);
  transition: transform 400ms ease-out, box-shadow 400ms ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}

.catalog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.catalog-card .card-meta {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
  text-shadow: 0 1px 6px rgba(14, 27, 44, 0.4);
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 27, 44, 0.35) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 300ms var(--ease);
  z-index: 1;
}

.catalog-card:hover::before,
.catalog-card:hover .card-meta {
  opacity: 1;
}

.catalog-card:hover .card-meta {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 12px;
  }

  .catalog-card .card-meta {
    font-size: 12px;
    left: 10px;
    bottom: 10px;
  }
}

@media (pointer: coarse) {
  .catalog-card {
    transition: none;
  }

  .catalog-card:hover {
    transform: none !important;
  }

  .catalog-card::before {
    opacity: 1;
  }

  .catalog-card .card-meta {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-card {
    transition: none;
  }

  .catalog-card:hover {
    transform: none !important;
  }
}

.catalog-load-more {
  display: block;
  margin: 48px auto 0;
  padding: 14px 40px;
  border: 1.5px solid rgba(14, 27, 44, 0.28);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--night);
  background: none;
  cursor: pointer;
  transition: border-color 250ms var(--ease), background 250ms var(--ease), color 250ms var(--ease);
}

.catalog-load-more:hover {
  border-color: var(--night);
  background: var(--night);
  color: var(--ivory);
}

/* ───────────────────────────────────────────────
   SOBRE NOSOTROS
   ─────────────────────────────────────────────── */
.sobre {
  background: var(--ivory);
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid rgba(14, 27, 44, 0.07);
}

.sobre-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.sobre-image {
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background:
    linear-gradient(rgba(247, 245, 240, 0.06), rgba(247, 245, 240, 0.06)),
    url("public/imagenesAux/sobrenosotros.png") center/cover;
  position: relative;
}

.sobre-image::after {
  content: "Mesa de trabajo";
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(14, 27, 44, 0.5);
}

.sobre-text .eyebrow {
  display: inline-block;
  margin-bottom: 20px;
}

.sobre-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
}

.sobre-text p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--night);
  opacity: 0.82;
  margin: 0 0 18px;
  max-width: 48ch;
}

.sobre-historia {
  margin: 24px 0 0;
  padding: 18px 20px;
  background: rgba(116, 172, 223, 0.1);
  border-left: 3px solid var(--sky);
  border-radius: 0 8px 8px 0;
  max-width: 48ch;
}

.sobre-historia-q {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--sky);
  margin: 0 0 8px !important;
}

.sobre-historia p {
  font-size: 15px;
  color: var(--night);
  margin: 0 !important;
  opacity: 0.85;
}

.sobre-meta {
  margin-top: 36px;
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(14, 27, 44, 0.12);
  padding-top: 28px;
}

.sobre-meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sobre-meta .num {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.sobre-meta .lbl {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
}

@media (max-width: 1024px) {
  .sobre-inner {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .sobre-image {
    aspect-ratio: 16/9;
  }
}

/* ───────────────────────────────────────────────
   TESTIMONIALS
   ─────────────────────────────────────────────── */
.testimonials {
  background: var(--ivory);
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid rgba(14, 27, 44, 0.07);
}

.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 var(--pad-x) 24px;
  scrollbar-width: none;
}

.testi-track::-webkit-scrollbar {
  display: none;
}

.testi-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: clamp(280px, 30vw, 380px);
  padding: 40px 36px;
  background: #FFFFFF;
  border: 1px solid rgba(14, 27, 44, 0.06);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.testi-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--night);
  margin: 0;
}

.testi-divider {
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.testi-author {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--mist);
  line-height: 1.4;
}

.testi-author strong {
  color: var(--night);
  font-weight: 500;
  display: block;
}

.testi-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  padding: 0 var(--pad-x);
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(14, 27, 44, 0.18);
  transition: background 250ms var(--ease), transform 250ms var(--ease);
  padding: 0;
  flex-shrink: 0;
}

.testi-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ───────────────────────────────────────────────
   CTA WHATSAPP
   ─────────────────────────────────────────────── */
.cta {
  background: var(--night);
  color: var(--ivory);
  padding: clamp(96px, 14vw, 160px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--ivory);
}

.cta-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(247, 245, 240, 0.75);
  margin: 0 0 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 38px;
  background: var(--gold);
  color: var(--night);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(252, 191, 73, 0.35);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
}

.cta-fineprint {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(247, 245, 240, 0.5);
  letter-spacing: 0.04em;
}

.cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ───────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────── */
.footer {
  background: var(--ivory);
  padding: 32px var(--pad-x);
  border-top: 1px solid rgba(14, 27, 44, 0.12);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--mist);
}

.footer-inner a:hover {
  color: var(--night);
}

/* ───────────────────────────────────────────────
   PERSONALIZACIÓN
   ─────────────────────────────────────────────── */
.personaliza {
  background: var(--night);
  color: var(--ivory);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  border-top: 1px solid rgba(14, 27, 44, 0.07);
}

.personaliza-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.personaliza-head {
  max-width: 640px;
  margin: 0 auto clamp(56px, 8vw, 88px);
  text-align: center;
}

.personaliza-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
}

.personaliza-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--ivory);
  margin: 0 0 24px;
}

.personaliza-intro {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(247, 245, 240, 0.68);
  margin: 0;
}

.personaliza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(247, 245, 240, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.personaliza-panel {
  padding: clamp(32px, 4vw, 52px);
  border-right: 1px solid rgba(247, 245, 240, 0.1);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.personaliza-panel:last-child {
  border-right: none;
}

.personaliza-panel--highlight {
  background: rgba(252, 191, 73, 0.05);
}

.personaliza-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.personaliza-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.personaliza-list li {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  color: rgba(247, 245, 240, 0.88);
  padding-left: 22px;
  position: relative;
}

.personaliza-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1;
}

.personaliza-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.personaliza-group-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--sky);
  margin: 0;
}

.personaliza-group p:not(.personaliza-group-title) {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 245, 240, 0.68);
  margin: 0;
}

.personaliza-hint {
  margin-top: auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(252, 191, 73, 0.82);
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .personaliza-grid {
    grid-template-columns: 1fr;
  }

  .personaliza-panel {
    border-right: none;
    border-bottom: 1px solid rgba(247, 245, 240, 0.1);
  }

  .personaliza-panel:last-child {
    border-bottom: none;
  }
}

/* ───────────────────────────────────────────────
   LIGHTBOX
   ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14, 27, 44, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

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

.lightbox-img-wrap {
  position: relative;
  max-width: 80vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transition: opacity 200ms var(--ease);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(247, 245, 240, 0.08);
  border: 1px solid rgba(247, 245, 240, 0.2);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 250ms var(--ease), transform 250ms var(--ease);
  z-index: 1001;
}

.lightbox-btn:hover {
  background: rgba(247, 245, 240, 0.18);
}

.lightbox-prev {
  left: max(24px, 4vw);
}

.lightbox-next {
  right: max(24px, 4vw);
}

.lightbox-prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.lightbox-next:hover {
  transform: translateY(-50%) translateX(2px);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(247, 245, 240, 0.08);
  border: 1px solid rgba(247, 245, 240, 0.2);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.lightbox-close:hover {
  background: rgba(247, 245, 240, 0.18);
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(247, 245, 240, 0.7);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  z-index: 1001;
}

@media (max-width: 640px) {
  .lightbox-btn {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-img,
  .lightbox-img-wrap {
    max-width: 92vw;
    max-height: 78vh;
  }
}