/* =========================================================
   CIRCO CHINO RISAS — ESTILOS PRINCIPALES
   CSS REFACTORIZADO Y OPTIMIZADO
========================================================= */

/* =========================================================
   1. VARIABLES
========================================================= */

:root {
  --black: #080808;
  --black-2: #111111;
  --surface: #171717;

  --red: #c5162e;
  --red-dark: #8e0f20;
  --red-hover: #e01a36;

  --gold: #d7ad55;
  --gold-light: #f2d28b;

  --white: #f7f4ee;
  --muted: #a9a49b;

  --text-light: #ddd;
  --text-gray: #aaa;
  --text-dark: #151515;

  --cream: #f4f1ea;

  --line: rgba(255, 255, 255, 0.1);
  --line-light: rgba(255, 255, 255, 0.15);

  --container: 1180px;
  --radius: 4px;

  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 30px 100px rgba(0, 0, 0, 0.7);
}

/* =========================================================
   2. RESET / BASE
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

/* =========================================================
   3. ELEMENTOS REUTILIZABLES
========================================================= */

.section {
  padding: 120px 0;
}

.dark-section {
  background: #0d0d0d;
}

.full {
  width: 100%;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 50px;
  padding: 0 22px;

  border: 1px solid transparent;

  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;

  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-small {
  min-height: 40px;
  padding-inline: 15px;
  background: var(--red);
  font-size: 10px;
  color: white;
}

.btn-large {
  min-height: 58px;
  padding-inline: 27px;
}

/* =========================================================
   4. PAGE LOADER
========================================================= */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;

  background: var(--black);

  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 48px;
  height: 48px;

  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;

  animation: spin 1s linear infinite;
}

.page-loader span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* =========================================================
   5. HEADER / NAVEGACIÓN
========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;

  border-bottom: 1px solid transparent;

  transition:
    background var(--transition),
    border-color var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.nav-wrap {
  height: 88px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  border: 1px solid var(--gold);

  transform: rotate(0deg);
}

.brand-mark i {
  color: var(--gold);
  font-size: 14px;
  transform: rotate(-45deg);
}

.brand strong,
.brand em {
  display: block;
  line-height: 0.9;
}

.brand strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 0.12em;
}

.brand em {
  margin-top: 4px;

  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 10px;
  letter-spacing: 0.28em;

  font-style: normal;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav > a {
  color: #ddd;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  transition: color var(--transition-fast);
}

.main-nav > a:hover {
  color: var(--gold-light);
}

.main-nav .nav-cta {
  padding: 12px 17px;

  background: var(--red);
  border: 1px solid var(--red);

  color: white;
  font-weight: 700;

  transition:
    background var(--transition-fast),
    color var(--transition-fast);
}

.main-nav .nav-cta:hover {
  background: transparent;
  color: white;
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  background: transparent;
  border: 0;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 25px;
  height: 2px;

  margin: 5px auto;

  background: white;

  transition: transform var(--transition);
}

/* =========================================================
   6. HERO
========================================================= */

.hero {
  position: relative;

  min-height: 100svh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #070707;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(0, 0, 0, 0.53) 47%,
      rgba(0, 0, 0, 0.35) 100%
    ),
    url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=2200&q=90")
      center / cover;

  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}

.hero-vignette {
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 75% 35%,
    transparent 0 15%,
    rgba(0, 0, 0, 0.5) 70%
  );
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 720px;
  padding-top: 100px;
}

