body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  max-width: 100%;
  overflow-x: hidden; /* Corregido */
  position: relative;
  }
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: white;
  }
  

  {
    font-family: sans-serif;
  }
/* INFORMACION GENERAL DEL BODY DE LA PAGINA------------------------------------------------------------------- */
  
 
  .fondo1{
     background-image: url('img/PLANTILLA\ 2.png');
  background-size: center;
  background-position: center center;
      background-repeat: ;
    }
    
    /*------------------------ menu fondo y otras cosas-------------------------------------------------------- */
    
.menu-toggle {
  position: fixed;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  z-index: 10002;
  cursor: pointer;
}

.menu-icon {
  width: 100%;
  height: 100%;
  background-image: url("img/diseños/boton\ menu.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.menu {
  display: none;
  position: absolute;
  background-color: #f9a825;
  list-style: none;
  padding: 10px;
  border-radius: 10px;
  z-index: 10001;

}

.menu.active {
  display: block; 

}

.menu li {
  padding: 8px 12px;
}

.menu li a {
  color: white;
  text-decoration: none;
}


#menu-btn {
  background-color: #555;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  background-image: url("../img/diseños/boton menu.jpg");
}

/* Estilos del menú responsive ------------------------------------------------------------------------------*/
.respmenu {
  color: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  text-shadow: 10px 3px 3px rgba(0, 0, 0, 0.3);
  min-height: 48px; 
}

/* Enlaces del menú */
.respmenu a {
  color: inherit;
  text-decoration: none;
  z-index: 10001;
  display: block;
  padding: 10px 20px;
  border-bottom: 7px solid #0c0c0c;
  max-width: 200px;
  background: #f9a825;
  font-variant: small-caps;
  text-shadow: 1.5px 1px black;
  background-color: #f9a825;
}

/* Checkbox invisible que controla el menú */
.respmenu input[type="checkbox"] {
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 48px;
  height: 48px;
  z-index: 10002;
  cursor: pointer;
}

/*----------------------------------------------------------- Imagen personalizada para el botón hamburguesa */
.respmenu .menu-icon {
  position: fixed;
  right: 0;
  top: 0;
  width: 48px;
  height: 48px;
  
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10001;
  pointer-events: none;
}

/* Ocultar iconos Font Awesome si usas imagen personalizada */
.respmenu .fa-bars,
.respmenu .fa-times {
  display: none;
}

/* -----------------------------propiedades del menu de hamburguesa como lo es el tamaño y la posicion de la misma */
.respmenu nav {
  display: none;
  position: fixed;
  top: 50px;
  right: 0;
  background-color: #000;
  width: 250px;
  height: auto;
  z-index: 10001;
  border-left: 3px solid #f9a825;
  
  box-shadow: -3px 0 10px rgba(0,0,0,0.5);

}

/* Mostrar navegación cuando el checkbox está activo */
.respmenu input:checked ~ nav {
  display: block;
}

/* Ocultar icono de apertura cuando el menú está abierto */
.respmenu input:checked ~ .fa-bars {
  display: none;
}

/* Ocultar icono de cierre cuando el menú está cerrado */
.respmenu input:not(:checked) ~ .fa-times {
  display: none;
}

/* Overlay para cerrar el menú al hacer clic fuera */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.3);
   
}

