/* Services Treatment Modal Styles */

:root {
  --primary: #0d47a1;
  --dark: #001f3f;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
  --text-light: #666;
  --text-dark: #333;
  --orange: #f39c12;
}

/* Modal Styling */
#treatmentModal .modal-dialog {
  max-width: 900px;
}

#treatmentModal .modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#treatmentModal .modal-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  border: none;
  padding: 25px 30px;
}

#treatmentModal .modal-title {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
}

#treatmentModal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

#treatmentModal .btn-close:hover,
#treatmentModal .btn-close:focus {
  opacity: 1;
}

#treatmentModal .modal-body {
  padding: 40px;
  background: white;
}

/* Treatment Image */
.treatment-image-container {
  width: 100%;
  height: 350px;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--light-gray);
}

.treatment-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Treatment Description */
.treatment-description {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

/* Benefits Section */
.treatment-benefits {
  margin-bottom: 35px;
}

.treatment-benefits-title {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-icon {
  font-size: 1.5rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 3px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}



/* CTA Button */
.treatment-cta {
  text-align: center;
  margin-top: 30px;
}

.btn-agendar {
  background: var(--orange);
  color: white;
  padding: 16px 45px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-agendar:hover {
  background: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.btn-agendar:active {
  transform: translateY(0);
}

/* Guarantee Badge */
.treatment-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  padding: 15px;
  background: rgba(13, 71, 161, 0.08);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

.guarantee-icon {
  font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  #treatmentModal .modal-body {
    padding: 20px;
  }

  .treatment-image-container {
    height: 250px;
    margin-bottom: 20px;
  }

  #treatmentModal .modal-title {
    font-size: 1.4rem;
  }

  .treatment-description {
    font-size: 0.95rem;
    padding: 15px;
  }

  .treatment-benefits-title {
    font-size: 1.1rem;
  }

  .benefits-list li {
    font-size: 0.9rem;
    padding-left: 25px;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .btn-agendar {
    padding: 14px 30px;
    font-size: 0.9rem;
  }
}
