@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

:root {
  --dark: #0a0a0a;
  --light: #f0ede8;
  --green: #8CC63F;
  --green-light: #A8D86B;
  --green-dark: #6BA82F;
  /* Verde oscurecido para texto sobre fondo claro/crema (contraste AA) */
  --green-on-light: #3F7A12;
  --green-glow: rgba(140, 198, 63, .28);
  --glass: rgba(10, 10, 10, .75);
  /* Retro-compat aliases — consumers que aún usan var(--gold*) resuelven a verde */
  --gold: var(--green);
  --gold-light: var(--green-light);
  --gold-dark: var(--green-dark);
  --gold-glow: var(--green-glow);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden
}

::selection {
  background: var(--gold);
  color: var(--dark)
}

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

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

/* NOISE GRAIN */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

/* CURSOR */
@media(pointer:fine) {
  body {
    cursor: none
  }

  .cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    transform: translate(-50%, -50%)
  }

  .cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(240, 237, 232, .4);
    border-radius: 50%;
    position: fixed;
    z-index: 99998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width .25s, height .25s, border-color .25s
  }

  body.c-hover .cursor-ring {
    width: 70px;
    height: 70px;
    border-color: var(--gold)
  }
}

@media(pointer:coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none
  }
}

/* LOADER */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .6s, visibility .6s
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.loader-num {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.loader-bar {
  width: min(200px, 60vw);
  height: 2px;
  background: rgba(255, 255, 255, .08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 1.5rem
}

.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light))
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .4s, backdrop-filter .4s
}

.nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(140, 198, 63, .1)
}

.nav-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(140, 198, 63, .4))
}

.nav-links {
  display: none;
  list-style: none
}

.nav-links a {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  position: relative;
  padding-bottom: 3px;
  transition: color .3s
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .4s cubic-bezier(.16, 1, .3, 1)
}

.nav-links a:hover {
  color: var(--gold)
}

.nav-links a:hover::after {
  width: 100%
}

/* HAMBURGER */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 9002;
  padding: 8px
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--light);
  transition: transform .3s, opacity .3s
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9001;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible
}

.mobile-menu a {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .3s
}

.mobile-menu a:hover {
  color: var(--gold)
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
  filter: contrast(1.1) brightness(.7)
}

.hero-grad {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, transparent, var(--dark) 75%)
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.hero h1 {
  font-size: clamp(2.8rem, 11vw, 10rem);
  font-weight: 700;
  line-height: .88;
  text-transform: uppercase;
  letter-spacing: -.05em
}

.hero h1 .ln {
  display: block;
  overflow: hidden
}

.hero h1 .ln span {
  display: inline-block;
  transform: translateY(105%);
  animation: hSlide 1.1s cubic-bezier(.16, 1, .3, 1) forwards
}

.hero h1 .ln:nth-child(2) span {
  animation-delay: .12s;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(.95rem, 2.2vw, 1.35rem);
  font-weight: 300;
  max-width: 550px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1.2s ease .6s forwards;
  line-height: 1.7;
  color: rgba(240, 237, 232, .7)
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .35em;
  font-weight: 600;
  opacity: .45;
  display: flex;
  align-items: center;
  gap: .6rem
}

.hero-scroll .bar {
  width: 40px;
  height: 1px;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite
}

