/* ==========================================================
   ANDREAS ZANETTI
   PALETA OFICIAL
========================================================== */

:root {
  /* FONDOS */

  --bg: #070914;
  --bg-mid: #0b0f25;
  --bg-light: #111632;

  /* DORADOS */

  --gold: #d6a84f;
  --gold-light: #f2c76e;
  --gold-dark: #9c742e;

  /* MORADOS */

  --purple: #6d3bef;
  --purple-deep: #2a174f;

  /* CYAN CONTROLADO */

  --cyan: #35c9dc;

  /* TEXTO */

  --fg: #ffffff;
  --muted: #b7b7c5;

  /* BORDES */

  --border: rgba(214, 168, 79, 0.22);

  /* DEGRADADOS */

  --grad: linear-gradient(135deg, #d6a84f 0%, #f2c76e 50%, #d6a84f 100%);

  --grad-artistic: linear-gradient(135deg, #6d3bef, #d6a84f);

  --maxw: 1180px;
}

/* ==========================================================
   BASE
========================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(109, 59, 239, 0.08),
      transparent 35%
    ),
    var(--bg);

  color: var(--fg);

  font-family: "Inter", system-ui, sans-serif;

  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Bebas Neue", "Inter", sans-serif;

  font-weight: 400;

  letter-spacing: 0.02em;

  line-height: 1.05;
}

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

.muted {
  color: var(--muted);
}

.hidden {
  display: none !important;
}

.grad {
  background: var(--grad);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}

/* ==========================================================
   NAVEGACIÓN
========================================================== */

.nav {
  position: fixed;

  top: 1rem;

  left: 50%;

  transform: translateX(-50%);

  z-index: 50;

  display: flex;

  align-items: center;

  gap: 1.5rem;

  width: calc(100% - 2rem);

  max-width: 940px;

  padding: 0.55rem 0.6rem 0.55rem 1.5rem;

  background: rgba(7, 9, 20, 0.76);

  backdrop-filter: blur(18px) saturate(145%);

  -webkit-backdrop-filter: blur(18px) saturate(145%);

  border: 1px solid rgba(214, 168, 79, 0.48);

  border-radius: 999px;

  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 25px rgba(214, 168, 79, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.nav__brand {
  font-family: "Bebas Neue", sans-serif;

  font-size: 1.45rem;

  letter-spacing: 0.12em;

  color: #fff;

  transition: color 0.25s;

  white-space: nowrap;
}

.nav__brand:hover {
  color: var(--gold-light);
}

.nav__links {
  display: flex;

  gap: 1.6rem;

  margin: 0 auto;
}

.nav__links a {
  position: relative;

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

  font-size: 0.9rem;

  font-weight: 500;

  transition: color 0.25s;
}

.nav__links a::after {
  content: "";

  position: absolute;

  left: 0;

  right: 0;

  bottom: -5px;

  height: 2px;

  background: var(--grad);

  border-radius: 2px;

  transform: scaleX(0);

  transition: transform 0.25s ease;
}

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

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  background: var(--grad);

  color: #070914;

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  padding: 0.6rem 1.4rem;

  border-radius: 999px;

  white-space: nowrap;

  box-shadow: 0 5px 22px rgba(214, 168, 79, 0.28);

  transition:
    transform 0.15s,
    box-shadow 0.2s;
}

.nav__cta:hover {
  transform: translateY(-1px);

  box-shadow: 0 7px 30px rgba(242, 199, 110, 0.42);
}

.nav__toggle {
  display: none;

  background: none;

  border: 0;

  color: var(--gold-light);

  font-size: 1.5rem;

  cursor: pointer;

  line-height: 1;
}

/* ==========================================================
   BOTONES
========================================================== */

.btn {
  display: inline-block;

  padding: 0.9rem 2.2rem;

  border-radius: 4px;

  font-size: 0.8rem;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  cursor: pointer;

  transition:
    transform 0.15s,
    opacity 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

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

.btn--primary {
  background: var(--grad);

  color: var(--bg);

  border: 0;

  box-shadow: 0 5px 25px rgba(214, 168, 79, 0.32);
}

.btn--primary:hover {
  box-shadow: 0 8px 35px rgba(242, 199, 110, 0.42);
}

.btn--ghost {
  background: rgba(7, 9, 20, 0.25);

  color: #fff;

  border: 1px solid rgba(214, 168, 79, 0.65);

  font-weight: 500;
}

.btn--ghost:hover {
  background: rgba(214, 168, 79, 0.1);

  border-color: var(--gold-light);
}
/* ==========================================================
   HERO
========================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* FOTO GRANDE DE FONDO */

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: saturate(1.04) contrast(1.03);
  overflow: hidden;
}

.hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-embed {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video-embed iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* CAPA OSCURA SOBRE LA FOTO */

.hero__overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      55% 55% at 80% 35%,
      rgba(42, 23, 79, 0.35),
      transparent 70%
    ),
    linear-gradient(
      90deg,
      rgba(7, 9, 20, 0.92) 0%,
      rgba(7, 9, 20, 0.68) 40%,
      rgba(7, 9, 20, 0.35) 72%,
      rgba(7, 9, 20, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 9, 20, 0.15) 0%,
      rgba(7, 9, 20, 0.22) 55%,
      rgba(7, 9, 20, 0.95) 92%,
      var(--bg) 100%
    );
}

/* CONTENEDOR GENERAL */

.hero__inner {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: var(--maxw);

  margin: 0 auto;

  padding: 6.5rem 1.5rem 2rem;

  display: flex;
  flex-direction: column;
}

/* ==========================================================
   LOGO GRANDE ARRIBA
========================================================== */
.hero__logo-area {
  width: 100%;
  min-height: clamp(190px, 28vw, 330px);

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

  margin-top: -1rem;
  margin-bottom: 1.3rem;
}

.hero__logo {
  display: block;

  width: min(75%, 840px);
  height: auto;

  margin: 0 auto;

  transform: translateY(-30px);

  filter: drop-shadow(0 10px 35px rgba(0, 0, 0, 0.65));
}

/* ==========================================================
   PARTE INFERIOR:
   TEXTO IZQUIERDA / VIDEO DERECHA
========================================================== */
.hero__main {
  width: 100%;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.78fr);

  gap: 3rem;

  align-items: center;
}

/* ==========================================================
   LADO IZQUIERDO
========================================================== */

.hero__content {
  min-width: 0;
}

.hero__roles {
  display: flex;
  flex-wrap: wrap;

  gap: 0.6rem;

  margin: 0 0 1.4rem;
}

.role-tag {
  margin: 0;

  font-size: 0.7rem;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  font-weight: 600;

  padding: 0.42rem 1rem;

  border: 1px solid rgba(214, 168, 79, 0.65);

  border-radius: 999px;

  color: #fff;

  background: rgba(7, 9, 20, 0.58);

  backdrop-filter: blur(8px);
}

.hero__tagline {
  max-width: 590px;

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

  font-size: clamp(1.05rem, 1.8vw, 1.28rem);

  margin: 0 0 2rem;

  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__content .hero__cta {
  width: 100%;

  justify-content: center;
}

/* ==========================================================
   LADO DERECHO: VIDEO
========================================================== */
.hero__featured {
  position: relative;

  width: 100%;

  max-width: 520px;

  min-width: 0;

  margin: 0 auto;
}

.hero__featured-video {
  position: relative;

  width: 100%;

  min-height: 220px;

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

  border-radius: 16px;

  padding: 5px;

  background: linear-gradient(
    135deg,
    rgba(214, 168, 79, 0.25),
    rgba(7, 9, 20, 0.9)
  );

  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.6),
    0 0 35px rgba(214, 168, 79, 0.18),
    inset 0 0 20px rgba(242, 199, 110, 0.06);
}

/* LÍNEA DECORATIVA DORADA */

.hero__featured-video::before {
  content: "";

  position: absolute;

  top: -9px;

  left: 12%;

  width: 76%;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-light),
    transparent
  );

  box-shadow: 0 0 12px rgba(242, 199, 110, 0.65);
}

