*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    background-image: url(img/fondo.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
header{
  width: 80vw;
  height: 140px;
  margin: 20px auto;
  background-image: url(img/fondotitulo.jfif);
  background-size: 120%;
  background-position: left;
  border: 4px solid rgb(255, 180, 0);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 10px 10px 10px black;
  animation-name: titulo;
  animation-duration: 15000ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}

.imgizquierda{
  width: 7vw;
  margin-right: 40px;
  filter: drop-shadow(0 2px 5px rgb(219, 219, 219));
  transition: transform 0.3s ease; 
}
.imgcentro{
  width: 45vw;
  margin-right: 10px;
  margin-top: 10px;
  filter: drop-shadow(0 2px 5px rgb(219, 219, 219));
  transition: transform 0.3s ease; 
}
.imgderecha{
  width: 9vw;
  margin-left: 20px;
  filter: drop-shadow(0 2px 5px rgb(219, 219, 219));
  transition: transform 0.3s ease; 
}
.imgizquierda:hover {
  transform: scale(1.05); /* Zoom ligero al pasar el mouse */
}
.imgcentro:hover {
  transform: scale(1.05); /* Zoom ligero al pasar el mouse */
}
.imgderecha:hover {
  transform: scale(1.05); /* Zoom ligero al pasar el mouse */
}
@keyframes titulo{
  from{
      background-position: left;
  }
  to{
      background-position: top;
  }
}

/* Mantener el header y las imágenes en su posición original en cualquier pantalla */
@media (max-width: 1024px) {
  header {
      width: 80vw;
      height: 130px; /* Reducimos un poco la altura */
      margin: 15px auto; /* Ajuste fino arriba y abajo */
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .imgizquierda {
      width: 7vw;
      margin-right: 20px;
  }

  .imgcentro {
      width: 45vw;
      margin-right: 5px;
      margin-top: 10px;
  }

  .imgderecha {
      width: 9vw;
      margin-left: 10px; /* Ahora está más cerca del título */
  }
}

@media (max-width: 768px) {
  header {
      width: 80vw;
      height: 125px; /* Un poco más reducido */
      margin: 12px auto;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .imgizquierda {
      width: 7vw;
      margin-right: 15px;
  }

  .imgcentro {
      width: 45vw;
      margin-right: 5px;
      margin-top: 10px;
  }

  .imgderecha {
      width: 9vw;
      margin-left: 8px; /* Ahora está más cerca del título */
  }
}

@media (max-width: 480px) {
  header {
      width: 80vw;
      height: 120px; /* Último ajuste fino */
      margin: 10px auto;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .imgizquierda {
      width: 7vw;
      margin-right: 10px;
  }

  .imgcentro {
      width: 45vw;
      margin-right: 5px;
      margin-top: 10px;
  }

  .imgderecha {
      width: 9vw;
      margin-left: 5px; /* Ahora sí quedó justo donde debe estar */
  }
}

/* Menú */
nav{
    width: 80vw;
    height: 50px;
    margin: auto;
    background-color: black;
    border-radius: 10px;
    box-shadow: 2px 2px 12px black;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
a{
    padding: 4px 8px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    color: white;
    margin: auto;
    text-decoration: none;
    background-color: blueviolet;
    border-radius: 20px;
}
.m02 a{
    transition-property: background-color color padding;
    transition-duration: 500ms;
}
.m02 a:hover{
    background-color: blue;
    color: yellow;
    padding: 20px 15px;
    border: 2px solid white;
}

/* Para pantallas menores a 1024px (Laptops y Tablets) */
@media (max-width: 1024px) {
  nav {
      width: 80vw;
      height: 50px;
      display: flex;
      justify-content: space-evenly; /* Distribuye las opciones dentro del nav */
      align-items: center;
  }

  a {
      font-size: 12px;
      padding: 4px 8px;
      white-space: nowrap;
  }
}

/* Para pantallas menores a 768px (Tablets y móviles) */
@media (max-width: 768px) {
  nav {
      width: 90vw; /* Un poco más ancho para que los elementos quepan bien */
      height: auto; /* Permite que el nav se adapte al contenido */
      display: flex;
      flex-wrap: wrap; /* Permite que los enlaces se acomoden en varias líneas si es necesario */
      justify-content: center; /* Centra las opciones */
      padding: 10px 0;
  }

  a {
      font-size: 11px;
      padding: 5px 10px;
      margin: 5px; /* Espaciado entre opciones */
  }

  .m02 a:hover {
      padding: 5px 10px; /* Evita que crezca demasiado */
  }
}

/* Para pantallas menores a 480px (Móviles pequeños) */
@media (max-width: 480px) {
  nav {
      width: 95vw;
      height: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 10px 0;
  }

  a {
      font-size: 10px; /* Ajuste fino */
      padding: 5px 8px; /* Evita que se desborden */
      margin: 4px; /* Espaciado entre opciones */
  }

  .m02 a:hover {
      padding: 5px 8px; /* Evita que se agranden mucho */
  }
}

/* Inicio de la Página Web*/

.containerrichard {
  background-color: rgba(0, 16, 158, 0.849);
  padding: 20px;
  width: 80vw;
  height: 170px;
  margin: 20px auto;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
  display: flex;
  align-items: center;
}
.image-left-richard img, .image-right-richard img {
  width: 140px;
  height: 140px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
.content-richard {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10.5px;
  font-weight: 150;
  color: rgb(255, 255, 255);
  flex: 1;
  margin: 0 20px;
}

h7 {
  font-family: 'Saira Extra Condensed', sans-serif;
  color: rgb(255, 187, 0);
  font-size: 24px;
  text-shadow: 1px 1px 2px rgb(255, 255, 255);
}

h2{
    width: 490px;
    height: 35px;
    padding: 6px;
    background: linear-gradient(black, rgb(0, 140, 255), black);
    align-items: center;
}

.container100 {
  background-color: rgb(96, 210, 255);
  padding: 20px;
  width: 80vw;
  height: 170px;
  margin: 20px auto;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
  display: flex;
  align-items: center;
}
.image-left img, .image-right img {
  width: 140px;
  height: 140px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
.content {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 150;
  color: rgb(0, 0, 0);
  flex: 1;
  margin: 0 20px;
}
h1 {
  font-family: 'Saira Extra Condensed', sans-serif;
  color: rgb(172, 0, 0);
  font-size: 24px;
  text-shadow: 1px 1px 2px rgb(255, 255, 255);
}

.video-text-section1 {
    display: flex;
    align-items: center;
    margin: 20px;
    gap: 30px;
    padding: 30px;
    background-color: rgb(255, 174, 0);
    border-radius: 10px;
    box-shadow: 2px 2px 12px black;
  }
  
  .text-container1 {
    flex: 1;
  }
  
  .titut1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .parrat1 {
    width: 50vw;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
  }
  
  .video-container1 {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .video1 {
    width: 120%;
    height: 350px;
    border: none;
  }

  .fotosection {
    font-family: Arial, sans-serif;
    margin: 40px auto;
    padding: 0;
    background-color: #0035a8;
    border-radius: 10px;
    box-shadow: 2px 2px 12px black, 2px 2px 12px black;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 30px;
}

.gallery img {
    width: 210px;
    height: auto;
    border: rgb(255, 187, 0) 4px solid;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(131, 131, 131, 0.356);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.08);
}

.text-section1 {
  padding: 10px;
  text-align: center;
  background-color: #ffffff;
  margin: 10px 20px; 
  border-radius: 10px;
  box-shadow: 2px 2px 1px black;
  width: 80%;
  max-width: 800px;
}

.text-section1 p {
  font-size: 1em;
  line-height: 1;
  color: #000000;
}

.pachacele {
  background-color: white; /* Fondo blanco */
  border: 2px solid blue; /* Borde azul */
  padding: 10px; /* Espacio interior */
  max-width: 900px; /* Ancho máximo de la sección */
  margin: 20px auto; /* Centrar la sección */
}

.imagenpachacele {
  width: 100%; /* La imagen ocupa todo el ancho de la sección */
  height: auto; /* Mantiene la proporción de la imagen */
}

@media (max-width: 768px) {
  /* ========================= */
  /* ESPACIADO GENERAL PARA TODAS LAS SECCIONES */
  /* ========================= */
  .containerrichard, .container100, .video-text-section1 {
    display: flex;
    flex-direction: column; /* Para que se vea bien en móvil */
    align-items: center;
    justify-content: center;
    width: 90%; /* Reducir ancho para que no esté pegado a los extremos */
    max-width: 100%;
    height: auto;
    padding: 15px;
    margin: 0 auto; /* Centrar todo */
    box-sizing: border-box;
    border-radius: 10px; /* Esquinas redondeadas */
  }

  /* ========================= */
  /* AJUSTE DE IMÁGENES */
  /* ========================= */
  .image-left-richard img, .image-right-richard img,
  .image-left img, .image-right img {
    width: 170px;
    height: 150px;
    border-radius: 15px;
    margin: 10px; /* Separar un poco las imágenes */
  }

  /* ========================= */
  /* SECCIÓN AZUL Y CELESTE - TITULOS Y TEXTOS ORDENADOS */
  /* ========================= */
  .content-richard, .content {
    font-size: 14px;
    text-align: justify;
    width: 100%;
    padding: 10px;
  }

  /* Títulos bien alineados, no grandes ni desordenados */
  h2 {
    width: 100%;
    padding: 8px;
    font-size: 18px;
    text-align: center;
    background: linear-gradient(black, rgb(0, 140, 255), black);
    color: white;
    margin-bottom: 10px;
    border-radius: 5px;
  }

  h1 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
  }

  h7 {
    font-size: 18px;
    text-align: center;
    display: block;
    margin-bottom: 10px;
  }

  /* ========================= */
  /* SECCIÓN AMARILLA - BIEN ORDENADA */
  /* ========================= */
  .video-text-section1 {
    width: 90%;
    padding: 20px;
    margin: 15px auto;
    text-align: center;
    border-radius: 10px;
  }

  /* Ajustar el título */
  .titut1 {
    font-size: 13.5px;
    margin-bottom: 10px;
  }

  /* Contenedor de texto con margen */
  .text-container1 {
    width: 100%;
    max-width: 90%;
    padding: 10px;
  }

  /* Párrafo con buen espaciado */
  .parrat1 {
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
    text-align: justify;
    padding: 5px;
  }

  /* Ajustar el contenedor del video */
  .video-container1 {
    width: 100%;
    max-width: 70%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-top: -30px;
  }

  /* Video bien alineado y sin salirse */
  .video1 {
    width: 100%;
    height: auto;
    max-height: 250px;
    border-radius: 8px;
  }

  /* ========================= */
  /* SECCIÓN DE FOTOS */
  /* ========================= */
  .fotosection {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .gallery img {
    width: 160px;
    height: auto;
  }

  /* ========================= */
  /* SECCIÓN DE TEXTO */
  /* ========================= */
  .text-section1 {
    width: 90%;
    font-size: 1em;
    padding: 15px;
    text-align: center;
    margin: 10px auto;
    border-radius: 10px;
  }

  .pachacele {
    width: 90%;
    padding: 10px;
    border-radius: 10px;
  }
}

/* Nosotros Section*/

.container101 {
  background-color: rgba(0, 183, 255, 0.849);
  padding: 20px;
  width: 80vw;
  height: 170px;
  margin: 20px auto;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
  display: flex;
  align-items: center;
}
.image-left1 img, .image-right1 img {
  width: 140px;
  height: 140px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
.content1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 150;
  color: rgb(0, 0, 0);
  flex: 1;
  margin: 0 20px;
}
h4 {
  font-family: 'Saira Extra Condensed', sans-serif;
  color: rgb(158, 0, 0);
  font-size: 20px;
  text-shadow: 2px 2px 2px rgb(255, 255, 255);
}

.familia-anglas-section {
  background-color: rgb(255, 173, 49); /* Fondo verde */
  border: 4px solid yellow; /* Borde amarillo */
  padding: 20px;
  width: 80%; /* Ancho de la sección */
  max-width: 900px; /* Máximo tamaño */
  margin: 20px auto; /* Centrar la sección */
  text-align: center;
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 2px 2px 12px black;
}

h8 {
  width: 100%;
  padding: 8px;
  font-size: 18px;
  text-align: center;
  background: linear-gradient(rgb(139, 0, 0), rgb(255, 255, 255), rgb(139, 0, 0));
  color: white;
  margin-bottom: 10px;
  border-radius: 5px;
}

.familia-anglas-title {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 24px;
  color: rgb(0, 0, 0);
  text-shadow: 1px 1px 2px black;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.familia-anglas-img {
  width: 100%; /* Ajustar tamaño */
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto 15px auto; /* Centrar y dar espacio abajo */
  border-radius: 10px; /* Bordes redondeados */
  border: 3px solid yellow; /* Borde amarillo */
}

.familia-anglas-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: rgb(0, 0, 0);
  text-align: justify;
  padding: 10px;
}

.entrevista{
  display: flex;
  align-items: center;
  margin: 20px;
  gap: 30px;
  padding: 20px;
  background-color: #0026ff;
  border-radius: 10px;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.entrevista-contenedor{
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.videoentrevista{
  width: 100%;
  height: 315px;
  border: 2px solid white;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.text-entrevista {
  flex: 1;
}

.tituentre {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #000000;
}

.parratentre{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

h5{
  width: 490px;
  height: 35px;
  padding: 6px;
  background: linear-gradient(rgb(255, 255, 255), rgb(255, 200, 82), rgb(255, 255, 255));
  align-items: center;
  box-shadow: 2px 2px 12px black;
}

.entrevistaperu{
  display: flex;
  align-items: center;
  margin: 20px;
  gap: 30px;
  padding: 20px;
  background-color: #0099ff;
  border-radius: 10px;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.entrevistaperu-contenedor{
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.videoentrevistaperu{
  width: 100%;
  height: 315px;
  border: 2px solid white;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.text-entrevistaperu {
  flex: 1;
}

.tituentreperu {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 15.5px;
  margin-bottom: 15px;
  color: #000000;
}

.parratentreperu{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

h5{
  width: 490px;
  height: 35px;
  padding: 6px;
  background: linear-gradient(rgb(255, 255, 255), rgb(255, 200, 82), rgb(255, 255, 255));
  align-items: center;
  box-shadow: 2px 2px 12px black;
}

.images-anima {
  width: 90vw;
  height: 550px;
  margin: 20px auto;
  background-image: url(img/tiraadetina2.png);
  background-size: 4000%;
  background-position: left;
  border: 10px solid transparent; 
  border-image-source: url('img/dorado.jpg'); 
  border-image-slice: 10%; 
  border-image-width: 10px; 
  border-image-repeat: stretch;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 10px 10px 10px black;
  animation-name: fondo;
  animation-duration: 100000ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}

@keyframes fondo {
    from {
        background-position: left;
    }
    to {
        background-position: right;
    }
}

.video-text-section2 {
  display: flex;
  align-items: center;
  margin: 20px;
  gap: 30px;
  padding: 30px;
  background-color: rgb(255, 174, 0);
  border-radius: 10px;
  box-shadow: 2px 2px 12px black;
}
  
.text-container2 {
  flex: 1;
}
  
.titut2 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffffff;
}
  
.parrat2 {
  width: 50vw;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #000000;
}
  
.video-container2 {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
  
.video2 {
  width: 120%;
  height: 350px;
  border: none;
}

.video-text-section3 {
  display: flex;
  align-items: center;
  margin: 20px;
  gap: 30px;
  padding: 30px;
  background-color: rgb(123, 255, 71);
  border-radius: 10px;
  box-shadow: 2px 2px 12px black;
}
  
.text-container3 {
  flex: 1;
}
  
.titut3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 15px;
  margin-bottom: 15px;
  color: #ffffff;
}
  
.parrat3 {
  width: 50vw;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #000000;
}
  
.video-container3 {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
  
.video3 {
  width: 120%;
  height: 350px;
  border: none;
}

@media screen and (max-width: 768px) {
  .container101, .entrevista, .entrevistaperu, 
  .video-text-section2, .video-text-section3 {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  /* ========================= */
  /* ESPACIADO GENERAL PARA TODAS LAS SECCIONES */
  /* ========================= */
  .container101 {
    display: flex;
    flex-direction: column; /* Para que se vea bien en móvil */
    align-items: center;
    justify-content: center;
    width: 90%; /* Reducir ancho para que no esté pegado a los extremos */
    max-width: 100%;
    height: auto;
    padding: 15px;
    margin: 20 auto; /* Centrar todo */
    box-sizing: border-box;
    border-radius: 10px; /* Esquinas redondeadas */
  }

  /* ========================= */
  /* AJUSTE DE IMÁGENES */
  /* ========================= */
  .image-left-1 img, .image-right-1 img {
    width: 170px;
    height: 150px;
    border-radius: 15px;
    margin: 10px; /* Separar un poco las imágenes */
  }

  .content1 {
      margin: 10px 0;
  }

  .videoentrevista, .videoentrevistaperu, .video2, .video3 {
      width: 100%;
      height: auto;
  }

  .parrat2, .parrat3 {
      width: 100%;
  }

  .titutentre, .titutentreperu .titut2, .titut3 {
      font-size: 12px;
      text-align: center;
  }

  .familia-anglas-section {
      width: 95%;
  }

  .familia-anglas-img {
      width: 100%;
      max-width: 500px;
  }

/* Corrección para mostrar correctamente la tira de imágenes */
.images-anima {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto; 
  width: 90vw;
  height: 200px;
  background-size: cover;
  justify-content: center;
  align-items: center;
  gap: 10px;
  }
  
  .images-anima img {
  max-width: 300px; 
  height: auto;
  flex-shrink: 0;
  }
}

/*Vitoc*/

.video-text-section4{
    display: flex;
    align-items: center;
    margin: 20px;
    gap: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 2px 2px 12px black;
}
  
.video-container4{
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}
  
.video4{
    width: 100%;
    height: 315px;
    border: none;
}
  
.text-container4 {
    flex: 1;
}
  
.tituletra {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}
  
.parrat4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

.seccion-videos200 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 2px solid rgb(25, 0, 255);
  border-radius: 8px;
  margin: 30px;
  box-shadow: 2px 2px 12px black;
  padding: 20px;
  margin-bottom: 20px;
}

.video-container200 {
  margin: 0 20px;
}

.señordemuruhuay {
  background-color: white; /* Fondo blanco */
  border: 2px solid blue; /* Borde azul */
  padding: 10px; /* Espacio interior */
  max-width: 900px; /* Ancho máximo de la sección */
  margin: 20px auto; /* Centrar la sección */
}

.imagenmuruhuay {
  width: 100%; /* La imagen ocupa todo el ancho de la sección */
  height: auto; /* Mantiene la proporción de la imagen */
}

.bailantes {
  background-color: white; /* Fondo blanco */
  border: 2px solid blue; /* Borde azul */
  padding: 10px; /* Espacio interior */
  max-width: 900px; /* Ancho máximo de la sección */
  margin: 20px auto; /* Centrar la sección */
}

.imagenbailantes {
  width: 100%; /* La imagen ocupa todo el ancho de la sección */
  height: auto; /* Mantiene la proporción de la imagen */
}

/* Diseño responsivo */
@media (max-width: 768px) {
  .video-text-section4,
  .seccion-videos200 {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 90%;  /* Ajuste para no sobresalir de la pantalla */
    margin: 20 auto;  /* Centrado */
    padding: 10px;  /* Espacio interior */
  }

  .video-container4,
  .video-container200,
  .señordemuruhuay,
  .bailantes {
    width: 100%;
    max-width: 100%;
    padding: 10px; /* Espacio interior para evitar que estén pegados a los bordes */
  }

  .video4 {
    height: 250px;
    width: 100%;
  }

  .tituletra, .parrat4 {
    font-size: 18px;
    text-align: center;
    width: 100%;
  }

  .imagenmuruhuay,
  .imagenbailantes {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .video-text-section4,
  .seccion-videos200 {
    width: 90%;  /* Ajuste para no sobresalir de la pantalla */
    padding: 10px; /* Espacio interior */
  }

  .video4 {
    height: 200px;
    width: 100%;
  }

  .tituletra, .parrat4 {
    font-size: 16px;
    text-align: center;
    width: 100%;
  }

  .imagenmuruhuay,
  .imagenbailantes {
    width: 100%;
    height: auto;
  }
}

/* adt section */

.video-adt{
  display: flex;
  align-items: center;
  margin: 20px;
  gap: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 2px 2px 12px black;
}

.video-adt1{
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.videoadt{
  width: 100%;
  height: 315px;
  border: none;
}

.text-adt {
  flex: 1;
}

.tituadt {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffffff;
}

.parratadt{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

.fotoadt {
  background-color: white; /* Fondo blanco */
  border: 2px solid blue; /* Borde azul */
  padding: 10px; /* Espacio interior */
  max-width: 900px; /* Ancho máximo de la sección */
  margin: 20px auto; /* Centrar la sección */
}

.imagenadt {
  width: 100%; /* La imagen ocupa todo el ancho de la sección */
  height: auto; /* Mantiene la proporción de la imagen */
}

.contenedor-principal {
  width: 90%; 
  max-width: 800px; 
  margin: 20px auto; 
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  min-height: 100vh; 
}

.video-text-section5 {
  background-color: #ffffff; 
  border: 3px solid #1976d2; 
  border-radius: 10px; 
  padding: 15px;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black; 
  width: 100%; 
}

.fotosection1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 15px; 
  width: 100%; 
}

.img12 {
  width: 100%; 
  max-width: 400px; 
  height: auto; 
  border-radius: 8px; 
  box-shadow: 2px 2px 12px black; 
  transition: transform 0.3s ease; 
}

.img12:hover {
  transform: scale(1.05); /* Zoom ligero al pasar el mouse */
}

iframe {
  width: 100%; 
  height: 200px; 
  border-radius: 8px; 
  box-shadow: 2px 2px 12px black;
}

.text-container5 {
  background-color: white;
  border-radius: 10px; 
  padding: 12px;
  margin-top: 15px; 
  box-shadow: 2px 2px 12px black; 
  text-align: center; 
  width: 90%; 
}

.parrat6 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem; 
  line-height: 1.5;
  color: #333; 
  margin: 0; 
}

/* Diseño responsivo */ 
@media (max-width: 768px) { 
  .contenedor-principal, .video-text-section5, .text-container5, .fotoadt { 
    width: 95%; 
    max-width: 100%; 
    padding: 15px; }

    .video-adt {
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 95%;
      max-width: 100%;
    }
  
    .videoadt { 
      height: 250px; 
      width: 100%;
    }
  
    .tituadt, .parratadt {
      text-align: center;
      width: 100%;
      font-size: 18px;
    }
  }
  
  @media (max-width: 480px) { 
    .videoadt { 
      height: 200px; 
      width: 100%;
    }
  
    .tituadt, .parratadt {
      text-align: center;
      width: 100%;
      font-size: 16px;
    }
  }

/* barra */

.video-barra{
  display: flex;
  align-items: center;
  margin: 20px;
  gap: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 2px 2px 12px black;
}

.video-barra4{
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.videobarra4{
  width: 100%;
  height: 315px;
  border: none;
}

.text-barra4 {
  flex: 1;
}

.titubarra {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffffff;
}

.parratbarra {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

.pinkis {
  background-color: rgba(255, 152, 255, 0.849);
  padding: 20px;
  width: 80vw;
  height: 170px;
  margin: 20px auto;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
  display: flex;
  align-items: center;
}
.image-left-pink img, .image-right-pink img {
  width: 140px;
  height: 140px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
.content-pinkis {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 150;
  color: rgb(0, 0, 0);
  flex: 1;
  margin: 0 20px;
}

h6 {
  font-family: 'Saira Extra Condensed', sans-serif;
  color: rgb(119, 0, 255);
  font-size: 24px;
  text-shadow: 1px 1px 2px rgb(255, 255, 255);
}

.seccion-videos {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 2px solid rgb(25, 0, 255);
  border-radius: 8px;
  margin: 30px;
  box-shadow: 2px 2px 12px black;
  padding: 20px;
  margin-bottom: 20px;
}

.video-container {
  margin: 0 20px;
}

.seccion-texto {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  background-color: white;
  border: 2px solid rgb(25, 0, 255);
  border-radius: 8px;
  margin: 30px;
  box-shadow: 2px 2px 12px black;
  padding: 20px;
}

.pachacele2 {
  background-color: white; /* Fondo blanco */
  border: 2px solid blue; /* Borde azul */
  padding: 10px; /* Espacio interior */
  max-width: 900px; /* Ancho máximo de la sección */
  margin: 20px auto; /* Centrar la sección */
}

.imagenpachacele2 {
  width: 100%; /* La imagen ocupa todo el ancho de la sección */
  height: auto; /* Mantiene la proporción de la imagen */
}

@media (max-width: 768px) {
  /* ========================= */
  /* ESPACIADO GENERAL PARA TODAS LAS SECCIONES */
  /* ========================= */
  .pinkis, .video-barra, .seccion-videos, .seccion-texto, .pachacele2 {
    display: flex;
    flex-direction: column; /* Para que se vea bien en móvil */
    align-items: center;
    justify-content: center;
    width: 90%; /* Reducir ancho para que no esté pegado a los extremos */
    max-width: 100%;
    height: auto;
    padding: 15px;
    margin: 20px auto; /* Centrar todo */
    box-sizing: border-box;
    border-radius: 10px; /* Esquinas redondeadas */
  }

  /* ========================= */
  /* AJUSTE DE IMÁGENES */
  /* ========================= */
  .image-left-pink img, .image-right-pink img {
    width: 170px;
    height: 150px;
    border-radius: 15px;
    margin: 10px; /* Separar un poco las imágenes */
  }
}  

/* costumbres*/
section {
  width: 950px;
  padding: 30px;
  display: flex;
  justify-content: space-between; 
  align-items: flex-start;
  background-color: rgba(255, 196, 0, 0.8);
  border-top: 2px solid rgb(255, 255, 255);
  margin: 10px auto 30px; 
}

h3 {
  width: 490px;
  height: 35px;
  padding: 6px;
  background: linear-gradient(black, rgb(52, 163, 0), black);
  display: flex;
  align-items: center; 
}

.tit {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffffff;
}

.der1 {
  width: 30%;
}

.der1 img {
  width: 250px;
  border: 3px solid transparent; 
}

.parr25 {
  width: 90%;
  color: rgb(0, 0, 0);
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 100;
  margin-top: -40px; 
}

@media (max-width: 768px) { 
  section { 
    flex-direction: column; 
    align-items: center; 
    width: 95%; 
    max-width: 95%; 
    padding: 15px; 
  }

h3 { 
  width: 95%; 
  max-width: 95%; 
  text-align: center; 
}

.tit { 
  font-size: 18px; 
  text-align: center; 
}

.der1 { 
  width: 100%; 
  text-align: center; 
}

.der1 img { 
  width: 80%; 
  max-width: 250px; 
  height: auto; 
}

.parr25 { 
  width: 100%; 
  text-align: justify; 
  margin-top: 2; 
} 
}

/* redes sociales*/

.amigosleon {
  background-color: white; /* Fondo blanco */
  border: 2px solid blue; /* Borde azul */
  padding: 10px; /* Espacio interior */
  max-width: 900px; /* Ancho máximo de la sección */
  margin: 20px auto; /* Centrar la sección */
}

.imagenleon {
  width: 100%; /* La imagen ocupa todo el ancho de la sección */
  height: auto; /* Mantiene la proporción de la imagen */
}

.contenedor12 {
  display: flex;
  align-items: center;
  background-color: white;
  border: 5px solid blue;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 2px 2px 12px black;
  max-width: 1200px;
  width: 95%;
  margin: 20px auto;
  box-sizing: border-box;
}

.video12 {
  flex: 1;
  margin-right: 20px;
}

.texto12 {
  flex: 1;
}

.parrat5 {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 1.5;
}

.seccion-redes {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 3px solid #007BFF;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 95%;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 2px 2px 12px black;
}

.boton-red {
  display: flex;
  background-color: #353535;
  align-items: center;
  margin: 0 15px;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.boton-red:hover {
  transform: translateY(-5px);
}

.icono-red {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.nombre-red {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  /* ========================= */
  /* ESPACIADO GENERAL PARA TODAS LAS SECCIONES */
  /* ========================= */
  .amigosleon, .seccion-redes, .contenedor12 {
    display: flex;
    flex-direction: column; /* Para que se vea bien en móvil */
    align-items: center;
    justify-content: center;
    width: 90%; /* Reducir ancho para que no esté pegado a los extremos */
    max-width: 100%;
    height: auto;
    padding: 15px;
    margin: 20px auto; /* Centrar todo */
    box-sizing: border-box;
    border-radius: 10px; /* Esquinas redondeadas */
  }
}

/* Música*/

.musica-section{
  display: flex;
  align-items: center;
  margin: 20px;
  gap: 30px;
  padding: 20px;
  background-color: #000980;
  border-radius: 10px;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.musica-contenedor{
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.videomusica{
  width: 100%;
  height: 315px;
  border: 2px solid white;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.text-musica {
  flex: 1;
}

.titumusic {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #000000;
}

.parratmusic{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

h5{
  width: 490px;
  height: 35px;
  padding: 6px;
  background: linear-gradient(rgb(0, 0, 0), rgb(255, 200, 82), rgb(0, 0, 0));
  align-items: center;
  box-shadow: 2px 2px 12px black;
}

.musica-section1{
  display: flex;
  align-items: center;
  margin: 20px;
  gap: 30px;
  padding: 20px;
  background-color: #00aeff;
  border-radius: 10px;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.musica-contenedor1{
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.videomusica1{
  width: 100%;
  height: 315px;
  border: 2px solid white;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.text-musica1 {
  flex: 1;
}

.titumusic1 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #000000;
}

.parratmusic1{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

h5{
  width: 490px;
  height: 35px;
  padding: 6px;
  background: linear-gradient(rgb(255, 255, 255), rgb(255, 200, 82), rgb(255, 255, 255));
  align-items: center;
  box-shadow: 2px 2px 12px black;
}

.musica-section2{
  display: flex;
  align-items: center;
  margin: 20px;
  gap: 30px;
  padding: 20px;
  background-color: #88ff00;
  border-radius: 10px;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.musica-contenedor2{
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.videomusica2{
  width: 100%;
  height: 315px;
  border: 2px solid white;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.text-musica2 {
  flex: 1;
}

.titumusic2 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #000000;
}

.parratmusic2{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

h5{
  width: 490px;
  height: 35px;
  padding: 6px;
  background: linear-gradient(rgb(255, 255, 255), rgb(255, 200, 82), rgb(255, 255, 255));
  align-items: center;
  box-shadow: 2px 2px 12px black;
}

.musica-section3{
  display: flex;
  align-items: center;
  margin: 20px;
  gap: 30px;
  padding: 20px;
  background-color: #ffae33;
  border-radius: 10px;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.musica-contenedor3{
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.videomusica3{
  width: 100%;
  height: 315px;
  border: 2px solid white;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.text-musica3 {
  flex: 1;
}

.titumusic3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #000000;
}

.parratmusic3{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

h5{
  width: 490px;
  height: 35px;
  padding: 6px;
  background: linear-gradient(rgb(255, 255, 255), rgb(255, 200, 82), rgb(255, 255, 255));
  align-items: center;
  box-shadow: 2px 2px 12px black;
}

.musica-section4{
  display: flex;
  align-items: center;
  margin: 20px;
  gap: 30px;
  padding: 20px;
  background-color: #c78cff;
  border-radius: 10px;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.musica-contenedor4{
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.videomusica4{
  width: 100%;
  height: 315px;
  border: 2px solid white;
  box-shadow: 2px 2px 12px black, 2px 2px 12px black;
}

.text-musica4 {
  flex: 1;
}

.titumusic4 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #000000;
}

.parratmusic4{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

h5{
  width: 490px;
  height: 35px;
  padding: 6px;
  background: linear-gradient(rgb(255, 255, 255), rgb(255, 200, 82), rgb(255, 255, 255));
  align-items: center;
  box-shadow: 2px 2px 12px black;
}

/* Media query para pantallas pequeñas */ 
@media (max-width: 768px) { 
.musica-section, .musica-section1, .musica-section2, .musica-section3, .musica-section4 { 
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
  gap: 10px; 
  margin: 20px auto; 
  padding: 10px; 
  width: 95%; 
  max-width: 95%; 
  box-sizing: border-box; 
}

.videomusica, .videomusica1, .videomusica2, .videomusica3, .videomusica4 {
  height: auto;
  max-width: 100%;
  box-sizing: border-box;
}

h5 {
  width: 95%;
  max-width: 90%;
  box-sizing: border-box;
  margin: 0 auto;
}
.titumusic, .titumusic1, .titumusic2, .titumusic3, .titumusic4 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}
}

/* Footer */
.footer {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #2c2c2c;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-contenido {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-texto {
  font-size: 16px;
  margin: 0 0 10px 0;
}

.footer-copy {
  font-size: 12px;
  color: #ecf0f1;
  margin: 10px 0 0 0;
}