@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
  --black: #030303;
  --black-soft: #08080a;
  --panel: #0d0d11;
  --panel-light: #141419;
  --text: #f8f8fb;
  --muted: #a8a7b0;
  --gold-deep: #a86b12;
  --gold-medium: #d6a83d;
  --gold-pale: #fff0ae;
  --gold: #e8c56f;
  --gold-light: #ffe6a8;
  --line: rgba(255, 255, 255, 0.13);
  --gradient: linear-gradient(135deg, #8d5a12, #d9aa3f 52%, #fff0ae);
  --gradient-warm: linear-gradient(135deg, #8d5a12, #e8c56f 52%, #fff0ae);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --display: "Space Grotesk", "Segoe UI", sans-serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --content: 1180px;
  --gallery-content: 1500px;
  --header-height: 73px;
  --pointer-x: 50vw;
  --pointer-y: 18vh;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-deep) var(--black);
  background: var(--black);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 6%, rgba(232, 197, 111, 0.16), transparent 27rem),
    radial-gradient(circle at 88% 24%, rgba(217, 170, 63, 0.13), transparent 30rem),
    linear-gradient(180deg, #030303, #070608 48%, #030303);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: radial-gradient(circle 16rem at var(--pointer-x) var(--pointer-y), rgba(232, 197, 111, 0.1), transparent 68%);
  content: "";
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 300ms ease;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-pale);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0.15rem 0.7rem;
  color: var(--text);
  background: #030303;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), var(--gold-medium), transparent);
  content: "";
  opacity: 0.58;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}

.brand img {
  width: 182px;
  height: 66px;
  object-fit: contain;
}

.header-actions {
  position: relative;
  z-index: 103;
  display: flex;
  align-items: center;
  order: 3;
  gap: 0.42rem;
  margin-left: auto;
}

.menu-toggle,
.header-whatsapp,
.icon-button,
.floating-whatsapp {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold-light);
  background:
    linear-gradient(#09090c, #09090c) padding-box,
    var(--gradient) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(232, 197, 111, 0);
  cursor: pointer;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
}

.header-whatsapp {
  width: 46px;
  height: 46px;
  color: var(--gold-light);
  background:
    linear-gradient(#09090c, #09090c) padding-box,
    var(--gradient) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 18px rgba(232, 197, 111, 0.18);
  font-size: 1.25rem;
}

.header-whatsapp__label {
  display: none;
}

.menu-toggle:hover,
.header-whatsapp:hover,
.icon-button:hover,
.floating-whatsapp:hover {
  box-shadow: 0 0 25px rgba(232, 197, 111, 0.38), 0 0 50px rgba(217, 170, 63, 0.2);
  transform: translateY(-2px);
}

.header-whatsapp:hover,
.floating-whatsapp:hover {
  color: #fff0ae;
  box-shadow: 0 0 25px rgba(232, 197, 111, 0.45), 0 0 52px rgba(255, 230, 168, 0.16);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
  transition: transform 200ms ease, top 200ms ease, opacity 160ms ease;
}

.menu-icon {
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.nav-open .menu-icon {
  background: transparent;
}

.nav-open .menu-icon::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.nav-open .menu-icon::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
  position: fixed;
  z-index: 101;
  top: calc(var(--header-height) + 0.45rem);
  right: 0.65rem;
  left: 0.65rem;
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - var(--header-height) - 1.1rem);
  padding: 0.48rem;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  background:
    linear-gradient(#050506, #050506) padding-box,
    linear-gradient(135deg, rgba(141, 90, 18, 0.95), rgba(217, 170, 63, 0.78), rgba(255, 240, 174, 0.7)) border-box;
  border: 1px solid transparent;
  border-radius: 1rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.82), 0 0 35px rgba(232, 197, 111, 0.14);
  transform: translateY(-0.5rem) scale(0.985);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 220ms ease, visibility 220ms;
}

.nav-open .site-nav {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.68rem 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 220ms ease, box-shadow 220ms ease, transform 180ms ease;
}

.site-nav a:last-child {
  border-bottom-color: transparent;
}

