/* ========================================
   FAIXA COMEMORATIVA - MP SP 96º CONCURSO
   ======================================== */

.celebration-banner {
  background: url(Banner-Celebration.webp) no-repeat center center/cover;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.celebration-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.celebration-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.celebration-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.celebration-content {
  text-align: center;
}

.celebration-header {
  margin-bottom: 50px;
}

.celebration-title {
  font-family: "League Gothic", sans-serif;
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.celebration-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.celebration-subtitle strong {
  font-weight: 700;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
}

/* ========================================
   SLIDER DE DEPOIMENTOS
   ======================================== */

.testimonials-slider {
  position: relative;
  margin-bottom: 40px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* Aspas decorativas nos cantos */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 5rem;
  color: #c41e3a;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 5rem;
  color: #c41e3a;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
  min-height: 120px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-info {
  text-align: center;
}

.author-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #9f0120;
  margin: 0;
}

/* ========================================
   CONTROLES DO SLIDER
   ======================================== */

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 1.25rem;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.slider-btn:active {
  transform: scale(0.95);
}

.slider-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: #ffffff;
  width: 16px;
  height: 16px;
  border-color: rgba(255, 255, 255, 0.5);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media screen and (max-width: 768px) {
  .celebration-banner {
    padding: 40px 15px;
  }

  .celebration-title {
    font-size: 1.75rem;
  }

  .celebration-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .celebration-subtitle strong {
    font-size: 1.15rem;
  }

  .testimonials-slider {
    min-height: 320px;
  }

  .testimonial-card {
    padding: 30px 25px;
    border-radius: 15px;
  }

  .testimonial-card::before {
    font-size: 4rem;
    top: 10px;
    left: 15px;
  }

  .testimonial-card::after {
    font-size: 4rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    min-height: 140px;
  }

  .author-name {
    font-size: 0.9rem;
  }

  .slider-controls {
    gap: 20px;
  }

  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .slider-dot.active {
    width: 14px;
    height: 14px;
  }
}

@media screen and (max-width: 480px) {
  .celebration-title {
    font-size: 1.5rem;
  }

  .celebration-subtitle {
    font-size: 0.9rem;
  }

  .celebration-subtitle strong {
    font-size: 1.05rem;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-card::before {
    font-size: 3.5rem;
    top: 8px;
    left: 12px;
  }

  .testimonial-card::after {
    font-size: 3.5rem;
    bottom: 8px;
    right: 12px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    min-height: 160px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-controls {
    gap: 15px;
  }
}
