/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #3A4036;
  line-height: 1.6;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

/* Header */
header {
  margin-bottom: 20px;
}

.logo img {
      max-width: 200px;
      height: auto;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .logo img:hover {
      transform: scale(1.05);
    }

/* Flechita regreso */
.back-arrow {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 28px;
  color: #A57741;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.back-arrow:hover {
  color: #ED8803;
  transform: scale(1.2);
}

/* Título principal */
h1 {
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 2.2rem;
}

/* Grid de videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Cada video */
.video-item iframe {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1 / 1; /* cuadrado */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-item h2 {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #A57741;
  font-weight: 600;
}

.video-item p {
  font-size: 0.9rem;
  margin-top: 6px;
  color: #555;
  max-width: 350px;
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 20px;
  background-color: #3A4036;
  color: #FFF6EA;
  font-size: 14px;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .back-arrow {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