.hero__featured-video .video {
  width: 100%;

  margin: 0;

  border: 0;

  border-radius: 10px;

  box-shadow: none;
}

.video--hero-featured {
  margin: 0;
}

.video--hero-featured iframe {
  aspect-ratio: 16 / 9;
}

.video--hero-featured .video__title {
  background: var(--bg-mid);

  border-top: 1px solid rgba(214, 168, 79, 0.25);
}

/* ==========================================================
   SCROLL
========================================================== */

.hero__scroll {
  margin-top: 2.5rem;

  font-size: 0.7rem;

  letter-spacing: 0.3em;

  text-transform: uppercase;

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

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.75rem;
}

.hero__scroll::after {
  content: "";

  width: 1px;

  height: 40px;

  background: linear-gradient(var(--gold-light), transparent);

  transform-origin: top;

  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ==========================================================
   RESPONSIVE HERO
========================================================== */
@media (max-width: 1000px) {
  .hero__main {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 0.9fr);

    gap: 2rem;
  }

  .hero__logo {
    width: min(90%, 720px);
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 6rem 1.25rem 3rem;
  }

  .hero__logo-area {
    height: 150px;

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

    margin-top: -1rem;
    margin-bottom: -3rem;

    overflow: visible;
  }

  .hero__logo {
    width: min(95%, 650px);

    object-position: center;

    transform: translateY(-10px) scale(1.45);

    transform-origin: center center;
  }

  .hero__main {
    grid-template-columns: 1fr;

    gap: 2.5rem;
  }

  .hero__content {
    text-align: center;
  }

  .hero__roles {
    justify-content: center;
  }

  .hero__tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__featured {
    width: 100%;

    max-width: 650px;

    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .hero__inner {
    padding: 5.2rem 1rem 3rem;
  }

  .hero__logo-area {
    height: 120px;

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

    margin-top: -1.5rem;
    margin-bottom: -2rem;

    overflow: visible;
  }

  .hero__logo {
    width: 100%;

    object-position: center;

    transform: translateY(-20px) scale(1.3);

    transform-origin: center center;
  }

  .hero__featured-video {
    padding: 3px;

    border-width: 1px;
  }
}

/* ==========================================================
   GESTIÓN
========================================================== */

.section {
  max-width: var(--maxw);

  margin: 0 auto;

  padding: 6rem 1.5rem;
}

.section--alt {
  background:
    radial-gradient(circle at 15% 20%, rgba(42, 23, 79, 0.25), transparent 38%),
    var(--bg-mid);

  max-width: none;
}

.section--alt > * {
  max-width: var(--maxw);

  margin-left: auto;

  margin-right: auto;
}

.eyebrow {
  color: var(--gold-light);

  text-transform: uppercase;

  letter-spacing: 0.25em;

  font-family: "Inter", sans-serif;

  font-weight: 600;

  font-size: 0.8rem;

  margin: 0 0 0.75rem;
}

.eyebrow--center {
  text-align: center;
}

.section__title {
  font-size: clamp(2rem, 6vw, 3.5rem);

  margin: 0 0 2.5rem;

  text-align: center;
}

/* ==========================================================
   SOBRE MÍ
========================================================== */

.section--about {
  padding-top: 5rem;
}

.about {
  display: grid;

  grid-template-columns:
    1.1fr
    0.9fr;

  gap: 4rem;

  align-items: center;
}

.about .eyebrow {
  text-align: left;
}

.about__lines {
  list-style: none;

  padding: 0;

  margin: 0 0 1.5rem;
}

.about__lines li {
  font-family: "Bebas Neue", sans-serif;

  font-size: clamp(1.75rem, 4vw, 2.75rem);

  line-height: 1.1;
}

.about__lines li:nth-child(2) {
  color: var(--gold-light);
}

.about__text p {
  color: var(--muted);

  font-size: 1.05rem;
}

/* MARCO DORADO DE FOTO */

.about__media {
  position: relative;

  padding: 7px;

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

  border-radius: 18px;

  background: linear-gradient(
    145deg,
    rgba(242, 199, 110, 0.14),
    rgba(7, 9, 20, 0.8)
  );

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(214, 168, 79, 0.16);
}

.about__media::before {
  content: "";

  position: absolute;

  inset: 13px -10px -10px 13px;

  border: 1px solid rgba(214, 168, 79, 0.35);

  border-radius: 18px;

  z-index: -1;
}

.about__media img {
  width: 100%;

  display: block;

  border-radius: 11px;

  aspect-ratio: 3 / 4;

  object-fit: cover;
}

/* ==========================================================
   CARDS
========================================================== */

.cards {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));

  gap: 1.5rem;
}

