* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body {
    height: 100vh;
    background-color: rgb(45, 43, 43, 1000);
    /* background-color: rgb(150, 60, 60); */
}

@font-face {
    font-family: "avenue";
    src: url(fuente1/avenue.ttf) format("woff2"),
         url(fuente1/avenue.woff) format("woff"),
         url(fuente1/avenue.ttf) format("truetype");
}

/* --------------------------- HEADER ------------------------------ */
header {
    height: 20%;
    /* background-color: blueviolet; */
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.imagen {
    border-radius: 60px;
    border: 2px solid rgb(22, 244, 207);
    height: 100px;
    width: 300px;
}

nav {
    /* border: 2px solid red; */
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    font-size: 20px;
    color: white;
    text-decoration: none;
    background-color: rgb(23, 210, 67);
    border-radius: 8px;
    border: 2px solid rgb(22, 244, 207);
    padding: 10px;
}

nav a:hover {
    background-color: red;
}

/* --------------------------- CUERPO ------------------------------ */
section {
    /* background-image: url(./img/bag.png); */
    background-color: rgba(35, 35, 33, 200);
    padding: 30px;
    height: 60%;
    /* background-color: brown; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.texto {
    color: rgb(147, 137, 137);
    font-size: 25px;
    width: 75vh;
    text-align: justify;
    font-family: "avenue", Arial, Helvetica, sans-serif;
}

.genero {
    height: 50vh;
    width: 50vh;
    background-color: white;
}

section h2 {
    color: brown;
    font-family: sans-serif;
}

.bordesVideo {
  border: solid rgb(22, 244, 207);
  border-radius: 5px;
}
.logueando {
  border: solid rgb(22, 244, 207);
  border-radius: 5px;
  padding: 20px;
  height: 400px;
  background-color: red;
}

.parafoVideo {
    text-align: center;
    color: rgb(84, 190, 173);
}

/*CONTACTA CON NOSOTROS*/



/* Body ocupa toda la pantalla y elimina márgenes */
.body1 {
  overflow-y: auto;
  min-height: 150vh;      /* altura de toda la ventana */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;  /* apila los elementos hijos verticalmente UNO DEBAJO DEL OTRO*/
  justify-content: flex-start; /*Alinea a los hijos hacia desde arriba*/
  padding-top: 50px; /*Evita que que los elementos empiezen justo arriba*/
  align-items: center;     /* centra todos los hijos  horizontalmente */
  background-color:#0d0d0d;
  color: white;
}
.theKik {
	height: 100px;
	border: 2px solid #f3df27;
	border-radius: 20px;
}



/* Encabezado */

.menu {
  padding: 20px;
}

.menu a {
  color: white;
  padding: 10px;
  text-decoration: none; /*Quita las lineas*/
  transition: background 0.2s;
  font-weight: 500;
  background-color: red;
  border-radius: 5px;
}

.menu a:hover {
  background-color: #29cd29;
}

.margHeader {
  display: flex;
  padding-bottom: 30px;   /* espacio debajo de la imagen */
  text-align: center;

}

/* Panel de logueo */
.paneldelogueo{
	flex: 1;
	border: 2px solid yellow;
	border-radius: 15px 35px 15px 35px;/* Personaliza los vertices de los bordes*/
	min-height: 110mm; /* el panel puede crecer si hace falta */
    height: auto;      /* permite crecer */
	width: 210mm;
	padding: 30px;
	background-color: #1f1f1f;
	font-size:18px;
}

 /* desplegable + texto */
.separacionTexto {
  display: flex;               /* activa flexbox */
  justify-content: space-between; /* separa te extremo a extremo a los hijos label y section */
  margin-top: 35px;
  margin-bottom: 35px;
}


/* quitar borde y cambiar color de desplegable. */
.Desplegable {
	border: none;
	color: #f3df27;
	background-color: #66534e;
}
.textGrande {
	font-size: 25px;
	color: #f3df27;
	
}

/* Inicio formulario */
.formulario {
	display: flex;
	flex-direction: column;
	justify-content: center; /*Centrado horizontal*/
	width: 100%; /* ocupa todo el ancho disponible del article */
	margin-top: 10px;
	margin-left: 20%;
	
	gap: 15px;
}

.filas {
	display: flex;
	justify-content: left;
	gap: 20px;
}

.filas select{
	appearance: none;
	padding: 5px 20px;
	border: 2px solid #f3df27;
	border-radius: 10px;
	cursor: pointer;           /* cambia el cursor al pasar por encima */
	background-color: #66534e;
	color: white;
	margin-bottom: 10px;
}
.Texto2{
	margin-left: 175px;
	color: #a8d6d2;
}

.Texto3{
	margin-top: 20px;
	gap: 20px;
	display: flex;
	justify-content: justifi; /*Centrado horizontal*/
	align-items: center;
	color:  #f3df27;
	width: 750px;       /* el ancho que quieras */
}

.snapi{
	color: #ffffff;
}

.formulario input {
	height: 0.75cm; /*alto de las cajas*/
	border: 2px solid #f3df27;
	border-radius: 15px;/* Personaliza los vertices de los bordes*/
}

.enviar {
	display: inline;
	float: right;
}

.enviar input {
	display: inline;
	height: 40px;
	border: 4px solid #f3df27;
	border-radius: 1px;
	color: blue;
	background-color: #a8d6d2;
	cursor: pointer;
}


/* efecto al presionar */
.enviar input:active {
    transform: translateY(5px);   /* se mueve hacia abajo */
    box-shadow: 0 0 #f3df27;      /* sombra desaparece para efecto hundido */
}
.pie{
	
	width: 100vw;             /* ocupa todo el ancho de la ventana */
    color: white;
    text-align: center;
    padding: 20px 0;
	margin-top: 35px;
}

.pie ul {
  list-style: none; /*Quita los puntos de la lista*/
  display: flex; /*Pone en fila*/
  justify-content: center; /* centra horizontal */
  gap: 40px;
  margin-bottom: 30px; 

}

.pie a {
  color: white;
  padding: 5px;
  background-color: red;
  border-radius: 20px;
  text-decoration: none; /*Quita las lineas*/
  
}

.pie a:hover {
  background-color: #29cd29;
}

.areaTexto {
	width: 500px;
	height: 50px;
}

/* --------------------------- FOOTER ------------------------------ */

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 20%;
    /* background-color: darkgrey; */
    gap: 20px;    
}

.divFooter a {
    background-color: rgb(147, 36, 36);
    color: wheat;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
}

.divFooter a:hover {
    background-color: rgb(24, 206, 24);
}






/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------- CARRUSEL CON CHATGPT -------------------------------------*/

.carousel {
  position: relative;
  width: 110vh;
  height: 40vh;
  overflow: hidden;
}


.slides {
  width: 100%;
  height: 100%;
  position: relative;
  
}

.slides img {
  border-radius: 20px;
  border: 2px solid saddlebrown;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slides img.active {
  opacity: 1;
}


/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------- REPRODUCTOR CON CHATGPT -------------------------------------*/
/* Botones */
.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.btn:hover {
  background: rgba(0,0,0,0.7);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Contenedor del beat */
.audio1 {
    display: flex;
    justify-content: right;
    gap: 15px;
    background: #111;
    border: 2px solid #e1e0de;
    border-radius: 14px;
    padding: 16px;
    width: 650px;
    margin-bottom: 22px;
}

/* Portada */
.audio2 {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    background: #444;
}

.audio2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Área de la canción */
.audio3 {
    flex: 1;
}

/* Estilo del audio */
.audio-moderno {
    width: 100%;
    border: none;
    outline: none;
}

/* Información del track */
.audio4 h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

.audio4 p {
    color: #bbb;
    margin: 2px 0 8px 0;
}

/* Estilo moderno para audio */
.audio-moderno {
    width: 100%;
    height: 40px;
    border-radius: 12px;
    background-color: #222;
    outline: none;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	color: #fff; /* color del tiempo de reproducción */
}

/* Chrome, Edge, Safari */
.audio-moderno::-webkit-media-controls-panel {
    background-color: #111;
    border-radius: 12px;
	color: #fff;
}

.audio-moderno::-webkit-media-controls-play-button,
.audio-moderno::-webkit-media-controls-mute-button,
.audio-moderno::-webkit-media-controls-volume-slider {
    filter: invert(100%) brightness(1.2);
}

.audio-moderno::-webkit-media-controls-timeline {
    height: 6px;
    border-radius: 3px;
}

/* Firefox */
.audio-moderno::-moz-range-track {
    height: 6px;
    background: #555;
    border-radius: 3px;
}

.audio-moderno::-moz-range-thumb {
	background: #ff;      /* color del indicador del thumb */
    background: #ffa500;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    border: none;
}

/* Hover efecto moderno */
.audio-moderno:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}



article{
	flex: 1;
}

@media (max-width: 768px) {

  header {
    flex-direction: column;
    height: auto;
  }

  nav {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  nav a {
    width: 90%;
    text-align: center;
  }

  section {
    height: auto;
    padding: 20px;
  }

  .texto {
    width: 100%;
    font-size: 18px;
  }

  .carousel {
    width: 100%;
  }

  footer {
    height: auto;
  }
}

