﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-title: 'Poppins', sans-serif;
  --font-category: 'Roboto', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --bg-dark: #0e0e0e;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: #fff;
  overflow-x: hidden;
}

/* NAV / MENU HAMBURGUESA */
.site-topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
}

.site-logo-center {
  display: inline-flex;
  text-decoration: none;
}

.site-logo-center img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.menu-toggle {
  position: absolute;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(320px, 84vw);
  height: 100vh;
  z-index: 10002;
  background: rgba(8, 8, 8, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  transition: right 0.28s ease;
  padding: 22px 18px;
}

.menu-panel.open {
  right: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.menu-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}

.menu-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.menu-links a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
}

.menu-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(2px);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.6)), #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.hero-video-placeholder {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(0, 0, 0, 0.35)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.12));
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

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

.hero-video-placeholder::before {
  content: none;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 5vh;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  z-index: 3;
}

.hero-scroll-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-scroll-arrows span {
  width: 18px;
  height: 18px;
  border-right: 3px solid rgba(255, 255, 255, 0.9);
  border-bottom: 3px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  animation: heroArrowBounce 1.6s infinite;
}

.hero-scroll-arrows span:nth-child(2) {
  animation-delay: 0.18s;
}

.hero-scroll-arrows span:nth-child(3) {
  animation-delay: 0.36s;
}

.hero-scroll-text {
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.88;
}


/* BOTONES */
.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #fff;
  color: #000;
}

.btn-secondary {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* MIX (FOTOS PREVIEW) */
.mix {
  display: flex;
  flex-direction: column;
}

.mix-block {
  position: relative;
  min-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: transform 0.35s ease;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.mix-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  pointer-events: none;
}

.mix-block h2,
.mix-block p {
  position: relative;
  z-index: 2;
}

.mix-block h2 {
  font-family: var(--font-category);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(2.2rem, 7vw, 4rem);
}

.mix-block p {
  font-size: 1.1rem;
  margin-top: 10px;
  max-width: 560px;
}

.mix-block:hover::before {
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}

.mix-block:hover {
  transform: scale(1.01);
}

@media (hover: none), (pointer: coarse) {
  .mix-block::before {
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }

  .mix-block:hover::before {
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }

  .mix-block:hover {
    transform: none;
  }
}

/* Imágenes del MIX */
.sociales { background-image: url('../assets/images/SOCIAL/1.jpeg'); }
.corporativos { background-image: url('../assets/images/CORPORATIVO/DSC01009.jpg'); }
.tematicos { background-image: url('../assets/images/SOCIAL/ACT 20 OCT/LA MASCARA/Mascara_014958.jpg'); }
.culturales { background-image: url('../assets/images/SOCIAL/ACT 24 OCT/CARNAVAL/PicsArt_01-01-01.25.39.jpg'); }
.especiales { background-image: url('../assets/images/SOCIAL/ACT 24 OCT/GATSBY/Picsart_24-11-04_04-19-59-236 (1).jpg'); }

/* HIGHLIGHTS */
.highlights {
  padding: 90px 80px;
  background: #0b0b0b;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.highlights-header {
  text-align: center;
  margin-bottom: 40px;
}

.highlights-header h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 1px;
}

.highlights-header p {
  margin-top: 10px;
  opacity: 0.9;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.highlight-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

.highlight-img {
  height: 220px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.highlight-info {
  padding: 18px 18px 20px 18px;
}

.highlight-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-title);
}

.highlight-info p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.4;
}

.highlight-date {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* SOCIOS */
.socios {
  padding: 70px 80px;
  background: #090909;
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

.socios-header {
  text-align: center;
  margin-bottom: 24px;
}

.socios-header h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
}

.socios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.socio-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-title);
}

/* CTA */
.cta {
  min-height: 70vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.72)),
    url('../assets/images/SOCIAL/ACT 24 OCT/GATSBY/Picsart_24-11-04_04-19-59-236 (1).jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 18px;
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.cta h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 30px;
}

