:root {
  --red: #ff2b2b;
  --red-dark: #e82121;
  --black: #101010;
  --cream: #f8f3eb;
  --muted: #706b65;
  --white: #ffffff;
  --line: rgba(16,16,16,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--black);
  background: var(--cream);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 243, 235, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { width: 170px; height: auto; }
.menu { display: flex; align-items: center; gap: 34px; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.menu a { opacity: .78; transition: .25s; }
.menu a:hover { opacity: 1; }
.nav-cta { border: 1px solid var(--black); padding: 12px 20px; border-radius: 999px; }
.menu-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; }
.menu-toggle span { display:block; height:2px; background:var(--black); margin:8px 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  background: radial-gradient(circle at 85% 10%, rgba(255,255,255,.25), transparent 28%), linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  display: flex;
  align-items: center;
}
.hero-content {
  width: min(1180px, calc(100% - 80px));
  margin: auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: clamp(80px, 14vw, 170px);
  padding: 70px 0 82px;
}
.hero-logo-block { justify-self: end; text-align: right; }
.hero-logo { width: clamp(95px, 11vw, 145px); margin-left: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.hero h1 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(56px, 8.6vw, 118px);
  line-height: .82;
  letter-spacing: -.055em;
}
.hero h1 span { font-weight: 300; }
.hero h2 { margin: 14px 0 0; font-size: clamp(18px, 2.2vw, 30px); line-height: 1; font-weight: 800; letter-spacing: -.02em; }
.hero p { max-width: 880px; margin: 0; font-size: clamp(18px, 2vw, 25px); line-height: 1.45; font-weight: 400; }
.hero-bg-mark { position:absolute; right:-6vw; bottom:-8vw; font-size: 24vw; font-weight:800; opacity:.045; letter-spacing:-.08em; }

.section { width: min(1180px, calc(100% - 40px)); margin: auto; padding: clamp(70px, 10vw, 125px) 0; }
.section-kicker { color: var(--red); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; margin-bottom: 18px; }
.intro-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 6vw, 90px); align-items:end; }
.intro h2, .gallery-section h2, .visit h2 { margin:0; font-size: clamp(36px, 6vw, 74px); line-height:.96; letter-spacing:-.055em; }
.intro p, .section-header p { margin:0; color:var(--muted); font-size:19px; line-height:1.7; }
.section-header { display:flex; justify-content:space-between; gap:30px; align-items:end; margin-bottom:36px; }
.section-header p { max-width:390px; }

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

.gallery-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #ddd;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  filter: saturate(.95) contrast(1.04);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.28), transparent 58%);
  opacity: 0;
  transition: .35s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(16,16,16,.12);
}

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

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

/* Ya no necesitamos estos tamaños especiales */
.featured,
.tall {
  grid-column: auto;
  grid-row: auto;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-card {
    border-radius: 20px;
  }
}


