h1, h2, h3, h4, h5, button, a {
  font-family: Roboto Condensed;
}

p {
  font-family: Roboto Condensed;
  font-weight: 400;
}

/* slider principal */
li {
  list-style: none;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
}

#banners {
  margin-top: 5%;
}

.carousel {
  position: relative;
  height: 70vh;
  width: 90vw;
  margin: 0 auto;
  margin-bottom: 5rem;
}
.carousel__images {
  max-width: 90vw;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel__track-container {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.carousel__track {
  padding: 0;
  margin: 0;
  position: relative;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}
.carousel__slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
.carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.carousel__button:hover {
  background-color: rgb(228, 226, 226);
  border-radius: 20px;
}

.carousel__button--left {
  left: -40px;
}
.carousel__button--right {
  right: -40px;
  transform: translateY(-50%) rotate(180deg)
}

.carousel__button img {
  width: 25px;
}
.carousel__nav {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  gap: 1rem;
}
.carousel__indicator {
  border: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: rgba(77, 77, 77, 0.6);
  cursor: pointer;
}

.carousel__indicator.current-slide {
  background: rgba(0, 0, 0, 0.9);
}

.is-hidden {
  display: none;
}

/* recientes */
section#recientes{
  position: relative;
  width: 100%;
  height: 130vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
} 

section#recientes h1 {
  color:#DD3792;
  font-size: 5rem;
  margin-left:2rem;
}

#recientes>h2{
  position:relative;
  font-size: 18rem;
  line-height: 15rem;
  z-index: -1;
  margin-top:-1em;
  margin-left:1rem;
}

section#recientes > div#cardsSuben {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1; 
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  padding-top: 50vh;
}

#recientes>div#cardsSuben>div.cardRecientes{
  color:#000;
  width: 30rem;
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  margin: 1rem;
  position: relative;
  transition: transform 0.3s ease-out;
}

#recientes>div#cardsSuben>div#card1{
  background: -webkit-linear-gradient(180deg, #AB8EC3, #A2DAF7);
  background: -moz-linear-gradient(180deg, #AB8EC3, #A2DAF7);
  background: -ms-linear-gradient(180deg, #AB8EC3, #A2DAF7);
  background: -o-linear-gradient(180deg, #AB8EC3, #A2DAF7);
  background: linear-gradient(180deg, #AB8EC3, #A2DAF7);
  margin-right:50%;
}
#recientes>div#cardsSuben>div#card2{
  background: -webkit-linear-gradient(180deg, #A2DAF7, #AB8EC3);
  background: -moz-linear-gradient(180deg, #A2DAF7, #AB8EC3);
  background: -ms-linear-gradient(180deg, #A2DAF7, #AB8EC3);
  background: -o-linear-gradient(180deg, #A2DAF7, #AB8EC3);
  background: linear-gradient(180deg, #A2DAF7, #AB8EC3);
  margin-left:50%;
}
#recientes>div#cardsSuben>div#card3{
  background: -webkit-linear-gradient(180deg, #AB8EC3, #A2DAF7);
  background: -moz-linear-gradient(180deg, #AB8EC3, #A2DAF7);
  background: -ms-linear-gradient(180deg, #AB8EC3, #A2DAF7);
  background: -o-linear-gradient(180deg, #AB8EC3, #A2DAF7);
  background: linear-gradient(180deg, #AB8EC3, #A2DAF7);
  margin-right:50%;
}
#recientes>div#cardsSuben>div#card4{
  background: -webkit-linear-gradient(180deg, #A2DAF7, #AB8EC3);
  background: -moz-linear-gradient(180deg, #A2DAF7, #AB8EC3);
  background: -ms-linear-gradient(180deg, #A2DAF7, #AB8EC3);
  background: -o-linear-gradient(180deg, #A2DAF7, #AB8EC3);
  background: linear-gradient(180deg, #A2DAF7, #AB8EC3);
  margin-left:50%;
}
#recientes>div#cardsSuben>div.cardRecientes>div>img{
  width: 10vw;
  padding: 1rem;
}
#recientes>div#cardsSuben>div.cardRecientes>div>h4{
  font-size:2.5rem;
}
#recientes>div#cardsSuben>div.cardRecientes>div>h5{
  font-size:1.2rem;
  padding-bottom:0.5rem;
}
#recientes>div#cardsSuben>div.cardRecientes>div>span{
  float:right;
  background-color: #000;
  color:#fff;
  padding: 0.5rem 2rem 0.5rem 1rem;
  border-radius: 10px 0px 0px 10px;
  margin-right:-2rem;
  font-family:Roboto Condensed;
}
#recientes>div#cardsSuben>div#card2.cardRecientes>div>span{
  background-color: #000;
}
#recientes>div#cardsSuben>div#card3.cardRecientes>div>span{
  background-color: #000;
}
#recientes>div#cardsSuben>div#card4.cardRecientes>div>span{
  background-color: #000;
}

/* icónicos */
#iconicos {
  display: flex;
  width: 100vw;
  height: 100vh;
  position: relative;
}

#iconicos > div:first-child {
  padding: 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#iconicos div h2 {
  font-size: 12rem;
  line-height: 12rem;
  text-align: left!important;
}
#iconicos div p {
  margin-bottom: 1rem;
  font-size: 2rem;
}
#cardsIconicos {
  padding: 3rem;
  display: flex;
  position: absolute;
  top: 0;
  left: 90vw; /* ahora empieza fuera a la DERECHA */
  width: 100vw;
  height: 100%;
  z-index: 2;
  align-items: center;
  justify-content: center;
}
#cardsIconicos h4 {
  font-size: 1.5rem;
}
#cardsIconicos h5 {
  color: #DD3792;
  font-size: 1rem;
}
#cardsIconicos div {
  padding: 2rem;
  background: rgba(255, 27, 177, 0.1);
  margin: 0.5rem;
  border-radius: 16px;
  flex-shrink: 0;
}
#cardsIconicos div img {
  width: 20vw;
  padding: 1rem;
}
#cardsIconicos div.derecha {
  background: #FFE8F7;
  transform: rotate(-10deg);
}
#cardsIconicos div.izquierda {
  background: #E1C4F1;
  transform: rotate(10deg);
}

