/* Treatment Section */
#treatment {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #3a3a3a;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6c5ce7, #a29bfe);
  border-radius: 2px;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.treatment-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 30px;
  text-align: center;
  height: auto;
  position: relative;
}

.treatment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.treatment-image-wrapper {
  position: relative;
  overflow: hidden;
}

.treatment-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.treatment-card:hover .treatment-image img {
  transform: scale(1.05);
}

.treatment-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 92, 231, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.treatment-card:hover .treatment-overlay {
  opacity: 1;
}

.treatment-button {
  background: #fff;
  color: #6c5ce7;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.treatment-button:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.treatment-content {
  padding: 25px;
}

.treatment-content h3 {
  font-size: 1.5rem;
  color: #3a3a3a;
  margin-bottom: 15px;
  font-weight: 700;
}

.treatment-quote {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
  position: relative;
  padding: 0 15px;
}

.treatment-quote::before,
.treatment-quote::after {
  content: '"';
  font-size: 2rem;
  color: #a29bfe;
  opacity: 0.3;
}

.treatment-description {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.treatment-price {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #e9ecef;
}

.price-tag {
  display: inline-block;
  background: linear-gradient(90deg, #6c5ce7, #a29bfe);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
}

.loading-spinner {
  text-align: center;
  padding: 40px;
  color: #6c5ce7;
  font-size: 1.2rem;
}

  .treatment-content {
    padding: 20px;
  }

/* Responsividade */
@media (max-width: 992px) {
  .treatment-content {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  #treatment {
    padding: 80px 0 60px 0;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .treatment-card {
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .treatment-content {
    padding: 15px;
  }
  
  .treatment-content h3 {
    font-size: 1.3rem;
  }
}