.card {
  background: linear-gradient(
    145deg,
    rgba(42, 23, 79, 0.6) 0%,
    rgba(11, 15, 37, 0.96) 65%
  );

  border: 1px solid rgba(214, 168, 79, 0.22);

  border-radius: 16px;

  padding: 2rem 1.75rem;

  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);

  border-color: var(--gold);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card__icon {
  font-size: 2rem;

  margin-bottom: 0.75rem;
}

.card h3 {
  color: var(--gold-light);

  font-size: 1.6rem;

  margin: 0 0 0.5rem;
}

.card p {
  color: var(--muted);

  font-size: 0.95rem;

  margin: 0;
}

/* ==========================================================
   GALERÍA
========================================================== */

.gallery-section {
  padding: 6rem 0;

  overflow: hidden;
}

.gallery-header {
  max-width: var(--maxw);

  margin: 0 auto 3rem;

  padding: 0 1.5rem;
}

.marquee {
  overflow: hidden;

  width: 100%;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );

  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.marquee + .marquee {
  margin-top: 1.5rem;
}

.marquee__track {
  display: flex;

  gap: 1.5rem;

  width: max-content;

  animation: marquee 60s linear infinite;
}

.marquee--reverse .marquee__track {
  animation-duration: 80s;

  animation-direction: reverse;
}

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

