*Inicio*/
body {
	font-family: 'Questrial', sans-serif;
	padding: 0px;
	margin: 0px;
    background: #000;
}



header{
	background-image: url(../img/baner1.jpg);
	background-size: cover;
	background-position: 50% 0%;
	background-attachment: fixed;
	background-repeat: no-repeat;
	max-height: 900px;
}


nav img {
	width: 100%;
	margin: 10px;
}

.nav-link {
	color: rgb(255, 255, 255);
	text-shadow:5px 5px 7px rgba(0, 0, 0, 0.5);
	font-weight: 600;
}

.nav-link {
	color: rgb(255, 255, 255);
}

h1 {
    color: rgb(255, 255, 255);
	text-shadow: 5px 5px 7px rgba(0, 0, 0, 0.5);
	font-weight: bolder;
	font-size: 50pt;    
}

h5
{
    color: rgb(255, 255, 255);
	text-shadow: 5px 5px 7px rgba(0, 0, 0, 0.5);
	font-weight: bolder;
	font-size: 18pt;    
}






/* Sección pantalla completa */
.videos-section {
  min-height: 100vh;
  padding: 40px;
}

/* Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card de video */
.video-card {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

/* Video */
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== ANIMACIÓN ===== */
.animate {
  opacity: 0;
  transform: scale(0.85) translateY(40px);
  transition: all 0.8s ease;
}

.animate.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .videos-section {
    padding: 20px;
  }
}

/* Sección pantalla completa */
.videos-section {
  min-height: 100vh;
  padding: 40px;
}

/* Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card de video */
.video-card {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

/* Video */
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== ANIMACIÓN ===== */
.animate {
  opacity: 0;
  transform: scale(0.85) translateY(40px);
  transition: all 0.8s ease;
}

.animate.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .videos-section {
    padding: 20px;
  }
}