/* Mostrar overlay cuando el menú está activo */
.respmenu input:checked ~ .overlay {
  display: block;
}
/* letras primera portada-------------------------------------------------------------------------- */


  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;           
    height: 90vh;
    color: white;
    animation: fadeIn 2s ease-in-out;
    animation: scrollText 10s linear infinite;
    background-position-x:CENTER;
    


  
  }

  h3 {
    animation:reverse;
    .link-h3 {
  color: inherit;         /* Hereda el color del h3 */
  text-decoration: none;  /* Quita el subrayado */
  font-weight: inherit;   /* Hereda el peso de la fuente */
  display: inline-block;  /* Permite aplicar estilos como si fuera texto */
}

  }
  
  h1 {
    text-align: center;
    font-size: 3rem;
    margin: 0;
    animation: slideIn 2s ease-in-out;
    -webkit-animation-play-state: running;
    margin-top: 0%;
    text-decoration-color: #f9a825;
    font-family: 'Arial', sans-serif; /* Fuente de la letra */
  text-shadow: 10px 3px 3px rgba(0, 0, 0, 0.3); 
  
    h1 {
        white-space: nowrap;
        overflow: hidden;
        
      }
      
      @keyframes scrollText {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-100%);
        }
      }  
  }
  /* letras del inicio q rebotan-------------------------------------------------------------------------------- */
  .subtext {
    margin: 10px 0;
    font-size: 1.0rem;
    animation: fadeIn 6s ease-in-out;
    animation-iteration-count: infinite;
    
  }
  
  .btn {
    padding: 10px 50px;
    background-color: #f9a825;
    color: white;
    text-decoration:solid;
    font-size: 3;
    border-radius: 5px;
    margin-top: 10%;
    animation: bounce 1s infinite;
       
  }
  
  .btn:hover {
    background-color: #fbc02d;
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(-1000%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  
  
  /*----------------- IMAGENES QUE DESPLAZAN A UN LADO------------------------------------------------------------------ */
  
  
  /* Carrusel principal */
.carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 70vh; /* 70% de la altura de la pantalla */
  position: relative;
  border-bottom-left-radius: 30%;
  border-top-right-radius: 5%;
  background-position-x: right;
}

/* 🎵 Gancho para audio */
.carousel.audio-active::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  background: url('AUDIOS/carrusel.mp3') repeat;
  animation: triggerAudio 0.1s forwards;
}

@keyframes triggerAudio {
  0% { visibility: hidden; }
  100% { visibility: hidden; }
}

/* Pista del carrusel */
.carousel-track {
  display: flex;
  animation: slide 30s linear infinite;
  height: 100%;
}

/* Imágenes del carrusel */
.carousel img {
  min-width: 100%;
  height: 100%;
  object-fit: cover; /* --------------------------------------------Asegura que la imagen se recorte sin distorsión */
  animation: slide 25s linear infinite;
}

/* Animación de desplazamiento */
@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-1000%);
  }
}

/* Contenido que sigue al carrusel */
#news-events {
  margin-top: 0;
  padding-top: 20px;
}

   /*------------------------------------- Espacio entre el carrusel y el contenido siguiente */


/*------------------------------------------------ Estilos para dispositivos grandes (ordenadores) -------------------*/
@media (min-width: 1024px) {
  /* PC y pantallas grandes */
  .contenedor {
    max-width: 1200px;
    margin: 20px; auto;
    padding: 2rem;
    background-repeat: no-repeat;
    position: center  ;
  }

  .elemento {
    font-size: 1.2rem;
  }
}

/* Estilos para tablets */
@media (min-width: 768px) {
  /* Tablets y arriba */
  .contenedor {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }

  .elemento {
    width: 45%;
  }
}


/* ------------------------------------------Estilos para teléfonos móviles------------------------------------------ */
@media screen and (max-width: 767px){
  body {
    font-size: 15px;
    margin: 0.5px;
  
  }

  .contenedor {
    flex-direction: column;
    align-items: center;
  }

  .elemento {
    width: 100%;
  }
}


/* -------------------------------------------------------------------------FUNDACION MONARKA  .................. */


header {
  background-color: #4CAF50;
  color: white;
  padding: 20px;
  text-align: center;
  background-image: url("img/m.jpeg"); 
}

.fundacion {
  margin: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-image: url("img/Servicios-de-Produccion-Musical.png"); 
    /*--------------------------------------------------------------------------------------------------- fondo inicial */
  
}

.color{
color: #ddd;
}
.fundacion h2 {
  color: #d19b45;
  text-align: center;
  opacity: 90%;
}

.donaciones, .contacto {
  margin-top: 20px;
  background-repeat: no-repeat;
}
l
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

/* --------------------------------------------------------seccion defondo de academia de baile  .................. */


#news-events {
  padding: 2rem;
  background-color: #665899;
  text-align: center;
  background-image: url("img/fondo\ noticias1.jpg");
   max-width: 600px;
  margin: 0 auto;
}

#news-events h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.event-container {
  position: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width:500px;
}


