/* Páginas internas de tratamentos */
.service-breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.875rem;
}

.service-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.service-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-hero-copy {
  position: relative;
  display: flex;
  min-height: 470px;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-hero-copy > * {
  position: relative;
  z-index: 1;
}

.service-hero-copy p {
  max-width: 590px;
  font-size: 1.05rem;
}

.service-visual {
  position: relative;
  display: grid;
  min-height: 470px;
  padding: 36px;
  overflow: hidden;
  color: var(--muted);
  text-align: center;
  background: linear-gradient(145deg, var(--surface), var(--card-strong));
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  place-items: center;
}

.service-visual::before,
.service-visual::after {
  position: absolute;
  width: 250px;
  height: 250px;
  content: "";
  border: 2px solid color-mix(in srgb, var(--accent) 24%, transparent);
  border-radius: 50%;
}

.service-visual::before {
  top: -105px;
  right: -70px;
}

.service-visual::after {
  bottom: -130px;
  left: -70px;
}

.service-visual-content {
  position: relative;
  z-index: 1;
}

.service-visual svg {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.service-visual--photo {
  padding: 0;
  min-height: 0;
  border-style: solid;
}

.service-visual--photo::before,
.service-visual--photo::after {
  display: none;
}

.service-photo {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
}

@media (min-width: 992px) {
  .service-hero-copy {
    min-height: 0;
    padding: clamp(22px, 2.2vw, 30px);
  }

  .service-hero-copy h1 {
    font-size: clamp(2.15rem, 2.7vw, 2.7rem);
  }

  .service-hero-copy p {
    font-size: 0.98rem;
  }
}

.content-card {
  height: 100%;
  padding: clamp(24px, 4vw, 38px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-card p:last-child,
.content-card ul:last-child {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 800;
}

.step-card {
  height: 100%;
  padding: 25px;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: #3d493e;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.step-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.faq-section {
  background: var(--surface);
}

.faq-section .accordion-item {
  overflow: hidden;
  color: var(--text);
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.faq-section .accordion-item + .accordion-item {
  margin-top: 10px;
}

.faq-section .accordion-button {
  color: var(--text);
  background: var(--page);
  box-shadow: none;
  font-weight: 600;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--text);
  background: var(--card);
}

.faq-section .accordion-button::after {
  filter: none;
}

html[data-theme="dark"] .faq-section .accordion-button::after {
  filter: invert(1);
}

.faq-section .accordion-body {
  color: var(--muted);
}

.service-cta {
  position: relative;
  padding: clamp(30px, 5vw, 55px);
  overflow: hidden;
  background: var(--card-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-note {
  color: var(--muted);
  font-size: 0.82rem;
}