@keyframes hSlide {
  to {
    transform: translateY(0)
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .2;
    transform: scaleX(.4)
  }

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

/* TICKER */
.ticker {
  border-top: 1px solid rgba(140, 198, 63, .2);
  border-bottom: 1px solid rgba(140, 198, 63, .2);
  padding: 1rem 0;
  background: var(--gold);
  color: var(--dark);
  overflow: hidden;
  white-space: nowrap;
  display: flex
}

.ticker-track {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  animation: marquee 25s linear infinite;
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.02em
}

.ticker-track .d {
  font-size: .8em;
  opacity: .4
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* SECTIONS */
.sec {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 1.5rem
}

.sec-label {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .7rem
}

.sec-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold)
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

.rv.vis {
  opacity: 1;
  transform: translateY(0)
}

.rv-d1 {
  transition-delay: .1s
}

.rv-d2 {
  transition-delay: .2s
}

.rv-d3 {
  transition-delay: .3s
}

.rv-d4 {
  transition-delay: .4s
}

/* MANIFIESTO */
.manifiesto {
  display: flex;
  flex-direction: column;
  gap: 2rem
}

.manifiesto-text {
  font-size: clamp(1.4rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: rgba(240, 237, 232, .85)
}

.manifiesto-text em {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-style: italic
}

/* SERVICIOS */
.srv-title {
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: .9;
  margin-bottom: 2rem
}

.srv-title span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.srv-row {
  border-top: 1px solid rgba(240, 237, 232, .06);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: color .3s
}

.srv-row:last-child {
  border-bottom: 1px solid rgba(240, 237, 232, .06)
}

.srv-row:hover {
  color: var(--gold)
}

.srv-row h3 {
  font-size: clamp(1.6rem, 5vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.03em;
  z-index: 2;
  pointer-events: none;
  line-height: 1
}

.srv-head {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  z-index: 2;
  max-width: 62%;
  pointer-events: none
}

.srv-desc {
  font-size: clamp(.72rem, 1.3vw, .95rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  opacity: .5;
  max-width: 36ch
}

.srv-row .n {
  font-size: clamp(.8rem, 1.5vw, 1.2rem);
  font-weight: 300;
  opacity: .35;
  z-index: 2;
  pointer-events: none;
  color: var(--gold)
}

.srv-row .srv-img {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%) scale(1.2);
  width: clamp(200px, 30vw, 420px);
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path .7s cubic-bezier(.16, 1, .3, 1), opacity .4s
}

.srv-row:hover .srv-img {
  clip-path: circle(100% at 50% 50%);
  opacity: .55
}

.srv-row .srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) sepia(15%);
  transition: filter .5s, transform .8s
}

.srv-row:hover .srv-img img {
  filter: grayscale(0%) sepia(0%);
  transform: scale(1.05)
}

/* PORTAFOLIO BENTO */
.pf-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem
}

.pf-head h2 {
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: .9
}

.pf-head h2 span {
  color: rgba(240, 237, 232, .12)
}

.pf-head a {
  color: var(--gold);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color .3s, border-color .3s
}

.pf-head a:hover {
  color: var(--light);
  border-color: var(--light)
}

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  width: 100%
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: .8rem;
  background: #141210;
  border: 1px solid rgba(140, 198, 63, .07);
  aspect-ratio: 1/1
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1)
}

.bento-item.b-vert {
  aspect-ratio: 3/4
}

.bento-item.b-vert img {
  object-fit: cover;
  background: #050505
}

.bento-item:hover img {
  transform: scale(1.08)
}

.bento-item .ov {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(10, 10, 10, .92), transparent 55%);
  opacity: 0;
  transition: opacity .35s
}

.bento-item:hover .ov {
  opacity: 1
}

.ov .tg {
  font-size: .55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: .3rem
}

.ov h3 {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.1
}

/* HISTORIA */
.historia-title {
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: .9;
  margin-bottom: 2.5rem
}

.historia-title span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.historia-content {
  margin-top: 1rem
}

.historia-text {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.7;
  color: rgba(240, 237, 232, .75);
  margin-bottom: 1.2rem
}

.historia-text strong {
  color: var(--gold);
  font-weight: 600
}

.historia-text em {
  color: var(--light);
  font-style: normal
}

.historia-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(140, 198, 63, .2);
  border-radius: 1rem;
  min-width: 120px;
  text-align: center;
  transition: border-color .3s, transform .3s
}

.stat:hover {
  border-color: var(--gold);
  transform: translateY(-4px)
}

.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.stat-lbl {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(240, 237, 232, .5);
  margin-top: .3rem
}

/* CREW */
.crew-sec {
  background: var(--light);
  color: var(--dark);
  padding: 6rem 0;
  margin-top: 3rem
}

.crew-hd {
  text-align: center;
  margin-bottom: 3.5rem
}

.crew-hd h2 {
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: .9
}

.crew-hd h2 span {
  color: var(--green-on-light)
}

