/* UVA, UVA Bombón — one-pager */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

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

:root {
  --uva-orange: #ff4a12;
  --uva-beige: #ebe3d6;
  --uva-beige-strip: #e8e0d4;
  --uva-white: #ffffff;
  --uva-black: #0a0a0a;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--uva-beige);
  color: var(--uva-black);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.hero {
  width: 100%;
  background-color: var(--uva-beige);
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.section {
  width: 100%;
  max-width: 100%;
  background-color: var(--uva-beige);
}

/* Etiquetas — franja beige como en la referencia (sin barra negra extra) */
.section__label--asset {
  padding: 56px 5% 32px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(180deg, var(--uva-beige) 0%, var(--uva-beige-strip) 100%);
}

.section__label--asset img {
  width: auto;
  max-width: min(90%, 720px);
  height: auto;
  display: block;
}

.section__board {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background-color: var(--uva-beige);
}

.section__board img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
}

.section--video {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--uva-beige);
}

.video-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.video-frame {
  width: 100%;
  flex: 0 0 auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--uva-black);
  border: 0;
  margin: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 0;
}

.video-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.video-poster.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.video-play-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.45);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.video-play-layer:hover .video-play-layer__icon {
  transform: scale(1.06);
}

.video-play-layer:focus {
  outline: none;
}

.video-play-layer:focus-visible {
  outline: 3px solid var(--uva-white);
  outline-offset: -6px;
}

.video-play-layer__icon {
  width: clamp(72px, 14vw, 110px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
  transition: transform 0.2s ease;
}

.video-play-layer.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-wrapper--inactive .video-play-layer {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.92;
}
