

:root {
  --color-1: #186cb8;
  --color-2: #2a9a9f;
  --color-3: #f1b211;
  --color-4: #e83611;
  --color-5: #f9002f;
}



@keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}
  

  .slider-container {
    width: 100%;
    max-width: 1300px;
    height: 100vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.now-showing {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #9fff6b;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.now-showing::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #9fff6b;
    border-radius: 50%;
}

.accordion-slider {
    display: flex;
    height: 100%;
    position: relative;
}

.slide {
    flex: 1;
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    filter: grayscale(.2);
}

.slide:hover {
    filter: grayscale(0);
}

.slide.active {
    flex: 2.5;
    filter: grayscale(0);
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 80%);
}

.slide-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 2;
}

.slide.active .slide-content {
    bottom: 80px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide-number {
    font-size: 64px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    position: absolute;
    bottom: 30px;
    left: 30px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-number {
    bottom: auto;
    top: -50px;
    font-size: 48px;
    left: 0;
}

.car-brand {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    position: absolute;
    bottom: 100px;
    left: 30px;
    white-space: nowrap;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .car-brand {
    transform: rotate(0deg);
    position: static;
    transform-origin: unset;
}

.car-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.slide.active .car-name {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.car-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.slide.active .car-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.car-specs {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.slide.active .car-specs {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .spec-row {
    opacity: 1;
    transform: translateX(0);
}

.slide.active .spec-row:nth-child(1) {
    transition-delay: 0.6s;
}
.slide.active .spec-row:nth-child(2) {
    transition-delay: 0.65s;
}
.slide.active .spec-row:nth-child(3) {
    transition-delay: 0.7s;
}
.slide.active .spec-row:nth-child(4) {
    transition-delay: 0.75s;
}

.spec-label {
    color: rgba(255, 255, 255, 0.7);
}

.spec-value {
    color: white;
    font-weight: 600;
}

.performance-badges {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.slide.active .performance-badges {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .badge {
    opacity: 1;
    transform: scale(1);
}

.slide.active .badge:nth-child(1) {
    transition-delay: 0.85s;
}
.slide.active .badge:nth-child(2) {
    transition-delay: 0.9s;
}
.slide.active .badge:nth-child(3) {
    transition-delay: 0.95s;
}

.badge-icon {
    width: 8px;
    height: 8px;
    background: #9fff6b;
    border-radius: 50%;
}

.add-button2 {
    position: absolute;
    top: 60px;
    right: 10px;
    width: 30px;
    height: 32px;
    background: transparent;
    border: 2px solid #9fff6b;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 3;
}

.add-button2 > span {

    
}

.add-button2::before,
.add-button2::after {
    content: "";
    position: absolute;
    background: #9fff6b;
    transition: all 0.4s ease;
}

.add-button2::before {
    width: 12px;
    height: 2px;
}

.add-button2::after {
    width: 2px;
    height: 12px;
    transform: rotate(0deg);
}

.slide.active .add-button2::before {
    transform: rotate(0deg);
}

.slide.active .add-button2::after {
    opacity: 0;
    transform: scale(0);
}


.add-button {
    position: absolute;
    bottom: 30px;
    right: 10px;
    width: 90%;
    height: 32px;
    background: transparent;
    border: 2px solid #9fff6b;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 3;
}

.add-button > span {

    
}

.add-button::before,
.add-button::after {
    content: "";
    position: absolute;
    background: #9fff6b;
    transition: all 0.4s ease;
}

.add-button::before {
    width: 12px;
    height: 2px;
}

.add-button::after {
    width: 2px;
    height: 12px;
    transform: rotate(0deg);
}

.slide.active .add-button::before {
    transform: rotate(0deg);
}

.slide.active .add-button::after {
    opacity: 0;
    transform: scale(0);
}

.navigation-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 4;
    backdrop-filter: blur(10px);
}

.nav-prev {
    left: 20px;
}

.nav-next {
    right: 20px;
}

.navigation-arrows:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .accordion-slider {
        flex-direction: column;
    }

    .slide {
        flex: 1;
        min-height: 80px;
    }

    .slide.active {
        flex: 2;
    }

    .slide-number {
        font-size: 32px;
    }

    .car-brand {
        transform: none;
        position: static;
    }
}






 .ContainerFather {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  height: 100%;
  width: 100%;
  
  background-image: url('https://i.scdn.co/image/ab67616d0000b2733491d7ed16690d2b0d95cbd4'); 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
 
  

              }

.ContainerChild{
height: 100%;
width: 100%;
background:transparent;
backdrop-filter: blur(10px);
 display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  border: 1px solid black; /* Para visualizar el contenedor (opcional) */
   padding-top: 40px;
  padding-bottom: 40px;


}




.card {

  display: inline-block;
  width: 270px;
  border-radius: 4px;
  padding: 16px;
  overflow: hidden;
  background-color: #181818;
  transition: background-color 0.4s;
  cursor: pointer;

  
}




.cover {


  position: relative;
  margin-bottom: 18px;
}
.cover img {
  display: block;
  width: 100%;
  box-shadow: 0 8px 20px -4px hsl(0, 0%, 5%);
}
.cover.artist img {
  border-radius: 50%;
}

.play-icon {

  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fafafa;
  background-color: #1db954;
  box-shadow: 0 4px 16px -4px #121212;
  opacity: 1;
  background-color: red;
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 1100ms ease,
              width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
              height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
box-shadow: rgba(255, 255, 255, 0.56) 0px 12px 30px 4px;
cursor: pointer;

}

.number_rank{

  position: absolute;
  top: 0px;
  left: 0px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fafafa;
  background-color: #1db954;
  box-shadow: 0 4px 16px -4px #121212;
  opacity: 1;
  background-color: #1ED760;
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 1100ms ease,
              width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
              height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
box-shadow: rgba(255, 255, 255, 0.56) 0px 12px 30px 4px;


}


.play-icon:hover {
  transform: scale(1.1);
}

.card:hover .play-icon {
  

}

.fa-play {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 52%;
  top: 50%;
  font-size: 1rem;
}

.card-content {
  font-family: "Montserrat", sans-serif;
  color: #fafafa;
}
.card-content h4 {
  margin-bottom: 6px;
}
.card-content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  font-size: 24px;
  color: hsl(0, 0%, 70%);
}

.neon-border {
  border: 2px solid red; /* Base border color, matching the neon glow */
  box-shadow: 0 0 5px #0ff, /* Inner glow */
              0 0 10px #0ff, /* Medium glow */
              0 0 20px #0ff, /* Outer glow */
              0 0 40px #0ff, /* Wider glow for intensity */
              0 0 80px #0ff; /* Farthest glow for diffusion */
  transition: box-shadow 0.3s ease-in-out; /* Smooth transition on hover or state change */
}

/* Optional: Add a subtle animation for a flickering effect */
@keyframes neon-flicker {
  0%, 100% {
    box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff, 0 0 80px #fff;
  }
  50% {
    box-shadow: 0 0 3px #fff, 0 0 8px #fff, 0 0 15px #fff, 0 0 30px #fff, 0 0 60px #fff;
  }
}

.neon-border.animated {
  animation: neon-flicker 1.5s infinite alternate;
}


.bars_menu_hide{

    height: 4em;
    width: 100%;
    background: #000;
    position: fixed;
    z-index: 5001;
    bottom:-4em;

  box-shadow: 0 0 5px #FA3D16, /* Inner glow */
              0 0 10px #FA3D16, /* Medium glow */
              0 0 20px #FA3D16, /* Outer glow */
              0 0 40px #FA3D16, /* Wider glow for intensity */
              0 0 80px #FA3D16; /* Farthest glow for diffusion */
  transition: box-shadow 0.5s ease-in-out; /* Smooth transition on hover or state change */
}

.bars_menu{

    height: 4em;
    width: 100%;
    background: #000;
    position: fixed;
    z-index: 5001;
    bottom:0em;

  box-shadow: 0 0 5px #0ff, /* Inner glow */
              0 0 10px #0ff, /* Medium glow */
              0 0 20px #0ff, /* Outer glow */
              0 0 40px #0ff, /* Wider glow for intensity */
              0 0 80px #0ff; /* Farthest glow for diffusion */
  transition: box-shadow 0.5s ease-in-out; /* Smooth transition on hover or state change */
}

.metadatos{
    
    color: #fff;

}



 @import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Common Style */

.imgsliderintro {
  width: 100%;
  height: auto;
  cursor: pointer;
}
body {
  overflow-y: auto;
}


.buttonslider:focus,
:focus-visible {
  outline: none;
  border: none;
}
/* Root*/
:root {
  --pear-can: #e6ffde;
  --pear-logo: #03403f;
  --apple-can: #f2675a;
  --apple-logo: #ec4458;
  --exotic-can: #9590f1;
  --black-color: #000000;
  --white-color: #ffffff;
  --exotic-logo: #6464ff;
  --pear-background: #f0f0f0;
  --apple-background: #ffb2b2;
  --exotic-background: #c1bff2;
}
/* Typography */
.h1slider {
  font-family: "Lexend";
  font-size: 449px !important;
  line-height: normal !important;
  color: var(--white-color) !important;
  margin: 0 !important;
}
.h2slider {
  font-family: "Lexend";
  font-size: 40px;
  line-height: normal;
  margin: 0;
  font-weight: 900;
}
/* Header */
.headerslider {
  padding: 22px 28px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 99;
  text-align: center;
}
.logoslider {
  color: var(--pear-logo);
}
.h1slider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Cane Image and Wrapper Image */
.cane-image {
  max-width: 265px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mask-image: url(https://www.yudiz.com/codepen/fruity/cane.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  overflow: hidden;
}
.cane-image img {
  width: 100%;
}
.cane-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 300% !important;
  mix-blend-mode: multiply;
  transition: all ease-in-out 0.3s;
}
/*Fruits Images */
.fruit-image {
  opacity: 1;
  position: absolute;
}
.image-one {
  max-width: 282px;
  bottom: 100px;
}
.image-two {
  max-width: 247px;
  top: 23%;
  left: 25%;
}
.image-three {
  max-width: 211px;
  top: 23%;
  right: 25%;
}
.image-four {
  max-width: 294px;
  bottom: 100px;
  right: 0;
}
/* After */
.fruit-image::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #000 3.66%, rgba(0, 0, 0, 0) 92.35%);
  opacity: 0.43;
  filter: blur(7.5px);
  transform: rotate(-6.941deg);
  right: 0;
  width: 173px;
  height: 30px;
}
.image-one::after {
  bottom: -50px;
}
.image-two::after {
  bottom: -200px;
  height: 22px;
}
.image-three::after {
  bottom: -280px;
  width: 103px;
}
.image-four::after {
  bottom: -50px;
}
/*Section  */
.section-container-main {
  width: 100vw;
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.section-container {
  width: 300vw;
  display: flex;
  position: relative;
  transition: all ease-in-out 0.5s;
  align-items: center;
}
.section {
  min-width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: -1;
  background: var(--pear-background);
}
.section:nth-child(2) {
  background-color: var(--apple-background);
}
.section:nth-child(3) {
  background-color: var(--exotic-background);
}
/* Add this to your CSS */
/* Buttons */
.buttonslider {
  position: absolute;
  top: 20%;
  right: 30px;
  z-index: 99;
  transform: translateY(-50%);
  border-radius: 50%;
  height: 80px;
  width: 80px;
  background-color: var(--white-color);
  border: none;
  font-size: 40px;
  color: var(--apple-logo);
  transition: all ease-in-out 0.3s;
  cursor: pointer;
}
#prevButton {
  left: 30px;
  right: unset;
  display: none;
  transition: all ease-in 0.3s;
}
.wave {
  animation: wave-apple-effect 4s linear infinite;
  animation-direction: normal;
}
@keyframes wave-pear-effect {
  0% {
    box-shadow: 0 0 0 0px var(--pear-background),
      0 0 0 0px var(--pear-background);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(60, 41, 188, 0),
      0 0 0 0px var(--pear-background);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(60, 41, 188, 0), 0 0 0 30px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(60, 41, 188, 0), 0 0 0 30px rgba(0, 230, 118, 0);
  }
}
@keyframes wave-apple-effect {
  0% {
    box-shadow: 0 0 0 0px var(--apple-background),
      0 0 0 0px var(--apple-background);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(60, 41, 188, 0),
      0 0 0 0px var(--apple-background);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(60, 41, 188, 0), 0 0 0 30px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(60, 41, 188, 0), 0 0 0 30px rgba(0, 230, 118, 0);
  }
}
@keyframes wave-exotic-effect {
  0% {
    box-shadow: 0 0 0 0px var(--exotic-background),
      0 0 0 0px var(--exotic-background);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(60, 41, 188, 0),
      0 0 0 0px var(--exotic-background);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(60, 41, 188, 0), 0 0 0 30px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(60, 41, 188, 0), 0 0 0 30px rgba(0, 230, 118, 0);
  }
}
/*.......... Responsive.............. */
@media screen and (max-width: 1550px) {
  .h1slider {
    font-size: 350px !important;
  }
  .cane-image {
    max-width: 280px;
  }
  .image-one {
    max-width: 250px;
  }
  .image-two {
    max-width: 215px;
    left: 22%;
    top: 10%;
  }
  .image-three {
    max-width: 180px;
  }
  .image-four {
    max-width: 260px;
    right: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .h1slider {
    font-size: 300px !important;
  }
  .cane-image::after {
    width: 150%;
  }
  .image-one {
    max-width: 220px;
  }
  .image-two {
    max-width: 185px;
    left: 18%;
    top: 10%;
  }
  .image-three {
    max-width: 180px;
    right: 18%;
  }
  .image-four {
    max-width: 230px;
  }
}
@media screen and (max-width: 991px) {
  .h1slider {
    font-size: 240px !important;
  }
  .cane-image {
    max-width: 250px;
  }
  .buttonslider {
    height: 80px;
    width: 80px;
    top: 40%;
  }
  .image-one {
    max-width: 180px;
  }
  .image-two {
    max-width: 165px;
    left: 12%;
    top: 12%;
  }
  .image-three {
    max-width: 150px;
    right: 12%;
  }
  .image-four {
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .h1slider {
    font-size: 180px !important;
  }
  .h2slider {
    font-size: 30px;
  }
  .cane-image {
    max-width: 180px;
  }
  .buttonslider {
    height: 60px;
    width: 60px;
    font-size: 20px;
  }
  .image-one {
    max-width: 180px;
    bottom: 150px;
  }
  .image-two {
    max-width: 145px;
    left: 12%;
    top: 15%;
  }
  .image-three {
    max-width: 130px;
    right: 10%;
  }
  .image-four {
    max-width: 180px;
    bottom: 150px;
  }
}
@media screen and (max-width: 575px) {
  .h1slider {
    font-size: 100px !important;
  }
  .cane-image::after {
    width: 100%;
  }
  .image-one {
    max-width: 150px;
  }
  .image-two {
    max-width: 115px;
    left: 4%;
    top: 18%;
  }
  .image-three {
    max-width: 100px;
    right: 4%;
  }
  .image-four {
    max-width: 150px;
    right: 0;
  }
}



.caratula_contenedor{

      display: flex;
     justify-content: center;
     align-items: center;
     width: 100%;
     height: auto;

}

.img_caratula{

    width: 300px;
    height: 300px;
    box-shadow: rgba(1, 71, 159, 0.4) 5px 5px, 
                rgba(1, 71, 159, 0.3) 10px 10px, 
                rgba(1, 71, 159, 0.2) 15px 15px, 
                rgba(1, 71, 159, 0.1) 20px 20px, 
                rgba(1, 71, 159, 0.05) 25px 25px;
   
}