.hero h1 {
  margin-top: 20px;

  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(70px, 10vw, 140px);
  line-height: 0.82;

  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero h1 span,
h2 span {
  color: var(--gold);
}

.hero p {
  max-width: 590px;
  margin: 28px 0;

  color: #ddd;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;

  margin-top: 34px;

  color: #cfcfcf;
  font-size: 12px;
}

.hero-note i {
  margin-right: 5px;
  color: var(--gold);
}

.scroll-indicator {
  position: absolute;
  right: 38px;
  bottom: 28px;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 13px;

  color: #aaa;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;

  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.scroll-indicator i {
  color: var(--gold);
}

.hero-particles::before,
.hero-particles::after {
  content: "";

  position: absolute;

  width: 2px;
  height: 2px;

  background: var(--gold);

  box-shadow:
    80px 100px var(--gold),
    230px 30px #fff,
    430px 180px var(--gold),
    650px 90px #fff,
    850px 220px var(--gold),
    1020px 70px #fff,
    1120px 320px var(--gold);

  opacity: 0.45;

  animation: floatStars 8s linear infinite;
}

.hero-particles::after {
  top: 20%;
  left: 20%;
  animation-delay: -4s;
}

/* =========================================================
   7. QUICK INFO
========================================================= */

.quick-info {
  position: relative;
  z-index: 4;

  background: var(--red);
}

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

.quick-grid > div {
  min-height: 104px;
  padding: 20px;

  display: flex;
  align-items: center;
  gap: 15px;

  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.quick-grid > div:last-child {
  border-right: 0;
}

.quick-grid i {
  color: var(--gold-light);
  font-size: 23px;
}

.quick-grid strong,
.quick-grid span {
  display: block;
}

.quick-grid strong {
  font-size: 13px;
}

.quick-grid span {
  margin-top: 3px;

  font-size: 11px;
  opacity: 0.75;
}

/* =========================================================
   8. ABOUT
========================================================= */

.about {
  background: var(--cream);
  color: #141414;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 580px;
}

.image-frame {
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-frame {
  width: 77%;
  height: 510px;
}

.floating-frame {
  position: absolute;
  right: 0;
  bottom: 0;

  width: 45%;
  height: 220px;

  border: 10px solid var(--cream);
}

.gold-stamp {
  position: absolute;
  left: 0;
  bottom: 65px;

  width: 125px;
  height: 125px;

  display: grid;
  place-items: center;
  align-content: center;

  text-align: center;

  background: rgba(8, 8, 8, 0.9);
  border: 1px solid var(--gold);

  transform: rotate(-8deg);
}

.gold-stamp span,
.gold-stamp small {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.gold-stamp strong {
  font:
    43px/0.8 "Bebas Neue",
    sans-serif;
}

.about-copy h2,
.section-heading h2,
.cta-content h2 {
  margin: 18px 0 25px;

  font:
    700 clamp(50px, 6vw, 82px) / 0.9 "Playfair Display",
    serif;
}

.about-copy p {
  max-width: 540px;
  font-size: 16px;
}

.about-copy .muted {
  margin-top: 13px;
  color: #666;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  margin-top: 42px;

  border-top: 1px solid #ccc;
}

.stats-grid div {
  padding: 22px 8px 0 0;
}

.stats-grid strong {
  display: block;

  color: var(--red);

  font:
    45px/0.9 "Bebas Neue",
    sans-serif;
}

.stats-grid strong::after {
  content: "+";
}

.stats-grid div:last-child strong::after {
  content: "%";
}

.stats-grid span {
  color: #777;

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* =========================================================
   9. SECTION HEADINGS
========================================================= */

.section-heading {
  max-width: 690px;
  margin-bottom: 55px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.dark-section .section-heading h2,
.dark-section .section-heading p {
  color: var(--white);
}

.section-heading p {
  max-width: 570px;
  color: var(--muted);
}

/* =========================================================
   10. ACTS / ESPECTÁCULOS
========================================================= */

.acts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.act-card {
  position: relative;

  min-height: 450px;

  overflow: hidden;

  background: #161616;
}

.act-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.act-card::after,
.artist-card::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
}

.act-card::after {
  top: 35%;
}

.act-card:hover img {
  transform: scale(1.08);
}

.act-card > div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
}

.act-card span,
.artist-card span,
.show-info .tag {
  color: var(--gold);

  font-size: 9px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.act-card h3 {
  margin: 7px 0;

  font:
    43px/0.9 "Bebas Neue",
    sans-serif;
}

.act-card p {
  color: #ccc;
  font-size: 12px;
}

/* =========================================================
   11. SCHEDULE / AGENDA
========================================================= */

.schedule {
  background: var(--cream);
  color: #151515;
}

.schedule .section-heading p {
  color: #666;
}

.schedule-layout {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr;
  gap: 25px;
  align-items: start;
}

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

.show-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 22px;

  padding: 20px;

  background: white;
  border: 1px solid #e4e0d8;

  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast);
}

.show-card:hover {
  transform: translateX(5px);
  border-color: #cdbb91;
}

.show-card.featured {
  border-left: 4px solid var(--red);
}

.date-box {
  padding-right: 20px;

  text-align: center;

  border-right: 1px solid #ddd;
}

.date-box strong {
  display: block;

  color: var(--red);

  font:
    55px/0.8 "Bebas Neue",
    sans-serif;
}

.date-box span {
  display: block;

  font-size: 12px;
  font-weight: 800;
}

.date-box small {
  color: #999;

  font-size: 9px;
  letter-spacing: 0.12em;
}

.show-info h3 {
  margin: 5px 0 8px;

  font:
    30px/0.9 "Playfair Display",
    serif;
}

.show-info p {
  color: #777;
  font-size: 11px;
}

.show-price {
  min-width: 100px;
  text-align: right;
}

.show-price small,
.show-price strong {
  display: block;
}

.show-price small {
  color: #999;

  font-size: 9px;
  text-transform: uppercase;
}

.show-price strong {
  margin-bottom: 8px;

  color: var(--red);

  font:
    34px "Bebas Neue",
    sans-serif;
}

.price-card {
  position: sticky;
  top: 110px;

  padding: 32px;

  background: #111;
  color: white;
}

.price-card h3 {
  margin: 10px 0 20px;

  font:
    35px "Playfair Display",
    serif;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 17px 0;

  border-bottom: 1px solid var(--line);

  font-size: 13px;
}

.price-row strong {
  color: var(--gold);
  font:
    31px "Bebas Neue",
    sans-serif;
}

.price-row.popular {
  position: relative;
}

.price-row em {
  display: block;

  margin-top: 3px;

  color: var(--red);

  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-card p {
  margin-top: 12px;

  color: #aaa;
  font-size: 10px;
}

.price-card p i {
  margin-right: 5px;
  color: var(--gold);
}

/* =========================================================
   12. VIDEO
========================================================= */

.video-banner {
  position: relative;

  min-height: 650px;

  display: grid;
  place-items: center;

  text-align: center;

  background: url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=2200&q=90")
    center / cover fixed;
}

.video-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.7);
}

.video-content {
  position: relative;
  z-index: 2;
}

.video-content h2 {
  margin: 20px 0;

  font:
    700 clamp(55px, 7vw, 90px) / 0.9 "Playfair Display",
    serif;
}

.play-btn {
  width: 90px;
  height: 90px;

  border: 1px solid var(--gold);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.35);

  cursor: pointer;

  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.play-btn i {
  margin-left: 4px;
  color: var(--gold);
}

.play-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}

.video-content p {
  margin-top: 20px;

  color: #bbb;
  font-size: 12px;
}

/* =========================================================
   13. ARTISTS
========================================================= */

.artists {
  background: var(--cream);
  color: #111;
}

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

.artist-card {
  position: relative;

  min-height: 480px;

  overflow: hidden;

  background: #111;
}

.artist-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.artist-card::after {
  top: 40%;
}

.artist-card:hover img {
  transform: scale(1.05);
}

.artist-card > div {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 2;

  color: #fff;
}

.artist-card h3 {
  margin: 7px 0;

  font:
    48px/0.9 "Playfair Display",
    serif;
}

.artist-card p {
  color: #ccc;
  font-size: 12px;
}

/* =========================================================
   14. GALLERY
========================================================= */

.gallery {
  background: #090909;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 12px;
}

.gallery-item {
  position: relative;

  padding: 0;

  overflow: hidden;

  border: 0;

  background: #111;

  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: "\f00e";

  position: absolute;
  top: 15px;
  right: 15px;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  background: rgba(0, 0, 0, 0.55);

  color: white;

  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;

  opacity: 0;

  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* =========================================================
   15. TESTIMONIALS
========================================================= */

.testimonials {
  background: var(--cream);
  color: #111;
}

.testimonial-slider {
  position: relative;

  max-width: 850px;
  margin-inline: auto;

  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-track {
  position: relative;

  flex: 1;

  min-height: 300px;
}

.testimonial {
  position: absolute;
  inset: 0;

  display: none;

  text-align: center;
  align-content: center;
  justify-items: center;
}

.testimonial.active {
  display: grid;
  animation: fadeIn 0.45s ease;
}

.quote-mark {
  height: 55px;

  color: var(--gold);

  font:
    100px/0.5 "Playfair Display",
    serif;
}

.testimonial p {
  max-width: 700px;

  font:
    700 26px/1.4 "Playfair Display",
    serif;
}

.testimonial strong {
  margin-top: 22px;

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.testimonial span {
  color: #888;
  font-size: 10px;
}

.slider-arrow {
  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  border: 1px solid #ccc;
  background: transparent;

  color: #555;

  cursor: pointer;

  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* =========================================================
   16. LOCATION
========================================================= */

.location {
  background: #0d0d0d;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.location-copy h2 {
  margin: 18px 0;

  font:
    700 clamp(50px, 6vw, 76px) / 0.9 "Playfair Display",
    serif;
}

.location-copy p {
  max-width: 520px;
  color: #aaa;
}

.contact-lines {
  display: grid;
  gap: 18px;

  margin: 30px 0;
}

.contact-lines > div {
  display: flex;
  gap: 15px;
}

.contact-lines i {
  width: 18px;
  padding-top: 4px;

  color: var(--gold);
}

.contact-lines strong,
.contact-lines span {
  display: block;
}

.contact-lines strong {
  font-size: 12px;
}

.contact-lines span {
  margin-top: 2px;

  color: #999;
  font-size: 11px;
}

.map-card {
  position: relative;

  height: 500px;

  overflow: hidden;

  border: 1px solid var(--line);
}

.map-card iframe {
  width: 100%;
  height: 100%;

  border: 0;

  filter: grayscale(1) contrast(1.1) brightness(0.75);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;

  padding: 10px 15px;

  background: #111;
  border: 1px solid var(--gold);

  box-shadow: 0 10px 30px #000;

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  transform: translate(-50%, -50%);
}

.map-pin i {
  margin-right: 7px;
  color: var(--gold);
}

/* =========================================================
   17. FINAL CTA
========================================================= */

.final-cta {
  position: relative;

  min-height: 600px;

  display: grid;
  place-items: center;

  overflow: hidden;

  text-align: center;

  background: linear-gradient(135deg, #19070b, #090909 60%, #16110a);
}

.final-cta::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 50% 50%,
    rgba(197, 22, 46, 0.2),
    transparent 50%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(60px, 8vw, 105px);
}

.cta-content p {
  max-width: 500px;
  margin: 0 auto 30px;

  color: #aaa;
}

/* =========================================================
   18. FOOTER
========================================================= */

.site-footer {
  padding: 70px 0 25px;

  background: #050505;

  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  max-width: 260px;
  margin-top: 18px;

  color: #777;
  font-size: 11px;
}

.footer-grid h4 {
  margin-bottom: 18px;

  color: var(--gold);

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;

  margin: 9px 0;

  color: #999;
  font-size: 11px;

  transition: color var(--transition-fast);
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: #fff;
}

.socials {
  display: flex !important;
  gap: 8px;
}

.socials a {
  width: 36px;
  height: 36px;

  display: grid !important;
  place-items: center;

  margin: 0 !important;

  border: 1px solid var(--line);
}

.socials a:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;

  margin-top: 55px;
  padding-top: 18px;

  border-top: 1px solid var(--line);

  color: #555;

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =========================================================
   19. LIGHTBOX / VIDEO MODAL
========================================================= */

.lightbox,
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: none;
  place-items: center;

  background: rgba(0, 0, 0, 0.96);
}

.lightbox.open,
.video-modal.open {
  display: grid;
}
/* =========================================================
   VIDEO MODAL
========================================================= */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(0, 0, 0, 0.94);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-container {
  position: relative;

  width: min(1100px, 100%);
  max-height: 90vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-video {
  display: block;

  width: 100%;
  max-height: 85vh;

  background: #000;

  border-radius: 12px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.video-close {
  position: absolute;

  top: 25px;
  right: 25px;

  z-index: 10000;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);
  color: #fff;

  font-size: 20px;

  cursor: pointer;

  backdrop-filter: blur(10px);

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.video-close:hover {
  background: #c5162e;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .video-modal {
    padding: 15px;
  }

  .video-container {
    width: 100%;
  }

  .promo-video {
    max-height: 75vh;
    border-radius: 8px;
  }

  .video-close {
    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;
  }
}

.lightbox img {
  max-width: min(88vw, 1200px);
  max-height: 84vh;

  object-fit: contain;
}

.lightbox button,
.video-modal > button {
  position: absolute;

  border: 0;
  background: transparent;

  color: white;

  font-size: 24px;

  cursor: pointer;
}

#lightboxClose,
#videoClose {
  top: 25px;
  right: 30px;
}

#lightboxPrev {
  left: 25px;
}

#lightboxNext {
  right: 25px;
}

.video-placeholder {
  width: min(100% - 40px, 700px);

  padding: 70px 100px;

  text-align: center;

  border: 1px solid var(--line);
}

.video-placeholder > i {
  color: var(--gold);
  font-size: 60px;
}

.video-placeholder h3 {
  margin: 20px 0 10px;

  font:
    38px "Playfair Display",
    serif;
}

.video-placeholder p {
  color: #888;
  font-size: 12px;
}

.video-placeholder code {
  color: var(--gold);
}

/* =========================================================
   20. WHATSAPP
========================================================= */

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;

  width: 56px;
  height: 56px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #1db954;
  color: white;

  font-size: 25px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

/* =========================================================
   21. REVEAL / ANIMACIONES
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(28px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes floatStars {
  50% {
    transform: translateY(-20px);
    opacity: 0.2;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ticketModalIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   22. MODAL DE RESERVA
========================================================= */

.ticket-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 20px;
}

.ticket-modal.open {
  display: flex;
}

.ticket-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.82);

  backdrop-filter: blur(10px);
}

