/* Hero */
.hero-copy {
  position: relative;
  display: flex;
  min-height: 440px;
  padding: clamp(30px, 5vw, 56px);
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  background: var(--card);
  border-radius: var(--radius);
}

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

.hero-copy p {
  max-width: 500px;
  font-size: 1.02rem;
}

.script-label {
  background: var(--page);
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.eyebrow {
  display: inline-block;
  width: fit-content;
  padding: 0.28rem 0.62rem;
  color: var(--text);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.text-link {
  color: var(--text);
  border-bottom: 1px solid transparent;
  font-size: 0.9rem;
  text-decoration: none;
}

.text-link:hover {
  border-color: currentColor;
}

.foto-principal {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.foto-sobre {
  display: block;
  width: 100%;
  max-width: 520px;
  height: 560px;
  margin-inline: auto;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius);
}

.photo-placeholder {
  display: flex;
  min-height: 240px;
  overflow: hidden;
  color: var(--muted);
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--surface), var(--card));
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
}

.photo-placeholder svg,
.placeholder-icon {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero-photo {
  height: clamp(440px, 55vw, 640px);
  min-height: 440px;
}

.about-photo {
  min-height: 470px;
}

.decorative-lines::before,
.decorative-lines::after {
  position: absolute;
  width: 220px;
  height: 220px;
  content: "";
  pointer-events: none;
  border: 2px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 48% 52% 66% 34%;
}

.decorative-lines::before {
  top: -88px;
  right: -65px;
  transform: rotate(22deg);
}

.decorative-lines::after {
  right: 20%;
  bottom: -165px;
  transform: rotate(-18deg);
}

/* Cards */
.info-card,
.treatment-card {
  height: 100%;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.info-card:hover,
.treatment-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.info-card svg,
.treatment-card svg {
  width: 25px;
  height: 25px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.info-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.35;
}

#sobre p {
  max-width: 510px;
}

.section-heading {
  max-width: 650px;
}

.section-heading h2 {
  margin-top: 14px;
}

.section-heading em {
  color: var(--accent);
  font-style: normal;
}

.treatment-card {
  min-height: 165px;
}

.treatment-card svg {
  margin-bottom: 28px;
}

.treatment-card h3 {
  margin-bottom: 7px;
}

.treatment-card p {
  margin-bottom: 0;
  font-size: 0.875rem;
}

.treatment-card-link {
  color: var(--text);
}

.treatment-card-link:hover,
.treatment-card-link:focus-visible {
  color: var(--text);
}

.treatment-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
}


/* Conversion actions stay readable and stationary. */
.case-contact { display: inline-flex; align-items: center; gap: .4rem; margin-top: .4rem; padding: .5rem 0; color: var(--accent); font-size: .875rem; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
 .treatment-card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
 .case-contact:hover { color: var(--text); }
}
