/* ========================================
   DEPOIMENTOS — template-parts/components/depoimentos.php
   (antes na página Capacitação > O que fazemos, hoje na single do Curso
   de Tecnologia em Tintas)
   ======================================== */

#cap-depo {
  padding-top: 0;
  padding-bottom: 60px;
}

#cap-depo .cap-depo-header {
  text-align: center;
  margin-bottom: 50px;
}

#cap-depo .cap-depo-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-purple);
  line-height: 1.64;
  letter-spacing: -0.32px;
  margin-bottom: 0;
}

#cap-depo .cap-depo-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #69788d;
  line-height: 1.64;
  letter-spacing: -0.32px;
  margin: 0;
}

#cap-depo .cap-depo-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

#cap-depo .cap-depo-track-outer {
  flex: 1;
  overflow: hidden;
  padding: 12px 0;
}

#cap-depo .cap-depo-track {
  display: flex;
  transition: transform 0.4s ease;
}

#cap-depo .cap-depo-slide {
  min-width: 50%;
  padding: 0 12px;
  box-sizing: border-box;
}

#cap-depo .cap-depo-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
  padding: 24px 37px 24px 37px;
  min-height: 310px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#cap-depo .cap-depo-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

#cap-depo .cap-depo-avatar {
  width: 101px;
  height: 101px;
  min-width: 101px;
  border-radius: 50%;
  border: 7px solid var(--color-purple);
  background-color: #d9d9d9;
  background-size: cover;
  background-position: center;
}

#cap-depo .cap-depo-avatar--empty {
  background-color: #d9d9d9;
}

#cap-depo .cap-depo-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#cap-depo .cap-depo-name {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #461e77;
  line-height: 1.5;
  margin: 0;
}

#cap-depo .cap-depo-role {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #575757;
  line-height: 1.5;
  margin: 0;
}

#cap-depo .cap-depo-quote {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #575757;
  line-height: normal;
}

#cap-depo .cap-depo-quote p {
  margin: 0;
}

#cap-depo .cap-depo-arrow {
  background: none;
  border: 1.636px solid var(--color-purple);
  border-radius: 50px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  color: var(--color-purple);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

#cap-depo .cap-depo-arrow:hover {
  background: var(--color-purple);
  color: #fff;
}

#cap-depo .cap-depo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

#cap-depo .cap-depo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d9d9d9;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

#cap-depo .cap-depo-dot.active {
  background: var(--color-purple);
}

@media (max-width: 992px) {
  #cap-depo .cap-depo-slide {
    min-width: 100%;
  }
}

@media screen and (max-width: 1366px) and (max-height: 768px),
       screen and (min-width: 1024px) and (max-width: 1280px) {
  #cap-depo {
    padding-bottom: 30px;
  }
}