.ticket-modal-content {
  position: relative;
  z-index: 2;

  width: min(100%, 680px);
  max-height: 92vh;

  overflow-y: auto;

  padding: 42px;

  background: #111;

  border: 1px solid rgba(215, 173, 85, 0.3);

  box-shadow: var(--shadow-lg);

  animation: ticketModalIn 0.35s ease;
}

.ticket-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.04);
  color: white;

  cursor: pointer;

  transition:
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.ticket-modal-close:hover {
  background: var(--red);
  border-color: var(--red);
}

.ticket-modal-header {
  padding-right: 45px;
  margin-bottom: 30px;
}

.ticket-modal-header h2 {
  margin: 12px 0;

  font:
    700 clamp(40px, 6vw, 58px) / 0.95 "Playfair Display",
    serif;
}

.ticket-modal-header h2 span {
  color: var(--gold);
}

.ticket-modal-header p {
  max-width: 520px;

  color: var(--muted);
  font-size: 13px;
}

.ticket-form {
  display: grid;
  gap: 18px;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 9px;

  padding-bottom: 10px;

  color: var(--gold);

  border-bottom: 1px solid var(--line);

  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.reservation-title {
  margin-top: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group label {
  color: #ddd;

  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.input-wrapper {
  position: relative;
}

.input-wrapper > i:first-child {
  position: absolute;
  top: 50%;
  left: 15px;

  color: var(--gold);
  font-size: 13px;

  pointer-events: none;

  transform: translateY(-50%);
}

.form-group input,
.form-group select {
  width: 100%;
  text-align: center;
  height: 50px;
  padding: 0 15px 0 15px;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  outline: none;
  color: white;
  font-family: inherit;
  font-size: 13px;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast) 0.2s ease;
}

.form-group select {
  padding-right: 42px;

  appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: #111;
  color: white;
}

.form-group input::placeholder {
  color: #666;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(215, 173, 85, 0.08);
}

.form-group small {
  color: #666;
  font-size: 9px;
}

.select-wrapper .select-arrow {
  position: absolute;
  top: 50%;
  right: 15px;

  color: #777;
  font-size: 10px;

  pointer-events: none;

  transform: translateY(-50%);
}

/* =========================================================
   23. ZONAS DE ENTRADAS
========================================================= */

.ticket-zones-group {
  margin-top: 1.5rem;
}

.ticket-zones-group > label {
  display: flex;
  align-items: center;
  gap: 0.55rem;

  margin-bottom: 0.35rem;
}

.ticket-zones-group > label i {
  color: var(--gold);
}

.ticket-help {
  display: block;

  margin-bottom: 1rem;

  color: rgba(255, 255, 255, 0.55);

  font-size: 0.78rem;
  line-height: 1.5;
}

.ticket-zones {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ticket-zone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 0.5rem 1rem;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.025)
  );

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;

  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.ticket-zone-row:hover {
  border-color: rgba(215, 173, 85, 0.4);

  background: linear-gradient(
    135deg,
    rgba(215, 173, 85, 0.08),
    rgba(255, 255, 255, 0.035)
  );

  transform: translateY(-1px);
}

.ticket-zone-row.has-tickets {
  border-color: rgba(215, 173, 85, 0.55);

  background: linear-gradient(
    135deg,
    rgba(215, 173, 85, 0.13),
    rgba(255, 255, 255, 0.035)
  );

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(215, 173, 85, 0.05);
}

.ticket-zone-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;

  min-width: 0;
}