.site-nav a::after {
  margin-left: auto;
  color: var(--gold-medium);
  content: "↗";
  font-size: 0.78rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: #fff;
  background: linear-gradient(90deg, rgba(141, 90, 18, 0.24), rgba(232, 197, 111, 0.13), transparent);
  box-shadow: inset 3px 0 0 var(--gold), 0 0 22px rgba(232, 197, 111, 0.1);
  transform: translateX(2px);
}

.page-hero {
  position: relative;
  min-height: min(760px, calc(100svh - var(--header-height)));
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 78%, rgba(232, 197, 111, 0.18), transparent 25rem),
    radial-gradient(circle at 73% 18%, rgba(217, 170, 63, 0.15), transparent 28rem),
    #030303;
}

.page-hero--image {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 48%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent 68%),
    var(--section-hero-image) var(--section-hero-position, center) / cover no-repeat;
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-hero::before {
  right: -12rem;
  bottom: -14rem;
  width: 34rem;
  height: 34rem;
  box-shadow: 0 0 0 5rem rgba(232, 197, 111, 0.025), 0 0 0 10rem rgba(217, 170, 63, 0.018);
  animation: orbitGlow 9s ease-in-out infinite alternate;
}

.page-hero::after {
  top: 8%;
  right: 9%;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold-light);
  border: 0;
  box-shadow: 0 0 22px var(--gold-light), -9rem 4rem 0 -2px rgba(217, 170, 63, 0.9), -9rem 4rem 24px rgba(232, 197, 111, 0.7);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding-block: clamp(3.7rem, 12vw, 7rem) clamp(3rem, 9vw, 5.5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.15rem;
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.4rem;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  box-shadow: 0 0 12px rgba(232, 197, 111, 0.6);
  content: "";
}

.page-hero h1,
.text-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 13.5vw, 7.2rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-wrap: balance;
}

.page-hero h1 {
  background: linear-gradient(120deg, #fff 5%, #fff5d1 54%, #e8c56f 78%, #fff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.page-hero__bottom {
  display: grid;
  gap: 1.75rem;
}

.page-hero__copy {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.3rem;
  overflow: hidden;
  color: var(--text);
  background:
    linear-gradient(#09090c, #09090c) padding-box,
    linear-gradient(135deg, #8d5a12, #d9aa3f 48%, #fff0ae) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 0 0 rgba(232, 197, 111, 0);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 250ms ease, color 220ms ease;
}

.button::before {
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 180deg, transparent, rgba(255, 255, 255, 0.22), transparent 28%);
  content: "";
  opacity: 0;
  transform: rotate(-30deg);
  transition: opacity 220ms ease, transform 500ms ease;
}

.button > span,
.button {
  isolation: isolate;
}

.button:hover {
  color: #fff;
  box-shadow: 0 0 25px rgba(232, 197, 111, 0.46), 0 0 60px rgba(255, 230, 168, 0.18);
  transform: translateY(-3px);
}

.button:hover::before {
  opacity: 1;
  transform: rotate(15deg);
}

.button--gold {
  color: #130d03;
  background:
    linear-gradient(135deg, #8d5a12 0%, #d7a83d 38%, #fff0ae 72%, #b97918 100%) padding-box,
    linear-gradient(135deg, #8d5a12, #fff0ae) border-box;
  box-shadow: 0 0 24px rgba(232, 197, 111, 0.3);
  animation: pulseGlow 3.2s ease-in-out infinite;
}

.button--gold:hover {
  color: #130d03;
}

.button--ghost {
  background:
    linear-gradient(rgba(3, 3, 3, 0.82), rgba(3, 3, 3, 0.82)) padding-box,
    linear-gradient(135deg, #8d5a12, #d9aa3f 48%, #fff0ae) border-box;
}

.button--dark {
  background:
    linear-gradient(#09090c, #09090c) padding-box,
    linear-gradient(135deg, #8d5a12, #d9aa3f 48%, #fff0ae) border-box;
}

.proof-strip {
  color: var(--text);
  background: #070709;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof {
  min-width: 0;
  padding: 1.15rem 0.35rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}

.proof:last-child {
  border-right: 0;
}

.proof strong,
.proof span {
  display: block;
}

.proof strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(1.15rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 18px rgba(232, 197, 111, 0.25);
}

.proof span {
  margin-top: 0.38rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-slider {
  position: absolute;
  inset: 0;
  min-height: 0;
  overflow: hidden;
  background: #050505;
  border: 0;
}

.page-hero__slider {
  height: 100%;
}

.home-slider__track,
.home-slide {
  position: absolute;
  inset: 0;
}

.home-slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity 650ms ease, visibility 650ms;
}

.home-slide.is-active {
  z-index: 0;
  visibility: visible;
  opacity: 1;
}

.home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
}

.home-slide:nth-child(2) img {
  object-position: center 20%;
}

.home-slide:nth-child(3) img {
  object-position: center 24%;
}

.home-slide.is-active img {
  animation: sliderZoom 4.8s ease-out both;
}

.page-hero--slider {
  touch-action: pan-y;
}

.home-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.9)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.52) 70%, rgba(0, 0, 0, 0.66));
}

.home-slider__ui {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 1rem;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.home-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  pointer-events: auto;
}

.home-slider__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  background: rgba(217, 170, 63, 0.42);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.home-slider__dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, #8d5a12, #d9aa3f, #fff0ae);
  box-shadow: 0 0 18px rgba(232, 197, 111, 0.58);
}

.reels-view {
  height: 100dvh;
  overflow: hidden;
  background: #000;
}

.reels-view::after {
  display: none;
}

.reels-page {
  height: calc(100dvh - var(--header-height));
  overflow-x: hidden;
  overflow-y: auto;
  background: #000;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}

.reels-page::-webkit-scrollbar {
  display: none;
}

.reels-feed {
  background: #000;
}

.reel-card {
  position: relative;
  display: grid;
  width: 100%;
  height: calc(100dvh - var(--header-height));
  place-items: center;
  overflow: hidden;
  background: #000;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.reel-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: cover;
}

.reels-parallax {
  position: relative;
  display: grid;
  min-height: clamp(24rem, 72dvh, 46rem);
  place-items: center;
  overflow: hidden;
  background: #030303;
  isolation: isolate;
  scroll-snap-align: start;
}

.reels-parallax::before {
  position: absolute;
  z-index: -1;
  inset: -12%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.8)),
    url("INICIO/00.jpg") center 36% / cover no-repeat;
  content: "";
  transform: translate3d(0, var(--parallax-offset, 0), 0) scale(1.12);
  will-change: transform;
}