.event {
  background-color: #343a38;
  padding: 0.5rem;
  border-radius: 3px;
  box-shadow: 0 4px 5px rgba#f7f5f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  text-align: center;
  margin-top: %;
}

.event img {
  width: 100%;
  border-radius: 0px;
  margin-bottom: 3rem;
}

.event:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba#fcf7f7;
  max-width:;

}

.event h3 {
  font-size: 1.5rem;
  color: #fcf7f7;
  margin-bottom: 0.5rem;
}

.event1{
padding: 2rem;
  background-color: #29292b;
  text-align: center;
  background-image: url("img/");
  
}
/* --------------------------------------------------------------------flecha para desplazar .................. */
    body {
      margin: 0;
      padding: 0;
    }

    .gif-overlay {
      outline-color: #ffa006;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      pointer-events: none; /* para que no interfiera con clics */
      z-index: 9999; /* asegura que esté sobre todo */
    }

    .gif-overlay img {
      width: 30%;
      height: 20%;
      object-fit: cover;
      opacity: 20%;
     position: fixed;         /* Fija la imagen en la pantalla */
    bottom: 10px;            /* Distancia desde abajo */
    right: 5px;             /* Distancia desde la derecha */
    width: 100px;            /* Ajusta el tamaño si lo necesitas */
    z-index: 700;   
 mix-blend-mode: multiply;
  filter: hue-rotate(120deg) brightness(1.5) contrast(1.2);
     
 }

 
.video-fondo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* ------------------------------------------------------------imagende fondo para quienes somos? .................. */
 .fondo-imagen {
    opacity: ;
    background-size: ;                 /* Ajusta la imagen al tamaño del elemento */
    background-repeat: no-repeat;           /* Evita que la imagen se repita */
    background-position: ;            /* Centra la imagen */
    padding: 20px;                          /* Espacio interno para que el texto se vea bien */
    color: white;                           /* Color del texto para que resalte */
    position: ;
    ;
    position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1; /* Si quieres que esté de fondo */
  }

/* --------------------------------------------whatsap .................. */

 
.whatsapp-icon {
  position: fixed;
  bottom: 16%; /* Esto lo posiciona a un 75% del tope al piso */
  left: 10px; /* Separación del borde derecho */
  z-index: 9999; /* Asegura que esté por encima de todo */
}

.whatsapp-icon img {
  width: 50px; /* Tamaño del icono */
  height: auto;
  border-radius: 45%; /* Opcional, para estilo circular */
  box-shadow: 0 2px 6px rgba(2, 218, 38, 0.3); /* Sombra elegante */
}



/* -------------------------------------seccion estudio fotos el fondo  .................. */


#news-even {
  padding: 2rem;
  background-color: #665899;
  text-align: center;
  background-image: url("img/diseños/estudio\ foto.JPG");
   max-width: 600px;
  margin: 0 auto;
}

#news-events h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.event-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width:500px;
}


.event {
  background-color: #343a38;
  padding: 0.5rem;
  border-radius: 3px;
  box-shadow: 0 4px 5px rgba#f7f5f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  text-align: center;
  margin-top: %;
}

.event img {
  width: 100%;
  border-radius: 0px;
  margin-bottom: 3rem;
}

.event:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba#fcf7f7;
  max-width:;

}

.event h3 {
  font-size: 1.5rem;
  color: #fcf7f7;
  margin-bottom: 0.5rem;
}

.event1{
padding: 2rem;
  background-color: #29292b;
  text-align: center;
  background-image: url("img/");


}
/* --------------------------------------------imagende fondo para artistas firmados? .................. */



.titulo-dorado {
  background: linear-gradient(45deg, #f5d76e, #d4af37, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px black;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
   color: rgb(19, 19, 19); /* O el color que prefieras */
  text-shadow: -2px -2px 4px rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------videos de youtube .................. */

.contenedor-superpuest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0px 0px;
  background-color: #111;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
  
}

.contenedor-superpuest iframe {
  width: 95%;
  max-width: 470px;
  height: 240px;
  border: 4px solid #b40c0c;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.contenedor-superpuest iframe:hover {
  transform: scale(1.03);
}




</style>