.ticket-zone-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: rgba(215, 173, 85, 0.1);
  border: 1px solid rgba(215, 173, 85, 0.2);

  color: var(--gold);

  font-size: 1rem;

  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.ticket-zone-row:hover .ticket-zone-icon,
.ticket-zone-row.has-tickets .ticket-zone-icon {
  background: rgba(215, 173, 85, 0.18);
  color: var(--gold-light);
  transform: scale(1.04);
}

.ticket-zone-info > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;

  min-width: 0;
}

.ticket-zone-info strong {
  color: #fff;

  font-size: 0.95rem;
  font-weight: 700;
}

.ticket-zone-info span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
}

/* =========================================================
   24. CONTROLES DE CANTIDAD
========================================================= */

.ticket-zone-quantity {
  display: flex;
  align-items: center;
  gap: 0.35rem;

  flex-shrink: 0;
}

.ticket-quantity-btn {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;

  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.8);

  cursor: pointer;

  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform 0.15s ease;
}

.ticket-quantity-btn:hover {
  background: rgba(215, 173, 85, 0.15);
  border-color: rgba(215, 173, 85, 0.45);
  color: var(--gold-light);
}

.ticket-quantity-btn:active {
  transform: scale(0.92);
}

.ticket-quantity-btn i {
  font-size: 0.7rem;
}

