/* ==============================
   CONTEÚDO DEPOIMENTOS
================================ */
.depoimentos-intro {
  text-align: center;
  padding: 80px 5% 40px;
}

.depoimentos-intro h1 { 
  font-size: clamp(32px, 5vw, 42px); 
  margin-bottom: 10px; 
  color: var(--primary);
}

.depoimentos-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(16px, 2vw, 18px);
  color: #555;
}

/* CARROSSEL DE FEEDBACKS */
.carousel-section {
  padding: 20px 0 80px;
  max-width: 850px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,.1);
  background: var(--white);
  margin: 0 20px;
  border: 4px solid var(--white);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item {
  min-width: 100%;
  height: 550px; /* Um pouco mais alto para prints longos */
  background-color: #f9f9f9;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Garante que o print do WhatsApp apareça inteiro */
  padding: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 77, 74, 0.7);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.carousel-btn:hover { background: var(--secondary); }
.prev { left: 15px; }
.next { right: 15px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active { 
  background: var(--secondary); 
  transform: scale(1.3); 
}

/* ==============================
   RESPONSIVIDADE DEPOIMENTOS
================================ */
@media (max-width: 768px) {
  .depoimentos-intro { padding-top: 60px; }
  .carousel-item { height: 400px; }
  .carousel-btn { width: 35px; height: 35px; }
}

@media (max-width: 480px) {
  .carousel-item { height: 320px; }
}