/* ESTILOS ESPECÍFICOS DE LA HOME */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(4, 16, 31, 0.4), rgba(4, 16, 31, 0.8));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 600; /* Semibold */
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
}

.hero-title span {
  background: linear-gradient(90deg, #00dfff, #006bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-dark {
  background-color: #04101f;
  color: #fff;
}

.section-blue {
  background: linear-gradient(135deg, #006bff, #00dfff);
  color: #fff;
}

/* Media-card dentro del mosaico: el grid controla la altura, no aspect-ratio */
.mosaic-brandbook .media-card {
  aspect-ratio: unset;
  height: 100%;
}

.brand-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  opacity: 0.6;
}

.brand-showcase img {
  height: 30px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4rem) !important;
  }

  .brand-showcase { gap: 2rem; }

  /* Mosaic: en mobile todos los cards tienen la misma altura */
  .mosaic-brandbook {
    grid-template-rows: unset !important;
    gap: 1rem;
  }

  .mosaic-brandbook .large {
    grid-row: span 1 !important;
  }

  .mosaic-brandbook .media-card {
    height: 320px !important;
    aspect-ratio: unset !important;
  }
}