.zone-quantity {
  width: 42px;
  height: 34px;

  padding: 0 0.25rem;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;

  background: rgba(0, 0, 0, 0.2);

  color: #fff;

  text-align: center;

  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;

  outline: none;

  appearance: textfield;

  transition:
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.zone-quantity::-webkit-inner-spin-button,
.zone-quantity::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.zone-quantity:focus {
  border-color: rgba(215, 173, 85, 0.6);
  background: rgba(215, 173, 85, 0.06);
}

/* =========================================================
   25. RESUMEN DE RESERVA
========================================================= */

.reservation-summary {
  margin-top: 1.5rem;
  padding: 1.15rem;

  display: flex;
  flex-direction: column;
  gap: 0;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.018)
  );

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;

  box-shadow: var(--shadow-md);
}

.reservation-summary > div:not(.summary-ticket-breakdown):not(.summary-total) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 0.7rem 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.reservation-summary span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
}

.reservation-summary strong {
  color: #fff;

  font-size: 0.82rem;
  font-weight: 600;

  text-align: right;
}

/* =========================================================
   26. DETALLE DE ZONAS
========================================================= */

.summary-ticket-breakdown {
  margin-top: 0.5rem;
  padding: 0.75rem 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.summary-empty {
  min-height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.38);

  font-size: 0.78rem;
  text-align: center;
}

