/* Reset básico y tipografía moderna */

header {
  text-align: center;
  background: linear-gradient(to right, #1202f3, #03b0fa);
  color: white;
  padding: 40px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 3rem;
}

.marca {
  color: #f39c12;
}

header p {
  font-size: 3rem;
  color: #ecf0f1;
}


/* Contenedor principal de videos */
.videos {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los elementos dentro del contenedor */
    justify-content: center;
    margin-top: 50px;
    text-align: center;
  }

  .videos h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
  }

  /* Contenedor de los videos, para que se organicen en filas */
  .video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra los videos horizontalmente */
    gap: 20px;
  }

  .video-grid iframe {
    width: 100%;
    max-width: 400px; /* Limita el tamaño máximo */
    height: 240px;
    border-radius: 15px;
    border: none;
    transition: transform 0.3s ease;
  }

  .video-grid iframe:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }


  
  .niveles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px;
  }

  .nivel {
    background: #fff;
    border-radius: 15px;
    padding-top: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.33% - 20px);
    margin-top: 10px;
    max-width: 30%;
  }

  .nivel:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .nivel h3 {
    color: #2980b9;
    font-size: 1.8rem;
    margin: 10px;
  }

  /* RESPONSIVE: para pantallas pequeñas */
@media (max-width: 720px) {
  .niveles {
    flex-direction: column; /* Apila los bloques verticalmente */
    align-items: center;
  }

  .nivel {
  max-width: 100%;             /* Ocupa casi todo el ancho del contenedor */
  }

  .nivel h3 {
  font-size: 1.0rem;

  }
}

  .contenedor-iframe {
    overflow: hidden;
}

.iframe-responsivo {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
}

/* Estilos responsivos para el encabezado */
@media screen and (max-width: 768px) {
  header {
    padding: 20px 10px; /* Reduce el padding en pantallas pequeñas */
  }

  header p {
    font-size: 1.8rem; /* Reduce el tamaño de fuente del párrafo */
  }

}

@media screen and (max-width: 480px) {
  header p {
    font-size: 1.2rem; /* Reduce aún más el tamaño de fuente en móviles */
  }
}

/* --- Estilos para Video Destacado --- */

.video-destacado {
    width: 80%; /* Ocupa el 80% del contenedor .videos */
    max-width: 960px; /* Un tamaño máximo para pantallas grandes */
    margin-bottom: 40px; /* Espacio generoso debajo */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden; /* Asegura que el iframe no se salga del borde redondeado */
}

.video-destacado iframe {
    width: 100%;
    display: block; /* Elimina espacio extra debajo del iframe */
    border: none;
    aspect-ratio: 16 / 9; /* Mantiene la proporción 16:9 */
}

.subtitulo-grid {
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 20px;
    border-top: 2px solid #ecf0f1;
    padding-top: 30px;
    width: 80%;
    text-align: center;
}

/* --- Lógica para mostrar videos en Desktop vs Mobile --- */

/* Por defecto, mostramos la vista de escritorio y ocultamos la de móvil */
.videos-mobile {
    display: none;
}

.videos-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Cuando la pantalla es de 768px o menos (tablets y móviles) */
@media (max-width: 768px) {
    .videos-desktop {
        display: none; /* Ocultamos la vista de escritorio */
    }
    .videos-mobile {
        display: flex; /* Mostramos la vista de móvil */
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .video-destacado {
        width: 90%;
    }
}