body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1c1c1c; 
  background-image: radial-gradient(white 0.4px, transparent 1px);
  background-size: 100px 100px;
  overflow-x: hidden;
}

h1 {
  text-align: center;
  color: hotpink;
  margin-top: 20px;
  font-size: 2.5rem;
}

.timer-container {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 50px;
  padding-bottom: 10px;
  font-size: 1.2rem;
  color: white;
  font-size: 0.9rem;
  border-radius: 20px;
  box-shadow: 0px 4px 20px rgba(255, 20, 147, 0.8);
  background-color: #1c1c1c; 
  background-image: none !important;
  background-size: initial !important;
}

#timer {
  color: gold;
  font-weight: bold;
}

.heart {
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.slider-wrapper {
  padding-top: 25px; 
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
 /* background-color: #1c1c1c; */
 
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  cursor: grab;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide.active {
  transform: scale(1);
  opacity: 1;
}

.slide img {
   max-width: 50%; 
   max-height: 400px;
  border-radius: 20px;
  box-shadow: 0px 4px 20px rgba(148,0,211);
  margin: 0 auto;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 20, 147, 0.8);
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  font-size: 20px;
  color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-button:hover {
  background-color: rgba(255, 20, 147, 1);
  transform: translateY(-50%) scale(1.1);
}

.slider-button.left { left: 15px; }
.slider-button.right { right: 15px; }

/* Media queries apenas para ajustes de tamanho, mantendo sempre 1 slide visível */

@media screen and (max-width: 767px) {
  .slider-wrapper {
    margin: auto;
    object-fit: contain;
  }
  
  .slide img {
    margin: auto;
    object-fit: contain;
  }
  
  h1 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .slider-wrapper {
    margin: auto;
    object-fit: contain;
  }
  
  .slide img {
    max-height: 350px;
     max-width: 60%;

  }
  
  h1 {
    font-size: 2rem;
  }
  

}

.cvideo { 
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 50px;
  width: 100%;
}

.cvideo video {
  max-width: 70%;
  max-height: 40%;
  border-radius: 20px;
  box-shadow: 0px 4px 20px rgba(148,0,211);
}

/* Adicione estas media queries para ajustar o tamanho em diferentes telas */
@media screen and (max-width: 768px) {
  .cvideo video {
    max-width: 70%;
  }
  .texto{
    width: 98%;
    max-width: 98vw;
    padding: 18px 6px;
    font-size: 1rem;
    margin-top: 30px;
  }
}

@media screen and (max-width: 480px) {
  .cvideo video {
    max-width: 70%;
  }

  .texto{
    width: 99%;
    max-width: 99vw;
    padding: 10px 2vw;
    font-size: 0.98rem;
    margin-top: 20px;
  }
}

.custom-audio-player {
  width: 80px;
  height: 80px;
  background: #c80a6f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 0 24px 4px #ff149388;
  margin: 20px auto;
  margin-bottom: 50px;
}

#playPauseBtn {
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}
#playPauseBtn i {
  pointer-events: none;
}

.texto {
  margin: 40px auto 0 auto;
  color: white;
  width: 90%;
  max-width: 1100px;
  text-align: left;
  border: 3px solid #ff1493;
  border-radius: 20px;
  box-shadow: 0px 4px 20px rgba(255, 20, 147, 0.8);
  padding: 32px 24px;
  background: rgba(28,28,28,0.97);
  font-size: 1.15rem;
  line-height: 1.7;
}