.summary-ticket-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 0.45rem 0;
}

.summary-ticket-item + .summary-ticket-item {
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.summary-ticket-item-info {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.summary-ticket-item-icon {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: 8px;

  background: rgba(215, 173, 85, 0.1);

  color: var(--gold);

  font-size: 0.65rem;
}

.summary-ticket-item-info strong {
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
}

.summary-ticket-item-info span {
  font-size: 0.7rem;
}

.summary-ticket-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}

.summary-ticket-item-price strong {
  color: #fff;
  font-size: 0.8rem;
}

.summary-ticket-item-price span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
}

/* =========================================================
   27. TOTAL RESERVA
========================================================= */

.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 0.8rem;
  padding-top: 0.15rem;
}

.summary-total span {
  color: rgba(255, 255, 255, 0.65);

  font-size: 0.8rem;
  font-weight: 600;
}

.summary-total strong {
  color: var(--gold-light);

  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 800;
}

/* =========================================================
   28. BOTÓN DE RESERVA
========================================================= */

.ticket-submit {
  width: 100%;
  min-height: 52px;

  margin-top: 1.2rem;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;

  font-size: 11px;
}

.ticket-submit i {
  font-size: 1.1rem;
}

/* =========================================================
   29. AVISO DEL FORMULARIO
========================================================= */