.crew-hd p {
  margin: 1rem auto 0;
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
  color: #666;
  max-width: 480px;
  line-height: 1.6
}

.crew-names-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0
}

.crew-name-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(10, 10, 10, .1);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  cursor: pointer;
  transition: padding-left .3s, border-color .3s
}

.crew-name-card:first-child {
  border-top: 1px solid rgba(10, 10, 10, .1)
}

.crew-name-card:hover {
  padding-left: 1.5rem;
  border-color: var(--gold)
}

.crew-name-card h4 {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.1;
  transition: color .3s
}

.crew-name-card:hover h4 {
  color: var(--green-on-light)
}

.crew-name-card .rl {
  font-size: .55rem;
  font-weight: 700;
  color: var(--green-on-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  white-space: nowrap
}

/* GALLERY TABS */
.gallery-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid rgba(240, 237, 232, .06)
}

.tab-btn {
  background: transparent;
  border: 1.5px solid rgba(240, 237, 232, .15);
  color: rgba(240, 237, 232, .5);
  padding: .7rem 1.5rem;
  border-radius: 100px;
  font-family: inherit;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  transition: all .3s
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.tab-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold)
}

.tab-content {
  display: none
}

.tab-content.active {
  display: block
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem
}

.video-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #141210;
  border: 1px solid rgba(140, 198, 63, .1);
  cursor: pointer;
  transition: border-color .3s, transform .3s
}

.video-card.video-vertical {
  aspect-ratio: auto;
  height: 650px;
  width: 100%;
  max-width: 365px;
  margin: 0 auto
}

.video-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px)
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
  transition: opacity .4s
}

.video-card:hover video {
  opacity: .9
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(10, 10, 10, .95), transparent);
  z-index: 2
}

.video-info .tg {
  font-size: .55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: .3rem;
  display: block
}

.video-info h3 {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.02em
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(140, 198, 63, .85);
  border: none;
  color: var(--dark);
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, background .3s;
  backdrop-filter: blur(10px)
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--gold)
}

/* CLIENT LOGOS */
.clientes-intro {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(240, 237, 232, .6);
  margin-bottom: 2.5rem;
  text-align: center
}

.clientes-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem
}

.logo-card {
  background: rgba(240, 237, 232, .04);
  border: 1px solid rgba(140, 198, 63, .08);
  border-radius: 1rem;
  padding: 1.8rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .8rem;
  transition: border-color .4s, transform .3s, background .3s;
  cursor: default;
  min-height: 120px
}

.logo-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(140, 198, 63, .06)
}

.logo-card img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .7;
  transition: opacity .3s, filter .3s
}

.logo-card:hover img {
  opacity: 1;
  filter: none
}

.logo-card span {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(240, 237, 232, .45);
  transition: color .3s
}

.logo-card:hover span {
  color: var(--gold)
}

.logo-card.txt-only {
  justify-content: center
}

.logo-text {
  font-size: clamp(.9rem, 2vw, 1.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(240, 237, 232, .35);
  transition: color .3s
}

.logo-card.txt-only:hover .logo-text {
  color: var(--gold)
}

/* FOOTER CTA */
.cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--dark);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
  margin-top: -1.5rem;
  z-index: 20;
  padding: 4rem 1.5rem
}

