* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.carousel {
  width: 100vw;
  height: 80vh;
  overflow: hidden;
  position: relative;
}

.overlay-global {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
  pointer-events: none;
}

.carousel .list .item {
  width: 180px;
  height: 250px;
  position: absolute;
  top: 80%;
  transform: translateY(-70%);
  left: 70%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  background-position: center center;
  background-size: cover;
  z-index: 100;
  transition: 1s;
  overflow: hidden;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
   width: 100vw;
  height: 100vh;
  background-size: cover;        /* que se vea completa sin cortar */
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 20;
 
}

.carousel .list .item:nth-child(3) { left: 67%; }
.carousel .list .item:nth-child(4) { left: calc(67% + 200px); }
.carousel .list .item:nth-child(5) { left: calc(67% + 400px); }
.carousel .list .item:nth-child(6) { left: calc(67% + 600px); }

.carousel .list .item:nth-child(n+7) {
  left: calc(67% + 800px);
  opacity: 0;
}

.list .item .content {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
 width: 60%; /* más ancho para que quepa más texto */
  max-width: 800px;
  text-align: left;
  color: #fff;
  display: none;
  z-index: 100;
}

.list .item:nth-child(2) .content {
  display: block;
}

.content .category {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #6534AF; /* violeta */
  font-weight: bold;
  line-height: 1;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
  text-shadow: 3px 4px 4px #fff; /* sombra blanca */
}

.content .name {
   font-size: 4rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
  text-shadow: 3px 4px 4px fuchsia;
  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.3rem;
  margin-left: 5px;
  text-shadow: 3px 4px 4px black;
  opacity: 0;
  animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn {
  margin-left: 5px;
  opacity: 0;
  animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button {
   padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border: 2px solid #fff;
  color: white;
  background: #6534AF;
  transition: 0.3s;
}

.content .btn button:nth-child(1) {
  margin-right: 15px;
}

.content .btn button:hover {
  background-color: #7c53d4;
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }
  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

.arrows {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.arrows button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  outline: none;
  font-size: 30px;
  font-family: monospace;
  font-weight: bold;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrows button:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.calendar-date {
  display: none !important;
}

@media screen and (max-width: 999px) {
  .list .item .content { left: 50px; }
  .content .title,
  .content .name { font-size: 70px; }
  .content .des { font-size: 16px; }
}

@media screen and (max-width: 690px) {
  .list .item .content { top: 40%; }
  .content .title,
  .content .name { font-size: 45px; }
  .content .btn button {
    padding: 10px 15px;
    font-size: 14px;
  }
}

.calendar-date {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: 70px;
  background-color: #fff;
  border: 2px solid #6534AF;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calendar-date::before {
  content: attr(data-month);
  width: 100%;
  background-color: #6534AF;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 2px 0;
  border-bottom: 1px solid #6534AF;
}

.calendar-date span {
  font-size: 22px;
  font-weight: 700;
  color: #6534AF;
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  .carousel .list .item:nth-child(3),
  .carousel .list .item:nth-child(4),
  .carousel .list .item:nth-child(5),
  .carousel .list .item:nth-child(6) {
    display: none !important;
  }
}

.list .item:nth-child(2) .content .title {
  text-shadow: 3px 4px 3px #fff;
}

@media screen and (max-width: 690px) {
  .list .item .content {
    width: 90%;
    left: 5%;
  }

  .list .item .content .title,
  .list .item .content .name {
    font-size: 8.5vw; /* usa unidades relativas para que se adapten */
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal; /* permite salto de línea */
  }

  .list .item .content .des {
    font-size: 14px;
  }

  .list .item .content .btn button {
    font-size: 12px;
    padding: 8px 12px;
  }
}