.form-notice {
  max-width: 420px;

  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;

  margin: 0.8rem auto 0;

  color: rgba(255, 255, 255, 0.4);

  font-size: 0.68rem;
  line-height: 1.5;

  text-align: center;
}

.form-notice i {
  margin-top: 0.15rem;
  color: rgba(215, 173, 85, 0.7);
}

/* =========================================================
   30. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav > a {
    font-size: 10px;
  }

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

  .about-grid {
    gap: 50px;
  }
}

/* =========================================================
   31. RESPONSIVE — 820PX
========================================================= */

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-wrap {
    height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;

    display: grid;
    gap: 0;

    padding: 20px;

    background: rgba(10, 10, 10, 0.98);

    border: 1px solid var(--line);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity var(--transition-fast),
      visibility var(--transition-fast),
      transform var(--transition-fast);
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav > a {
    padding: 13px 5px;

    border-bottom: 1px solid var(--line);

    font-size: 11px;
  }

  .main-nav .nav-cta {
    margin-top: 12px;
    border: 0;

    text-align: center;
  }

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

  .quick-grid > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .quick-grid > div:nth-child(2),
  .quick-grid > div:last-child {
    border-right: 0;
  }

  .section {
    padding: 80px 0;
  }

  .about-grid,
  .schedule-layout,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 500px;
  }

  .price-card {
    position: static;
  }

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

  .location-grid {
    gap: 45px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

/* =========================================================
   32. RESPONSIVE — 600PX
========================================================= */

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero h1 {
    font-size: clamp(66px, 22vw, 100px);
  }

  .hero p {
    font-size: 14px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .scroll-indicator {
    display: none;
  }

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

  .quick-grid > div {
    border-right: 0 !important;
  }

  .about-visual {
    min-height: 430px;
  }

  .main-frame {
    width: 86%;
    height: 390px;
  }

  .floating-frame {
    width: 52%;
    height: 165px;
  }

  .gold-stamp {
    width: 95px;
    height: 95px;

    bottom: 40px;
  }

  .gold-stamp strong {
    font-size: 33px;
  }

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

  .stats-grid div:nth-child(n + 3) {
    padding-top: 18px;
  }

  .acts-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .act-card {
    min-height: 400px;
  }

  .show-card {
    grid-template-columns: 70px 1fr;
    gap: 15px;
  }

  .show-price {
    grid-column: 2;

    display: flex;
    align-items: center;
    gap: 14px;

    text-align: left;
  }

  .show-price strong {
    margin: 0;
  }

  .date-box {
    padding-right: 12px;
  }

  .date-box strong {
    font-size: 44px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .testimonial p {
    font-size: 19px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;
  }

  .map-card {
    height: 380px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .video-banner {
    min-height: 520px;
    background-attachment: scroll;
  }

  /* Modal */

  .ticket-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .ticket-modal-content {
    max-height: 94vh;
    padding: 28px 20px 22px;
  }

  .ticket-modal-header {
    margin-bottom: 22px;
  }

  .ticket-modal-header h2 {
    font-size: 42px;
  }

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

  /* Zonas */

  .ticket-zone-row {
    padding: 0.8rem;
  }

  .ticket-zone-info {
    gap: 0.6rem;
  }

  .ticket-zone-icon {
    width: 38px;
    height: 38px;

    flex-basis: 38px;
  }

  .ticket-zone-info strong {
    font-size: 0.86rem;
  }

  .ticket-zone-info span {
    font-size: 0.7rem;
  }

  .ticket-zone-quantity {
    gap: 0.25rem;
  }

  .ticket-quantity-btn {
    width: 32px;
    height: 32px;
  }

  .zone-quantity {
    width: 38px;
    height: 32px;
  }

  /* Resumen */

  .reservation-summary {
    padding: 1rem;
  }

  .summary-total strong {
    font-size: 1.2rem;
  }

  .video-placeholder {
    padding: 50px 25px;
  }
}

/* =========================================================
   33. RESPONSIVE — 420PX
========================================================= */

@media (max-width: 420px) {
  .hero h1 {
    font-size: 20vw;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand em {
    font-size: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .ticket-zone-row {
    align-items: flex-start;
  }

  .ticket-zone-info {
    flex: 1;
  }

  .ticket-zone-quantity {
    margin-top: 0.15rem;
  }

  .ticket-zone-icon {
    width: 36px;
    height: 36px;

    flex-basis: 36px;
  }

  .ticket-quantity-btn {
    width: 30px;
    height: 30px;
  }

  .zone-quantity {
    width: 34px;
    height: 30px;
  }

  .reservation-summary
    > div:not(.summary-ticket-breakdown):not(.summary-total) {
    align-items: flex-start;
  }

  .reservation-summary strong {
    max-width: 60%;
  }

  .summary-ticket-item {
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;

    width: 52px;
    height: 52px;
  }

  .lightbox img {
    max-width: 94vw;
    max-height: 80vh;
  }

  #lightboxPrev {
    left: 12px;
  }

  #lightboxNext {
    right: 12px;
  }
}

/* =========================================================
   34. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg {
    animation: none;
    transform: none;
  }
}
