.candle-vertical-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  margin-top: 3rem;
  gap: 1.5rem;
}

.candle-header {
  text-align: center;
  position: relative;
  margin-bottom: 0;
  z-index: 100;
  width: 100%;
  max-width: 780px;
}

.candle-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  color: #4B2067;
  font-weight: 700;
  margin-bottom: 1rem;
}

.candle-header div {
  font-size: 1.35rem;
  color: #4B2067;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.4;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

body {
  background: url('/images/utils/fondo1.png') no-repeat center center;
  background-size: 100% 100%;
  margin: 0;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.carousel {
  position: relative;
  width: 550px;
  height: 300px;
  margin: 0 auto 6rem;
}

.card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 180px;
  background: transparent;
  position: absolute;
  border-radius: 12px;
  outline: none !important;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.3s, transform 0.3s;
  left: 50%;
  top: 50%;
  margin-left: -72.5px;
  margin-top: -90px;
}

.card:hover .img {
  filter: brightness(1.2);
  transform: scale(1.08);
  transition: all 0.3s ease;
}

.card .img {
  width: 125px;
  height: 160px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}

.card p {
  font-size: 16px;
  margin-bottom: -5px;
}

.card span {
  font-size: 12px;
  text-align: center;
  padding: 8px;
}

/* Imagenes de cada vela */
.c1 .img { background-image: url('/images/candle/candle-purple.png'); }
.c2 .img { background-image: url('/images/candle/candle-pink.png'); }
.c3 .img { background-image: url('/images/candle/candle-blue.png'); }
.c4 .img { background-image: url('/images/candle/candle-white.png'); }
.c5 .img { background-image: url('/images/candle/candle-yellow.png'); }
.c6 .img { background-image: url('/images/candle/candle-orange.png'); }
.c7 .img { background-image: url('/images/candle/candle-green.png'); }

@media screen and (max-width: 992px) {
  .candle-vertical-container {
    margin-top: 2rem;
    gap: 1rem;
  }

  .candle-header h2 {
    font-size: 2rem;
  }

  .candle-header div {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .carousel {
    transform: scale(0.7);
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 600px) {
  .candle-header h2 {
    font-size: 1.6rem;
  }

  .candle-header div {
    font-size: 1rem;
  }

  .carousel {
    transform: scale(0.55);
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 380px) {
  .candle-header h2 {
    font-size: 1.4rem;
  }

  .carousel {
    transform: scale(0.48);
    margin-bottom: 1.5rem;
  }
}