/* FOOTER */
.footer {
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 80px 20px 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-col h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-col p {
  opacity: 0.9;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col ul li {
  opacity: 0.92;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer a:hover {
  opacity: 1;
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ============================= */
/* BURBUJAS REDES (WHATSAPP / IG) */
/* ============================= */

.social-bubbles {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9998;
}

.social-bubble {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.95;
}

.social-bubble:hover {
  transform: translateY(-2px) scale(1.03);
  opacity: 1;
}

.social-bubble svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.social-bubble.wa {
  background: rgba(37, 211, 102, 0.25);
}

.social-bubble.ig {
  background: rgba(225, 48, 108, 0.22);
}

/* HIGHLIGHT DETALLE */
.highlight-page {
  padding-top: 104px;
  background: #090909;
}

.highlight-hero {
  padding: 24px 24px 14px;
}

.highlight-cover {
  position: relative;
  min-height: 72vh;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.highlight-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08) 48%),
    linear-gradient(to right, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
}

.highlight-cover-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 34px;
}

.highlight-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-cover-content h1 {
  font-family: var(--font-title);
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 0.98;
  margin-bottom: 12px;
}

.highlight-cover-content p {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.92;
}

.highlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.highlight-meta span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.highlight-story,
.highlight-gallery,
.highlight-video-block,
.download-block {
  padding: 24px;
}

.highlight-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.highlight-story-card,
.highlight-note {
  border-radius: 24px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
}

.highlight-story-card h2,
.highlight-gallery-head h2,
.highlight-video-head h2,
.download-block h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.highlight-story-card p,
.highlight-gallery-head p,
.highlight-video-head p,
.download-block p,
.highlight-note li {
  line-height: 1.7;
  opacity: 0.9;
}

.highlight-note ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.highlight-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.highlight-shot {
  overflow: hidden;
  border-radius: 22px;
  min-height: 220px;
  background: #111;
}

.highlight-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.highlight-shot:hover img {
  transform: scale(1.04);
}

.highlight-shot.tall {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 460px;
}

.highlight-shot.wide {
  grid-column: span 7;
}

.highlight-shot.standard {
  grid-column: span 4;
}

.highlight-shot.small {
  grid-column: span 3;
}

.highlight-video-frame {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.56)),
    url('../assets/images/SOCIAL/DSC08448.JPG') center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 26px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.highlight-video-placeholder .hero-video-play {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
}

.highlight-video-placeholder .hero-video-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  margin-left: 4px;
}

.highlight-video-frame video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  background: #000;
}

.download-block {
  padding-bottom: 54px;
  text-align: center;
}

.download-block .btn-primary {
  margin-top: 16px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .highlights,
  .socios {
    padding: 70px 24px;
  }

  .mix-block {
    padding: 60px 24px;
    min-height: 52vh;
  }

  .footer {
    padding: 50px 24px 18px 24px;
  }

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

  .site-logo-center img {
    width: 92px;
    height: 92px;
  }

  .hero-scroll-cue {
    bottom: 4vh;
  }

  .highlight-story-grid {
    grid-template-columns: 1fr;
  }

  .highlight-shot.tall,
  .highlight-shot.wide,
  .highlight-shot.standard,
  .highlight-shot.small {
    grid-column: span 6;
    min-height: 250px;
  }
}

@media (max-width: 620px) {
  .site-logo-center img {
    width: 76px;
    height: 76px;
  }

  .site-topnav {
    padding: 10px 14px;
  }

  .menu-toggle {
    right: 14px;
  }

  .hero {
    height: 74svh;
    min-height: 520px;
    max-height: 760px;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.18);
  }

  .hero-video {
    object-fit: cover;
    object-position: 58% center;
  }

  .mix-block {
    min-height: 44vh;
    padding: 42px 18px;
  }

  .mix-block::before {
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }

  .hero-scroll-text {
    font-size: 0.78rem;
  }

  .highlight-hero,
  .highlight-story,
  .highlight-gallery,
  .highlight-video-block,
  .download-block {
    padding: 18px;
  }

  .highlight-cover {
    min-height: 62vh;
    border-radius: 22px;
  }

  .highlight-cover-content {
    padding: 22px;
  }

  .highlight-gallery-grid {
    grid-template-columns: 1fr;
  }

  .highlight-shot.tall,
  .highlight-shot.wide,
  .highlight-shot.standard,
  .highlight-shot.small {
    grid-column: auto;
    min-height: 220px;
  }

  .highlight-video-frame {
    min-height: 300px;
  }
}

@keyframes heroArrowBounce {
  0%, 100% {
    opacity: 0.35;
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) translate(5px, 5px);
  }
}