.allies-section {
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.allies-inner {
  padding-top: clamp(70px, 9vw, 110px);
  padding-bottom: clamp(70px, 9vw, 110px);
}
.allies-header {
  margin-bottom: 44px;
}
.allies-header h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: .98;
  letter-spacing: -.055em;
}
.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 22px 0;
}
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(270deg, #fff, transparent); }
.logo-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
  will-change: transform;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.logo-item {
  flex: 0 0 245px;
  height: 126px;
  display: grid;
  place-items: center;
  padding: 24px 30px;
  border: 1px solid rgba(16,16,16,.08);
  border-radius: 28px;
  background: #fbfaf7;
  box-shadow: 0 18px 45px rgba(16,16,16,.045);
}
.logo-item img {
  width: 100%;
  max-height: 76px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  opacity: .82;
  transition: .25s ease;
}
.logo-item:hover img {
  opacity: 1;
  transform: translateY(-2px);
}
@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

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

.visit { display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--line); border-bottom:1px solid var(--line); gap:30px; }
.button { background:var(--black); color:#fff; padding:18px 26px; border-radius:999px; font-weight:800; }
.contact-card { background:#fff; border-radius:32px; padding:46px; display:flex; justify-content:space-between; gap:24px; align-items:center; box-shadow: 0 24px 70px rgba(16,16,16,.08); }
.contact-card p { margin:0; color:var(--muted); font-size:18px; }
.contact-card a { color:var(--red); font-size: clamp(24px, 4vw, 48px); font-weight:800; letter-spacing:-.04em; }
footer { padding:32px 20px; text-align:center; color:var(--muted); border-top:1px solid var(--line); }

.lightbox { position:fixed; inset:0; z-index:100; background:rgba(0,0,0,.88); display:none; place-items:center; padding:30px; }
.lightbox.is-open { display:grid; }
.lightbox img { max-height:86vh; border-radius:20px; }
.lightbox-close { position:absolute; top:22px; right:26px; border:0; color:#fff; background:transparent; font-size:48px; cursor:pointer; }

@media (max-width: 860px) {
  .menu-toggle { display:block; }
  .menu { position:absolute; top:82px; left:0; right:0; display:none; flex-direction:column; align-items:flex-start; padding:26px 24px 32px; background:var(--cream); border-bottom:1px solid var(--line); }
  .menu.is-open { display:flex; }
  .nav-cta { width:100%; text-align:center; }
  .hero-content { width:min(100% - 38px, 1180px); gap:70px; padding:54px 0 60px; }
  .hero-logo-block { justify-self:start; text-align:left; }
  .hero-logo { margin-left:0; }
  .intro-grid, .section-header, .visit, .contact-card { display:block; }
  .logo-marquee::before, .logo-marquee::after { width: 46px; }
  .logo-track { gap: 26px; animation-duration: 70s; }
  .logo-item { flex-basis: 190px; height: 105px; padding: 20px 24px; border-radius: 22px; }
  .logo-item img { max-height: 62px; }
  .intro p, .section-header p { margin-top:22px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .featured, .tall { grid-column:auto; grid-row:auto; }
  .button { display:inline-block; margin-top:26px; }
  .contact-card a { display:block; margin-top:20px; word-break:break-word; }
}


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

.site-footer {
  margin-top: 0;
}

.footer-cta {
  background: #5d43d4;
  color: #000;
  text-align: center;
  padding: 90px 20px;
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.footer-cta p {
  margin-top: 10px;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
}

.footer-bottom {
  background: linear-gradient(
    90deg,
    #8a00ff 0%,
    #a400ff 50%,
    #8a00ff 100%
  );
  color: white;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand img {
  width: 90px;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: #000;
  color: #fff;

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

  overflow: hidden;
  transition: .3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
  display: block;
  flex-shrink: 0;
}

.footer-social a svg {
  width: 20px !important;
  height: 20px !important;
}

.footer-social i {
  font-size: 18px;
}

.footer-copy {
  font-size: 18px;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 768px) {

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand img {
    width: 70px;
  }

  .footer-copy {
    font-size: 15px;
  }

  .footer-cta {
    padding: 70px 20px;
  }
}

.premium-footer {

    position: relative;
    overflow: hidden;

    background: #5541BA;

    padding: 120px 20px 60px;

    text-align: center;

    color: #fff;
}

.footer-watermark {

    position: absolute;

    left: -60px;
    bottom: -40px;

    opacity: .06;

    pointer-events: none;
}

.footer-watermark img {

    width: 420px;

    filter: brightness(0) invert(1);
}

.footer-content {

    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: auto;
}

.footer-content h2 {

    font-size: clamp(42px,5vw,74px);

    line-height: .95;

    letter-spacing: -.04em;

    margin: 0 0 15px;

    font-weight: 700;
}

.footer-hashtag {

    display: block;

    font-size: 28px;

    margin-bottom: 50px;

    color: rgba(255,255,255,.85);
}

.footer-social {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin-bottom: 60px;
}

.footer-social a {

    width: 58px;
    height: 58px;

    border-radius: 16px;

    background: rgba(0,0,0,.25);

    backdrop-filter: blur(10px);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;
}

.footer-social a:hover {

    transform: translateY(-4px);

    background: rgba(0,0,0,.45);
}

.footer-social i {

    font-size: 22px;
}

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.15);

    padding-top: 30px;

    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;

    color: rgba(255,255,255,.8);
}

.footer-bottom a {

    color: white;
}

.stats-section {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 70px 20px;
}

.stats-inner {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(16,16,16,.08);
  border-radius: 28px;
  padding: 42px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(16,16,16,.045);
}

.stat-number {
  display: block;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -.06em;
  color: var(--red);
}

.stat-item p {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 860px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }
}

.stats-section {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 70px 20px;
}

.stats-inner {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(16,16,16,.08);
  border-radius: 28px;
  padding: 42px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(16,16,16,.045);
}

.stat-number {
  display: block;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -.06em;
  color: var(--red);
}

.stat-item p {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 860px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }
}

.premium-footer {

    position: relative;
    overflow: hidden;

    background: #5541BA;

    padding: 120px 20px 60px;

    text-align: center;

    color: #fff;
}

.footer-watermark {

    position: absolute;

    left: -60px;
    bottom: -40px;

    opacity: .06;

    pointer-events: none;
}

.footer-watermark img {

    width: 420px;

    filter: brightness(0) invert(1);
}

.footer-content {

    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: auto;
}

.footer-content h2 {

    font-size: clamp(42px,5vw,74px);

    line-height: .95;

    letter-spacing: -.04em;

    margin: 0 0 15px;

    font-weight: 700;
}

.footer-hashtag {

    display: block;

    font-size: 28px;

    margin-bottom: 50px;

    color: rgba(255,255,255,.85);
}

.footer-social {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin-bottom: 60px;
}

.footer-social a {

    width: 58px;
    height: 58px;

    border-radius: 16px;

    background: rgba(0,0,0,.25);

    backdrop-filter: blur(10px);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;
}

.footer-social a:hover {

    transform: translateY(-4px);

    background: rgba(0,0,0,.45);
}

.footer-social i {

    font-size: 22px;
}

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.15);

    padding-top: 30px;

    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;

    color: rgba(255,255,255,.8);
}