.reels-parallax__inner {
  display: grid;
  place-items: center;
}

.reels-page .site-footer {
  scroll-snap-align: end;
}

.page-hero--image .hero-actions .button,
.page-hero--slider .hero-actions .button {
  min-height: 36px;
  padding: 0.55rem 0.9rem;
  font-size: 0.63rem;
}

.page-hero--slider .hero-actions {
  width: 100%;
  justify-content: flex-end;
  justify-self: end;
}

.reel-audio-toggle {
  position: absolute;
  z-index: 3;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: var(--gold-light);
  background:
    linear-gradient(rgba(9, 9, 12, 0.9), rgba(9, 9, 12, 0.9)) padding-box,
    var(--gradient) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(232, 197, 111, 0.24);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: color 180ms ease, box-shadow 220ms ease, transform 200ms ease;
}

.reel-audio-toggle:hover,
.reel-audio-toggle:focus-visible,
.reel-audio-toggle[aria-pressed="true"] {
  color: #fff0ae;
  box-shadow: 0 0 25px rgba(232, 197, 111, 0.48), 0 0 48px rgba(255, 230, 168, 0.14);
}

.reel-audio-toggle:hover {
  transform: translateY(-2px);
}

.portfolio-section {
  padding-block: clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 4% 22%, rgba(232, 197, 111, 0.09), transparent 25rem),
    #030303;
}

.portfolio-section > .shell {
  width: min(100% - 4px, var(--gallery-content));
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-inline: 0.85rem;
}

.section-heading h2,
.content-title {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 9.5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.section-heading__meta {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #030303;
}

.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  color: var(--text);
  background: linear-gradient(110deg, #0b0b0e 8%, #17171d 18%, #0b0b0e 33%);
  background-size: 200% 100%;
  border: 0;
  border-radius: 1px;
  cursor: zoom-in;
  content-visibility: auto;
  contain-intrinsic-size: 280px 350px;
  animation: galleryIn 480ms both;
  animation-delay: min(calc(var(--index) * 24ms), 260ms);
}

.gallery-item.is-landscape {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 300ms ease;
}

.gallery-item::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 197, 111, 0), rgba(217, 170, 63, 0));
  border: 1px solid transparent;
  content: "";
  pointer-events: none;
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.gallery-item::after {
  display: none;
}

