*{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body{
            background-color: rgb(10, 10, 15);
            font-family: Verdana, Geneva, Tahoma, sans-serif;
        }

        nav{
            position: relative;
            overflow: hidden;
            padding: 15px 0;
            background-color: rgb(15, 10, 25);
        }

        #video-fondo{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.4;
        }

        .menu{
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            list-style: none;
        }

        .menu li{
            margin: 0 20px;
        }

        .menu a{
            text-decoration: none;
            color: rgb(180, 140, 200);
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            font-weight: bold;
        }

        .menu a:hover{
            color: rgb(220, 180, 255);
        }

        header{
            position: relative;
            padding: 0;
            width: 100%;
            overflow: hidden;
        }

        #mifoto{
            width: 100%;
            height: 500px;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 0;
        }

        header::after{
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to bottom, transparent, rgb(10, 10, 15));
        }

        .cajita{
            position: absolute;
            bottom: 20px;
            width: 100%;
            text-align: center;
            z-index: 2;
        }

        .cajita h1{
            color: white;
            text-shadow: 0px 0px 15px rgb(160, 80, 200);
            font-size: 2.5em;
        }

        .cajita h2{
            color: rgb(180, 140, 200);
            font-size: 1.2em;
            border-bottom: none;
            text-shadow: none;
            padding: 0;
            margin-top: 0.3em;
            width: auto;
            text-align: center;
        }

        section{
            width: 80%;
            margin: 3em auto;
            box-shadow: 0px 0px 20px 2px rgb(100, 50, 150);
            padding: 2em;
            border-radius: 30px;
            background-color: rgb(20, 15, 35);
        }

        h2{
            width: 100%;
            text-align: center;
            margin-bottom: 1em;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            text-shadow: 0px 0px 10px rgb(160, 80, 200);
            border-bottom: 3px dashed rgb(130, 60, 180);
            padding: 0.5em;
            color: white;
        }

        .doscolupnas{
            display: flex;
            gap: 2em;
            align-items: center;
        }

        .doscolupnas img{
            width: 40%;
            border-radius: 10px;
            opacity: 0;
            transition: opacity 0.4s ease;

        }

        .doscolupnas img:hover{
            opacity: 1;
        }


        .doscolupnas p{
            color: rgb(220, 200, 240);
            line-height: 1.8;
            font-size: 0.95em;
        }

.doscolupnas p span i{
  width: 60px;
  height: 60px;
  border-radius: 14px;
  animation: move-and-shape 4s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes move-and-shape {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(200px) rotate(180deg);
    border-radius: 50%;
  }
  100% {
    transform: translateX(0);
  }
}

        .grid-apariciones{
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5em;
        }

        .tarjeta-aparicion{
            background-color: rgb(30, 20, 50);
            border-radius: 10px;
            border: 1px solid rgb(100, 50, 150);
        }

        .tarjeta-aparicion img{
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            display: block;
            margin-bottom: 0.8em;
        }

        .tarjeta-aparicion h3{
            color: rgb(180, 120, 220);
            text-shadow: 0px 0px 5px rgb(100, 50, 150);
            margin-bottom: 0.4em;
        }

        .tarjeta-aparicion p{
            color: rgb(200, 180, 220);
            font-size: 0.85em;
            line-height: 1.6;
        }

        .actora-container{
            display: flex;
            gap: 2em;
            align-items: center;
        }

        .actora-container img{
            width: 35%;
            border-radius: 10px;
            object-fit: cover;
        }

        .actora-info h3{
            color: rgb(180, 120, 220);
            font-size: 1.4em;
            margin-bottom: 0.5em;
        }

        .actora-info p{
            color: rgb(200, 180, 220);
            line-height: 1.8;
            font-size: 0.95em;
            margin-bottom: 0.8em;
        }

        .audio-container{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5em;
            padding: 1em;
        }

        .audio-container p{
            color: rgb(200, 180, 220);
            text-align: center;
            font-size: 0.95em;
        }

        audio{
            width: 80%;
            filter: hue-rotate(270deg);
        }

        .audio-item{
            width: 100%;
            background-color: rgb(30, 20, 50);
            border-radius: 10px;
            padding: 1em 1.5em;
            border: 1px solid rgb(100, 50, 150);
            display: flex;
            flex-direction: column;
            gap: 0.5em;
        }

        .audio-item h3{
            color: rgb(180, 120, 220);
            font-size: 0.95em;
        }

        footer{
            background-color: rgb(15, 10, 25);
            color: white;
            text-align: center;
            padding: 1.5em;
            font-size: 0.85em;
            color: rgb(150, 120, 180);
        }

        #return{
            background-color: rgb(100, 50, 150);
            padding: 1em;
            color: white;
            width: 40px;
            height: 40px;
            text-align: center;
            position: fixed;
            bottom: 10px;
            right: 10px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #return img{
            width: 500%;
            height: 500%;
            object-fit: cover;
            border-radius: 50%;
        }

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

@media (max-width: 1000px) {
    .menu{
        flex-wrap: wrap;
    }

    .doscolupnas{
        flex-direction: column-reverse;
    }
}

@media (max-width: 536px) {
    .menu{
        flex-wrap: wrap;
    }

    .grid-apariciones{
        display: grid;
        grid-template-columns: 1fr 1fr;
        }
}