.footer-bottom a {

    color: white;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
}

.gallery-card {
  border-radius: 32px;
}

.gallery-card {
  transition: all .4s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
}

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

/* ==========================
   VIDEO SECTION
========================== */

.video-section {

  width: min(1180px, calc(100% - 40px));

  margin: auto;

  padding: 0 0 120px;
}

.video-header {

  max-width: 760px;

  margin: 0 auto 50px;

  text-align: center;
}

.video-header h2 {

  margin: 0 0 20px;

  font-size: clamp(42px, 6vw, 78px);

  line-height: .95;

  letter-spacing: -.05em;
}

.video-header p {

  font-size: 20px;

  color: var(--muted);

  line-height: 1.7;
}

.video-wrapper {

  position: relative;

  overflow: hidden;

  border-radius: 40px;

  background: #000;

  box-shadow:
    0 40px 100px rgba(0,0,0,.12),
    0 10px 30px rgba(0,0,0,.08);

  transform: translateZ(0);
}

.video-wrapper::before {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: 40px;

  border: 1px solid rgba(255,255,255,.08);

  pointer-events: none;

  z-index: 2;
}

.video-wrapper iframe {

  display: block;

  width: 100%;

  aspect-ratio: 16 / 9;

  border: 0;
}

.video-wrapper::after {

  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  background: rgba(255,43,43,.15);

  border-radius: 50%;

  top: -60px;
  right: -60px;

  filter: blur(60px);

  pointer-events: none;
}

.video-fallback-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  min-height: 480px;
  background: #111;
  box-shadow:
    0 40px 100px rgba(0,0,0,.12),
    0 10px 30px rgba(0,0,0,.08);
}

.video-fallback-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  opacity: .72;
}

.video-fallback-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.45),
    rgba(0,0,0,.1)
  );
}

.video-play-button {
  background: #ff2b2b;
  color: white;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.video-play-button:hover {
  transform: translateY(-3px);
}


.gallery-load-more {
  text-align: center;
  margin-top: 50px;
}

.gallery-load-more button {
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .3s ease;
}

.gallery-load-more button:hover {
  background: var(--black);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 780px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 185px;
    gap: 18px;
    }
}


.video-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 40px;
  background: #000;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.video-poster:hover img {
  transform: scale(1.05);
}

.video-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.58),
    rgba(0,0,0,.12)
  );
}

.video-play-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  transition: .3s ease;
}

.video-poster:hover .video-play-circle {
  transform: scale(1.08);
}

.video-label {
  position: absolute;
  left: 34px;
  bottom: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-content {
  width: min(1100px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: 22px;
  right: 30px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 52px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 780px) {
  .video-wrapper,
  .video-poster {
    border-radius: 26px;
  }

  .video-play-circle {
    width: 72px;
    height: 72px;
    font-size: 24px;
  }

  .video-label {
    left: 22px;
    bottom: 22px;
  }

  .video-modal {
    padding: 18px;
  }

  .video-modal-content {
    border-radius: 18px;
  }
}