/* MARCOS DORADOS EN TODAS LAS FOTOS */

.marquee__track img {
  height: 260px;

  width: auto;

  padding: 4px;

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

  border-radius: 14px;

  object-fit: cover;

  cursor: pointer;

  background: var(--bg);

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

  filter: brightness(0.92);

  transition:
    filter 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}

.marquee__track img:hover {
  filter: brightness(1.08);

  transform: scale(1.025);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(214, 168, 79, 0.22);
}

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

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

/* ==========================================================
   LIGHTBOX
========================================================== */

.lightbox {
  position: fixed;

  inset: 0;

  z-index: 100;

  background: rgba(7, 9, 20, 0.95);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 2rem;

  backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: 92vw;

  max-height: 88vh;

  padding: 5px;

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

  border-radius: 10px;

  background: var(--bg);

  box-shadow:
    0 25px 90px rgba(0, 0, 0, 0.7),
    0 0 35px rgba(214, 168, 79, 0.2);
}

.lightbox__close {
  position: absolute;

  top: 1rem;

  right: 1.5rem;

  background: none;

  border: 0;

  color: var(--gold-light);

  font-size: 2.75rem;

  line-height: 1;

  cursor: pointer;
}

/* ==========================================================
   VIDEOS
========================================================== */

.videos {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 2rem;
}

/* MARCO DORADO DE VIDEOS */

.video {
  border-radius: 15px;

  overflow: hidden;

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

  padding: 4px;

  background: linear-gradient(145deg, rgba(214, 168, 79, 0.24), #000);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(214, 168, 79, 0.1);
}

.video iframe {
  width: 100%;

  aspect-ratio: 16 / 9;

  border: 0;

  display: block;

  border-radius: 8px;
}

.video__title {
  padding: 0.85rem 1rem 0.75rem;

  font-family: "Bebas Neue", sans-serif;

  font-size: 1.25rem;

  letter-spacing: 0.05em;

  color: var(--gold-light);
}

/* ==========================================================
   EVENTOS
========================================================== */

.events {
  list-style: none;

  padding: 0;

  margin: 0;

  max-width: 820px;

  margin-inline: auto;
}

.event {
  display: flex;

  flex-wrap: wrap;

  align-items: baseline;

  gap: 0.5rem 1.25rem;

  padding: 1.25rem 0;

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

.event__date {
  color: var(--gold-light);

  font-weight: 600;

  min-width: 130px;
}

.event__title {
  font-weight: 600;
}

.event__where {
  color: var(--muted);
}

.event__actions {
  margin-left: auto;

  display: flex;

  flex-wrap: wrap;

  gap: 0.5rem;

  align-items: center;
}

.event__ticket {
  border: 1px solid var(--gold);

  color: var(--gold-light);

  padding: 0.35rem 1rem;

  border-radius: 999px;

  font-size: 0.9rem;

  white-space: nowrap;
}

.event__ticket:hover {
  background: var(--gold);

  color: var(--bg);
}

.event__call {
  color: var(--muted);

  font-size: 0.9rem;

  white-space: nowrap;
}

.event__call:hover {
  color: var(--gold-light);
}

.events__empty {
  text-align: center;

  color: var(--muted);

  padding: 2rem 0;
}

/* ==========================================================
   CONTACTO
========================================================== */

.section--contact {
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(109, 59, 239, 0.15),
      transparent 40%
    ),
    linear-gradient(135deg, var(--purple-deep), var(--bg) 68%);

  max-width: none;
}

.contact {
  max-width: var(--maxw);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 3rem;

  align-items: start;
}

.contact .section__title {
  text-align: left;
}

.contact__methods {
  list-style: none;

  padding: 0;

  margin: 2rem 0 0;

  display: grid;

  gap: 1rem;
}

.contact__methods li {
  display: flex;

  flex-direction: column;
}

.contact__methods .label {
  color: var(--gold-light);

  font-size: 0.8rem;

  text-transform: uppercase;

  letter-spacing: 0.15em;
}

.contact__methods a,
.contact__methods span.value {
  font-size: 1.1rem;
}

/* FORMULARIO */

.form {
  display: grid;

  gap: 1rem;

  background: rgba(7, 9, 20, 0.7);

  padding: 2rem;

  border-radius: 16px;

  border: 1px solid rgba(214, 168, 79, 0.38);

  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
}

.form label {
  display: grid;

  gap: 0.35rem;

  font-size: 0.9rem;

  color: var(--muted);
}

.form input,
.form textarea {
  background: var(--bg-light);

  border: 1px solid rgba(214, 168, 79, 0.2);

  border-radius: 10px;

  color: var(--fg);

  padding: 0.75rem 0.9rem;

  font: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--gold);

  border-color: transparent;
}