.gallery-item__meta {
  position: absolute;
  z-index: 3;
  right: 0.6rem;
  bottom: 0.55rem;
  left: 0.6rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  pointer-events: none;
}

.gallery-item__arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--gold-light);
  background: #09090c;
  border: 1px solid rgba(232, 197, 111, 0.68);
  border-radius: 50%;
  box-shadow: 0 0 17px rgba(232, 197, 111, 0.42);
  font-size: 0.9rem;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.045);
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  background: linear-gradient(135deg, rgba(232, 197, 111, 0.1), rgba(255, 240, 174, 0.025));
  border-color: rgba(232, 197, 111, 0.78);
  box-shadow: inset 0 0 26px rgba(232, 197, 111, 0.16);
}

.gallery-noscript {
  padding: 1rem;
  color: var(--muted);
  border: 1px solid var(--line);
}

.portfolio-cta {
  display: grid;
  gap: 1.25rem;
  margin: 2.4rem 0.85rem 0;
  padding: 1.4rem;
  color: var(--text);
  background:
    linear-gradient(#0a0a0d, #0a0a0d) padding-box,
    var(--gradient) border-box;
  border: 1px solid transparent;
  border-radius: 1rem;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.42), 0 0 35px rgba(232, 197, 111, 0.1);
}

.portfolio-cta p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 5.4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.08;
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--text);
  background: rgba(2, 2, 3, 0.985);
  border: 0;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.98);
}

.lightbox__layout {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100dvh;
  min-height: 100%;
  padding: 0.6rem;
}

.lightbox__header,
.lightbox__footer {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  min-height: 54px;
}

.lightbox__counter,
.lightbox__caption,
.lightbox__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lightbox__caption {
  max-width: calc(100% - 7.5rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lightbox__hint {
  position: absolute;
  z-index: 4;
  bottom: 0.8rem;
  left: 50%;
  padding: 0.5rem 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(8, 8, 10, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%);
  transition: opacity 250ms ease;
}

.lightbox__stage.is-zoomed .lightbox__hint {
  opacity: 0;
}

.lightbox__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
  user-select: none;
}

.lightbox__stage.is-zoomed {
  cursor: grab;
}

.lightbox__stage.is-dragging {
  cursor: grabbing;
}

.lightbox__image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 8rem);
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform;
  transition: opacity 180ms ease, transform 230ms ease;
}

.lightbox__stage.is-gesturing .lightbox__image {
  transition: opacity 180ms ease;
}

.lightbox__image.is-loaded {
  opacity: 1;
}

.lightbox__controls {
  display: flex;
  gap: 0.45rem;
}

.icon-button {
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--gold-light);
  background:
    linear-gradient(#09090c, #09090c) padding-box,
    var(--gradient) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 20px rgba(232, 197, 111, 0.24);
  font-size: 1rem;
}

.icon-button:hover {
  color: #fff0ae;
  box-shadow: 0 0 25px rgba(232, 197, 111, 0.48), 0 0 52px rgba(255, 230, 168, 0.16);
}

.text-hero {
  position: relative;
  display: grid;
  min-height: clamp(30rem, 78svh, 48rem);
  align-items: end;
  overflow: hidden;
  padding-block: clamp(5rem, 13vw, 8rem);
  color: var(--text);
  background: #030303;
}

.text-hero--image::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 65%),
    var(--hero-image) var(--hero-position, center) / cover no-repeat;
  content: "";
  transform: scale(1.025);
}

.text-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(232, 197, 111, 0.21), rgba(217, 170, 63, 0.08) 38%, transparent 68%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(232, 197, 111, 0.025);
  content: "";
  animation: orbitGlow 8s ease-in-out infinite alternate;
}

.text-hero .shell {
  position: relative;
  z-index: 2;
}

.text-hero p:last-child {
  max-width: 40rem;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
}

.story,
.contact-section {
  padding-block: clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 93% 18%, rgba(217, 170, 63, 0.08), transparent 25rem),
    #030303;
}