/* shuffle */
#shuffle {
  background-color:#E1C4F1;
  height: max-content;
}

#shuffle{
  cursor: url('/img/shuffleCursor.png'), auto !important;
}

#shuffle h2 {
  color:#000;
  padding:0rem 2rem;
  font-size:7rem;
}

#shuffle div {
  display:flex;
  justify-content:space-around;
  align-items: center;
}

.helice {
  animation: helice 8s infinite linear;
  width:45%;
  margin-bottom: 3rem;
}
.helice:first-of-type{
  width:7%;
}
.helice:last-of-type{
  width:7%;
}

#producto{
  width: 25vw;
  position:absolute;
  z-index: 1;
  margin-top: 40%;
}


@keyframes helice {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(160deg);
  }
}

/* teleprompter */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

div.teleprompter {
  background-color: #000;
  overflow: hidden;
}

div.teleprompter>div.marquee {
  display: flex;
  gap: 2em;
  align-items: baseline;
  position: relative;
  box-sizing: border-box;
  animation: marquee 10s linear infinite;
  padding:0.5rem;
}

div.teleprompter h4 {
  margin: 0;
  padding: 0;
  font-size: 3em;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #E1C4F1; 
  color: #E1C4F1;
}

/* teleprompter comentarios */
#comentarios1 {
  background-color: #E1C4F1;
  transform: rotate(-8deg);
  padding-top: 1rem;
  padding-bottom: 1rem;
  width:120%;
  margin-left:-2rem;
}

#comentarios2 {
  background-color: #000;
  transform: rotate(8deg);
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 10rem;
  width:120%;
  margin-left:-2rem;
}

/* teleprompter social */
div#hotOnSocial {
  background-color: rgba(255, 27, 177, 0.1);
}

div#hotOnSocial h4 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #DD3792;
  color: rgba(255, 27, 177, 0.1);
  text-wrap: nowrap;
}

/* RRSS */
#rrss>h2 {
  font-size:5rem;
  line-height:4rem;
  padding:2rem;
}
#rrss>h3 {
  text-align: center;
  font-size: 12rem;
  line-height: 10rem;
  margin-bottom: 5rem;
}

.movilContainer{
  cursor: url('/img/dragRosa.svg'), auto !important;
}

.movilContainer {
  overflow-x: scroll;
  display: flex;
  scroll-behavior: smooth;
  padding: 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom:3rem;
}

.movilContainer::-webkit-scrollbar {
  display: none;
}

.movilContainer:active {
  cursor: grabbing;
}

.movil {
  flex: 0 0 calc(100% / 3);
  height: 80vh;
  scroll-snap-align: center;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.movil img {
  height: 100%;
  width: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none; /* Importante: permite drag sin interferencia */
  user-select: none;
}

.movil.active img {
  transform: scale(1.1);
  z-index: 1;
}

.relleno {
  color: #000;
}

/* botón */
a.verMas {
  color: #fff;
  background-color: #DD3792;
  border: 1px solid #DD3792;
  border-radius: 8px;
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  text-decoration: none;
  width: 4vw;
}

a.verMas:hover {
  color:#DD3792;
  background-color: #fff;
  border: 1px solid #DD3792;
}

/* responsive */
@media (max-width:768px) {
  #recientes h2 {
    font-size:5rem;
    line-height:4rem;
  }
  #shuffle {
    height:70vh;
  }
  #shuffle h2 {
    font-size:4rem;
  }
  #iconicos {
    flex-direction:column;
  }
  #iconicos div h2 {
    font-size:4rem;
    line-height:4rem;
  }
  a.verMas {
    width:15vw;
  }
  #rrss h3 {
    font-size:4rem;
    line-height:4rem;
  }
  .movil img{
    height: 70%;
  }
}