.cta .bg-t {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(6rem, 22vw, 20rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.06em;
  opacity: .08;
  white-space: nowrap;
  pointer-events: none;
  user-select: none
}

.cta .lb {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .4em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2
}

.cta .big {
  font-size: clamp(3rem, 12vw, 9rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: .85;
  position: relative;
  z-index: 2;
  transition: color .4s;
  display: inline-block
}

.cta .big:hover {
  color: #fff
}

.cta-soc {
  margin-top: 2.5rem;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2
}

.cta-soc a {
  border: 1.5px solid var(--dark);
  border-radius: 100px;
  padding: .65rem 1.5rem;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: background .3s, color .3s
}

.cta-soc a:hover {
  background: var(--dark);
  color: var(--gold)
}

.cta-soc .btn-disabled {
  opacity: .35;
  pointer-events: none
}

.cta-bot {
  position: static;
  margin-top: 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  font-size: .5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  opacity: .5;
  padding: 0 1.5rem
}

/* QR BLOCK (contacto) */
.qr-block {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  position: relative;
  z-index: 2
}

.qr-block .qr-label {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-weight: 700
}

.qr-block img {
  width: clamp(220px, 62vw, 320px);
  height: auto;
  border-radius: .9rem;
  background: var(--dark);
  padding: .9rem 1.1rem
}

.qr-block .qr-url {
  font-size: .65rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: .05em
}

/* WHATSAPP COUNTRY BUTTONS */
.wa-countries {
  margin-top: 2.5rem;
  position: relative;
  z-index: 2
}

.wa-label {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center
}

.wa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem
}

.wa-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.2rem;
  border: 1.5px solid var(--dark);
  border-radius: 100px;
  transition: all .3s;
  text-decoration: none;
  color: var(--dark);
  justify-content: center
}

.wa-btn:hover {
  background: var(--dark);
  color: var(--gold);
  transform: scale(1.05);
  border-color: var(--dark)
}

.wa-flag {
  font-size: 1.5rem;
  line-height: 1
}

.wa-icon {
  font-size: 1.1rem;
  line-height: 1
}

.wa-country {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em
}

/* ===== DESKTOP (768px+) ===== */
@media(min-width:768px) {
  .nav {
    padding: 1.5rem 3rem
  }

  .nav-logo {
    height: 44px
  }

  .nav-links {
    display: flex;
    gap: 2.5rem
  }

  .hamburger {
    display: none
  }

  .hero-content {
    padding: 0 3rem
  }

  .hero-scroll {
    left: 3rem;
    bottom: 2.5rem
  }

  .sec {
    padding: 10rem 3rem
  }

  .manifiesto {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start
  }

  .manifiesto>div:first-child {
    flex: 0 0 22%
  }

  .manifiesto>div:last-child {
    flex: 1
  }

  .historia-stats {
    gap: 3rem
  }

  .srv-row {
    padding: 3rem 3rem
  }

  .bento {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
  }

  .b-lg {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto
  }

  .b-wd {
    grid-column: span 2;
    aspect-ratio: 2/1
  }

  .bento-item.b-vert {
    grid-row: span 2;
    aspect-ratio: auto
  }

  .pf-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end
  }

  .pf-head a {
    align-self: auto
  }

  .gallery-tabs {
    gap: .8rem
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start
  }

  .clientes-logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem
  }

  .wa-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
  }

  .crew-names-grid {
    grid-template-columns: 1fr
  }

  .crew-name-card {
    padding: 2rem 0
  }

  .crew-name-card h4 {
    font-size: clamp(1.5rem, 3vw, 2.8rem)
  }

  .crew-sec {
    padding: 10rem 0;
    margin-top: 5rem
  }

  .crew-hd {
    margin-bottom: 5rem
  }

  .cta {
    min-height: 100vh;
    padding: 6rem 3rem;
    border-radius: 2.5rem 2.5rem 0 0
  }

  .cta-bot {
    position: absolute;
    margin-top: 0;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 3rem;
    bottom: 2rem
  }
}

/* ===== EVENTOS: galería masonry (sin recorte, proporción natural del feed IG) ===== */
#tab-eventos .bento {
  display: block;
  column-count: 2;
  column-gap: 1rem;
}

#tab-eventos .bento-item {
  display: block;
  width: 100%;
  aspect-ratio: auto;
  grid-column: auto;
  grid-row: auto;
  margin: 0 0 1rem;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

#tab-eventos .bento-item img {
  height: auto;
  object-fit: contain;
}

/* overlay de campaña: siempre legible en masonry (degradado base) */
#tab-eventos .bento-item .ov {
  opacity: 1;
  background: linear-gradient(to top, rgba(10, 10, 10, .82), transparent 42%);
}

@media (min-width: 768px) {
  #tab-eventos .bento {
    column-count: 3;
    column-gap: 1.5rem;
  }

  #tab-eventos .bento-item {
    margin-bottom: 1.5rem;
  }
}