.story-grid {
  display: grid;
  gap: 2.4rem;
}

.story-intro {
  display: grid;
  align-content: start;
  gap: 1.5rem;
}

.story-lead {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 7vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.about-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  opacity: 0;
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.46);
  clip-path: inset(12% 0 12% 0 round 1rem);
  transform: translateY(2rem) rotate(-1.5deg) scale(0.97);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1), clip-path 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(141, 90, 18, 0.12), transparent 42%, rgba(255, 240, 174, 0.12));
  content: "";
  pointer-events: none;
}

.about-portrait.is-visible {
  opacity: 1;
  clip-path: inset(0 round 1rem);
  transform: translateY(0) rotate(0) scale(1);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-portrait.is-visible img {
  transform: scale(1.035);
}

.story-copy {
  display: grid;
  gap: 1.1rem;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.values-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 3rem;
}

.about-parallax {
  position: relative;
  display: grid;
  min-height: clamp(21rem, 62vw, 38rem);
  align-items: end;
  margin: 3rem 0 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76)),
    url("INICIO/00.jpg") center calc(50% + var(--parallax-offset, 0px)) / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.48);
}

.about-parallax::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(141, 90, 18, 0.12), transparent 48%, rgba(255, 240, 174, 0.12));
  content: "";
  pointer-events: none;
}