.form .btn {
  justify-self: start;

  margin-top: 0.5rem;
}

/* ==========================================================
   FOOTER
========================================================== */

.footer {
  border-top: 1px solid var(--border);

  padding: 3.5rem 1.5rem 2rem;

  background: var(--bg-mid);
}

.footer__grid {
  max-width: var(--maxw);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    2fr
    1fr
    1fr;

  gap: 2rem;
}

.footer__brand {
  font-family: "Bebas Neue", sans-serif;

  font-size: 1.75rem;

  margin: 0 0 0.5rem;
}

.footer h4 {
  color: var(--gold-light);

  font-family: "Inter", sans-serif;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.15em;

  font-size: 0.8rem;

  margin: 0 0 1rem;
}

.footer__grid > div a {
  display: block;

  color: var(--muted);

  padding: 0.2rem 0;

  transition: color 0.2s;
}

.footer__grid > div a:hover {
  color: var(--gold-light);
}

.footer__social a {
  display: inline-block;

  margin-right: 1rem;
}

.footer__copy {
  text-align: center;

  color: var(--muted);

  margin: 3rem 0 0;

  font-size: 0.85rem;
}

/* ==========================================================
   MOVIMIENTO REDUCIDO
========================================================== */

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;

    flex-wrap: wrap;

    justify-content: center;
  }

  .hero__scroll::after {
    animation: none;
  }
}

/* ==========================================================
   RESPONSIVE TABLET
========================================================== */

@media (max-width: 1000px) {
  .hero__inner {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(340px, 0.9fr);

    column-gap: 2rem;
  }

  .hero__logo {
    width: min(100%, 500px);
  }
}

/* ==========================================================
   RESPONSIVE MÓVIL
========================================================== */

@media (max-width: 860px) {
  .nav {
    gap: 0.5rem;

    padding: 0.5rem 0.7rem 0.5rem 1.3rem;
  }

  .nav__toggle {
    display: block;

    margin-left: auto;
  }

  .nav__cta {
    display: none;
  }

  .nav__links {
    position: absolute;

    top: calc(100% + 0.6rem);

    right: 0;

    left: 0;

    flex-direction: column;

    gap: 0;

    margin: 0;

    background: rgba(7, 9, 20, 0.96);

    backdrop-filter: blur(16px) saturate(150%);

    -webkit-backdrop-filter: blur(16px) saturate(150%);

    border: 1px solid rgba(214, 168, 79, 0.48);

    border-radius: 20px;

    padding: 0.5rem 1.25rem;

    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);

    display: none;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 0.7rem 0;
  }

  .nav__links a::after {
    display: none;
  }

  /* HERO EN UNA SOLA COLUMNA */

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;

    padding: 7.5rem 1.25rem 3.5rem;

    row-gap: 2.25rem;
  }

  .hero__content {
    text-align: center;
  }

  .hero__logo {
    width: min(92%, 500px);

    margin-left: auto;

    margin-right: auto;

    object-position: center;
  }

  .hero__roles {
    justify-content: center;
  }

  .hero__tagline {
    margin-left: auto;

    margin-right: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__featured {
    width: 100%;

    max-width: 620px;

    margin: 0 auto;
  }

  .hero__scroll {
    grid-column: 1;
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .about__media {
    order: -1;
  }

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

  .contact .section__title {
    text-align: center;
  }
}

/* ==========================================================
   MÓVILES PEQUEÑOS
========================================================== */

@media (max-width: 520px) {
  .hero__inner {
    padding-left: 1rem;

    padding-right: 1rem;
  }

  .hero__logo {
    width: 100%;
  }

  .hero__featured-video {
    padding: 3px;

    border-width: 1px;
  }

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

  .marquee__track img {
    height: 210px;
  }

  .btn {
    padding: 0.85rem 1.4rem;
  }
}