.about-parallax figcaption {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1.25rem;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.05rem, 3vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.value-card,
.training,
.contact-card,
.social-panel,
.social-card,
.map-card {
  background:
    linear-gradient(#0c0c0f, #0c0c0f) padding-box,
    linear-gradient(135deg, rgba(141, 90, 18, 0.58), rgba(217, 170, 63, 0.24), rgba(255, 240, 174, 0.48)) border-box;
  border: 1px solid transparent;
}

.value-card {
  padding: 1.3rem;
  border-radius: 0.9rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.value-card:hover {
  box-shadow: 0 0 32px rgba(232, 197, 111, 0.12);
  transform: translateY(-4px);
}

.value-card__number {
  color: var(--gold-medium);
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 20px rgba(232, 197, 111, 0.35);
}

.value-card h2 {
  margin: 1.25rem 0 0.4rem;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.training {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 45px rgba(232, 197, 111, 0.08);
}

.training h2 {
  margin: 0 0 0.9rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 6vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.training p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-intro > p {
  max-width: 36rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 0.6rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.15rem 0.75rem;
  min-height: 78px;
  align-items: center;
  padding: 0.9rem;
  border-radius: 0.85rem;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 220ms ease;
  background:
    linear-gradient(#0c0c0f, #0c0c0f) padding-box,
    linear-gradient(135deg, #8d5a12, #d9aa3f 48%, #fff0ae) border-box;
}

.contact-card:hover {
  box-shadow: 0 0 28px rgba(232, 197, 111, 0.24);
  transform: translateY(-3px);
}

.contact-card__icon {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold-light);
  background: #09090c;
  border: 1px solid rgba(232, 197, 111, 0.68);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(232, 197, 111, 0.3);
  font-size: 1.05rem;
}

.contact-card small {
  align-self: end;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  align-self: start;
  overflow-wrap: anywhere;
  font-size: 0.91rem;
}

.map-card {
  overflow: hidden;
  min-height: 440px;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: grayscale(0.38) invert(0.88) hue-rotate(170deg) brightness(0.75) contrast(1.15);
}

.social-panel {
  margin-top: 3rem;
  padding: 1.4rem;
  border-radius: 1rem;
}

.social-panel h2 {
  margin: 0 0 1.2rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 54px;
  padding: 0.55rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 220ms ease;
  background:
    linear-gradient(#0c0c0f, #0c0c0f) padding-box,
    linear-gradient(135deg, #8d5a12, #d9aa3f 48%, #fff0ae) border-box;
}

.social-card:hover {
  box-shadow: 0 0 26px rgba(232, 197, 111, 0.24);
  transform: translateY(-2px);
}

.social-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--gold-light);
  background: #09090c;
  border: 1px solid rgba(232, 197, 111, 0.68);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(232, 197, 111, 0.3);
  font-size: 1rem;
  line-height: 1;
}

.site-footer {
  position: relative;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 18%, rgba(232, 197, 111, 0.12), transparent 22rem),
    #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), var(--gold-medium), var(--gold-pale), transparent);
  content: "";
}

.footer-main {
  display: grid;
  gap: 1.7rem;
  padding-block: 2.1rem 1.7rem;
}

.footer-brand img {
  width: 207px;
  height: 104px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 28rem;
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
}

.footer-contact {
  display: grid;
  gap: 0.42rem;
  font-size: 0.77rem;
}

.footer-contact a,
.footer-contact address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-contact__icon {
  display: inline-block;
  width: 1.15rem;
  margin-right: 0.35rem;
  color: var(--gold-light);
  text-align: center;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-top: 0.7rem;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--gold-light);
  background:
    linear-gradient(#09090c, #09090c) padding-box,
    var(--gradient) border-box;
  border: 1px solid transparent;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 220ms ease;
}

.footer-socials a:hover {
  box-shadow: 0 0 23px rgba(232, 197, 111, 0.46);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-block: 0.9rem;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  z-index: 120;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: 1rem;
  width: 52px;
  height: 52px;
  color: var(--gold-light);
  background:
    linear-gradient(#09090c, #09090c) padding-box,
    var(--gradient) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 20px rgba(232, 197, 111, 0.24);
  font-size: 1.35rem;
  animation: whatsappFloat 3s ease-in-out infinite;
}

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

@keyframes sliderZoom {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1%, -1%, 0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(232, 197, 111, 0.26), 0 0 45px rgba(255, 230, 168, 0.09);
  }
  50% {
    box-shadow: 0 0 30px rgba(232, 197, 111, 0.52), 0 0 65px rgba(255, 230, 168, 0.2);
  }
}

@keyframes orbitGlow {
  from {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(-1.5rem, -1rem, 0) scale(1.04);
  }
}

@keyframes whatsappFloat {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(232, 197, 111, 0.24);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 32px rgba(232, 197, 111, 0.46);
    transform: translateY(-4px);
  }
}

@media (min-width: 480px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .site-header {
    padding-inline: max(1.2rem, calc((100vw - var(--content)) / 2));
  }

  .reel-video {
    width: auto;
    max-width: min(100%, 34rem);
    aspect-ratio: 9 / 16;
    box-shadow: 0 0 70px rgba(232, 197, 111, 0.1);
  }

  .reel-audio-toggle {
    right: max(1rem, calc((100vw - 34rem) / 2 + 1rem));
  }

  .page-hero__bottom,
  .section-heading,
  .story-grid,
  .footer-main {
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  }

  .hero-actions {
    justify-content: flex-end;
    align-content: end;
  }

  .section-heading__meta {
    justify-self: end;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portfolio-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 1.8rem;
  }

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

  .contact-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
    align-items: stretch;
  }

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

  .footer-main {
    align-items: end;
  }

  .footer-contact {
    justify-items: end;
    text-align: right;
  }
}

@media (min-width: 920px) {
  :root {
    --header-height: 92px;
  }

  .site-header {
    gap: 1rem;
    padding-block: 0.25rem;
  }

  .brand img {
    height: 78px;
  }

  .menu-toggle {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }

  .header-whatsapp {
    display: flex;
    width: auto;
    height: 44px;
    gap: 0.45rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    font-size: 1rem;
  }

  .header-whatsapp__label {
    display: inline;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    order: 2;
    gap: 0.16rem;
    max-height: none;
    margin-left: auto;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .site-nav a {
    min-height: 42px;
    padding: 0.58rem 0.68rem;
    border: 0;
    border-radius: 999px;
    font-size: 0.67rem;
    letter-spacing: 0.07em;
  }

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

  .site-nav a[aria-current="page"],
  .site-nav a:hover {
    background:
      linear-gradient(#0a0a0d, #0a0a0d) padding-box,
      var(--gradient) border-box;
    border: 1px solid transparent;
    box-shadow: 0 0 22px rgba(232, 197, 111, 0.14);
    transform: translateY(-1px);
  }

  .page-hero__slider {
    min-height: 0;
  }

  .home-slider__ui {
    display: flex;
  }

  .lightbox__layout {
    padding: 0.9rem 1.25rem;
  }
}

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

@media (hover: none) {
  .gallery-item__meta {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
