:root {
  --plum: #5a306b;
  --detail-purple: #5a306b;
  --detail-purple-soft: rgba(90, 48, 107, 0.1);
  --detail-purple-line: rgba(90, 48, 107, 0.22);
  --detail-purple-muted: rgba(90, 48, 107, 0.58);
  --font-title: "Cinzel", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --text: #6d5a74;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

main {
  background: #fbf7fc;
  overflow: hidden;
}

.site-footer {
  background: #fbf9fc;
  border-top: 1px solid rgba(90, 48, 107, 0.22);
  color: var(--plum);
  padding: 48px 24px 58px;
}

.site-footer__inner {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(280px, 1fr) minmax(420px, 1fr);
  margin: 0 auto;
  max-width: 1100px;
}

.site-footer h2 {
  color: var(--plum);
  font-family: var(--font-title);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 20px;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.site-footer__contact > a {
  align-items: center;
  color: var(--plum);
  display: inline-flex;
  font-size: 15px;
  gap: 11px;
  text-decoration: none;
  width: fit-content;
}

.site-footer__contact > a:hover {
  color: #7b4a92;
}

.site-footer__contact svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 19px;
}

.site-footer__logo {
  height: auto;
  margin-top: 8px;
  mix-blend-mode: multiply;
  width: 180px;
}

.site-footer__form {
  display: grid;
  gap: 12px;
}

.site-footer__form h2 {
  color: #21152a;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 3px;
}

.site-footer__form input,
.site-footer__form select,
.site-footer__form textarea {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(90, 48, 107, 0.25);
  border-radius: 5px;
  color: #2d2033;
  font: 500 14px/1.4 var(--font-body);
  min-height: 44px;
  padding: 0 14px;
  width: 100%;
}

.site-footer__form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.site-footer__form input:focus,
.site-footer__form select:focus,
.site-footer__form textarea:focus {
  border-color: var(--detail-purple);
  outline: 2px solid rgba(90, 48, 107, 0.14);
  outline-offset: 1px;
}

.site-footer__form button {
  align-items: center;
  background: #744698;
  border: 0;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: 800 14px var(--font-body);
  gap: 12px;
  justify-content: center;
  min-height: 48px;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.site-footer__form button:hover {
  background: var(--plum);
  transform: translateY(-1px);
}

svg {
  display: block;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  --hero-bg-bleed: 44px;
  --hero-bg-shift: 44px;
  --hero-bg-x: center;
  --hero-bg-y: center;
  background: #f8f1f8;
  height: 100vh;
  isolation: isolate;
  min-height: 790px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero::before {
  background-image: url("imgs/hero-bg-20260822.png");
  background-position: var(--hero-bg-x) var(--hero-bg-y);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: calc(var(--hero-bg-bleed) * -1) 0;
  position: absolute;
  transform: translateY(var(--hero-bg-shift));
  z-index: 0;
}

.hero__copy {
  left: 13.43%;
  position: absolute;
  top: 14.9%;
  width: 820px;
  z-index: 2;
}

.hero__eyebrow {
  align-items: center;
  color: rgba(90, 48, 107, 0.74);
  display: flex;
  font-size: 15px;
  font-weight: 600;
  gap: 18px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.hero__butterfly {
  height: 31px;
  width: 31px;
}

.hero__butterfly path,
.hero__ornament path,
.hero__humanized-icon path,
.benefit__icon path,
.hero__button svg * {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__butterfly path,
.hero__ornament path {
  stroke: var(--detail-purple-muted);
  stroke-width: 1.25;
}

.hero h1 {
  color: var(--plum);
  font-family: var(--font-title);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 32px 0 0;
  text-transform: uppercase;
}

.hero__ornament {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.hero__ornament span {
  background: rgba(90, 48, 107, 0.38);
  display: block;
  height: 1px;
  width: 140px;
}

.hero__ornament svg {
  height: 22px;
  opacity: 0.78;
  width: 25px;
}

.hero__text {
  color: #6b5672;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.44;
  margin: 28px 0 0;
}

.hero__actions {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-top: 43px;
}

.hero__button {
  align-items: center;
  background: var(--detail-purple);
  border-radius: 5px;
  box-shadow: 0 16px 38px rgba(120, 50, 101, 0.18);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 12px;
  height: 61px;
  justify-content: center;
  letter-spacing: 0;
  min-width: 381px;
  padding: 0 26px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.hero__button:hover {
  box-shadow: 0 20px 44px rgba(90, 48, 107, 0.24);
  transform: translateY(-2px);
}

.hero__button--secondary {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(90, 48, 107, 0.42);
  box-shadow: none;
  color: var(--detail-purple);
  min-width: 190px;
  order: 2;
}

.hero__button--secondary:hover {
  background: rgba(90, 48, 107, 0.08);
  box-shadow: 0 12px 28px rgba(90, 48, 107, 0.12);
}

.hero__button svg {
  height: 25px;
  width: 25px;
}

.hero__button svg * {
  stroke: currentColor;
  stroke-width: 1.9;
}

.hero__humanized {
  align-items: center;
  color: var(--detail-purple);
  display: flex;
  font-size: 13px;
  font-weight: 500;
  gap: 14px;
  line-height: 1.55;
  text-transform: uppercase;
  white-space: nowrap;
  order: 3;
}

.hero__humanized-icon {
  align-items: center;
  background: var(--detail-purple-soft);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 60px;
  height: 60px;
  justify-content: center;
  width: 60px;
}

.hero__humanized-icon svg {
  height: 31px;
  width: 31px;
}

.hero__humanized-icon path {
  stroke: var(--detail-purple);
  stroke-width: 1.8;
}

.benefits {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(249, 242, 251, 0.76);
  border-radius: 39px;
  bottom: 54px;
  box-shadow: 0 -14px 42px rgba(125, 74, 105, 0.09);
  display: grid;
  grid-template-columns: 223px 283px 253px;
  height: 130px;
  left: 11.75%;
  overflow: hidden;
  padding: 28px 37px 23px;
  position: absolute;
  width: 833px;
  z-index: 3;
}

.benefit {
  align-items: center;
  display: flex;
  gap: 18px;
  height: 73px;
  min-width: 0;
  padding: 0 26px 0 0;
  position: relative;
}

.benefit + .benefit {
  padding-left: 33px;
}

.benefit + .benefit::before {
  background: rgba(90, 48, 107, 0.18);
  content: "";
  height: 32px;
  left: 0;
  position: absolute;
  top: 21px;
  width: 1px;
}

.benefit__icon {
  align-items: center;
  background: var(--detail-purple-soft);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 58px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.benefit__icon svg {
  height: 34px;
  width: 34px;
}

.benefit__icon path {
  stroke: var(--detail-purple);
  stroke-width: 1.85;
}

.benefit p {
  color: #7a6378;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.72;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.quote-card {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.22), transparent 44%),
    linear-gradient(135deg, rgba(101, 58, 119, 0.95) 0%, rgba(78, 42, 96, 0.95) 100%);
  border-radius: 0 29px 29px 0;
  bottom: 60px;
  box-shadow: 0 22px 42px rgba(115, 59, 106, 0.15);
  color: #fff8f4;
  min-height: 166px;
  padding: 34px 28px 28px 56px;
  position: absolute;
  right: 68px;
  width: 333px;
  z-index: 4;
}

.quote-card::before {
  background: rgba(248, 241, 249, 0.82);
  border-radius: 25px 0 0 25px;
  bottom: 0;
  content: "";
  left: -43px;
  position: absolute;
  top: 0;
  width: 45px;
  z-index: -1;
}

.quote-card__mark {
  color: rgba(255, 246, 240, 0.95);
  font-family: Georgia, serif;
  font-size: 74px;
  font-weight: 700;
  left: 22px;
  line-height: 0.8;
  position: absolute;
  top: 25px;
}

.quote-card p {
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding-top: 18px;
}

.quote-card p span {
  color: #f4bf76;
  font-style: normal;
}

.specialties {
  background-color: #fbf7fc;
  background-image: url("imgs/especialidades-bg-minimal.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 56px 24px 76px;
  position: relative;
}

.specialties__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.specialties__top-ornament {
  align-items: center;
  display: flex;
  gap: 23px;
  height: 34px;
  justify-content: center;
}

.specialties__leaf {
  height: 24px;
  width: 90px;
}

.specialties__butterfly {
  height: 34px;
  width: 38px;
}

.specialties__top-ornament path,
.specialties__rule path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specialties__top-ornament path {
  stroke: rgba(90, 48, 107, 0.83);
  stroke-width: 2;
}

.specialties__butterfly path {
  fill: rgba(90, 48, 107, 0.12);
}

.specialties h2 {
  color: var(--plum);
  font-family: var(--font-title);
  font-size: 62px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin: 17px 0 0;
  text-align: center;
}

.specialties__rule {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}

.specialties__rule span {
  background: linear-gradient(90deg, rgba(90, 48, 107, 0), rgba(90, 48, 107, 0.28));
  display: block;
  height: 1px;
  width: 178px;
}

.specialties__rule span:last-child {
  background: linear-gradient(90deg, rgba(90, 48, 107, 0.28), rgba(90, 48, 107, 0));
}

.specialties__rule svg {
  height: 24px;
  opacity: 0.78;
  width: 27px;
}

.specialties__rule path {
  stroke: rgba(90, 48, 107, 0.46);
  stroke-width: 1.25;
}

.specialties__grid {
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin: 42px auto 0;
  max-width: 1280px;
  position: relative;
  z-index: 1;
}

.specialties__grid::before {
  display: none;
}

.specialty-card {
  align-items: start;
  background:
    linear-gradient(118deg, rgba(90, 48, 107, 0.09), rgba(90, 48, 107, 0) 38%),
    linear-gradient(145deg, rgba(255, 253, 250, 0.98), rgba(248, 241, 249, 0.94));
  border: 1px solid rgba(90, 48, 107, 0.22);
  border-radius: 16px;
  box-shadow:
    0 18px 36px rgba(78, 44, 88, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  min-height: 328px;
  overflow: hidden;
  padding: 30px 28px 28px;
  position: relative;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  flex: 0 1 calc((100% - 66px) / 4);
  z-index: 1;
}

.specialty-card::before {
  background: linear-gradient(90deg, rgba(90, 48, 107, 0.5), rgba(90, 48, 107, 0.16), rgba(90, 48, 107, 0));
  content: "";
  height: 3px;
  inset: 0 0 auto;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
  z-index: 0;
}

.specialty-card::after {
  background: linear-gradient(180deg, rgba(90, 48, 107, 0.72), rgba(90, 48, 107, 0.08));
  content: "";
  height: 118px;
  left: 0;
  opacity: 0.34;
  position: absolute;
  top: 28px;
  width: 4px;
  z-index: 1;
}

.specialty-card:hover {
  border-color: rgba(90, 48, 107, 0.32);
  box-shadow:
    0 26px 48px rgba(90, 48, 107, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transform: translateY(-4px);
}

.specialty-card:hover::before {
  opacity: 1;
}

.specialty-card--center {
  min-height: 328px;
  background:
    linear-gradient(118deg, rgba(90, 48, 107, 0.12), rgba(90, 48, 107, 0) 35%),
    linear-gradient(145deg, rgba(255, 253, 250, 0.98), rgba(248, 241, 249, 0.96));
}

.specialty-card__icon {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(90, 48, 107, 0.16), rgba(255, 255, 255, 0.64));
  border: 1px solid rgba(90, 48, 107, 0.24);
  border-radius: 50%;
  box-shadow:
    0 14px 24px rgba(90, 48, 107, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  height: 64px;
  justify-content: center;
  margin: 2px 0 26px;
  position: relative;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  width: 64px;
  z-index: 2;
}

.specialty-card:hover .specialty-card__icon {
  background: rgba(90, 48, 107, 0.12);
  box-shadow:
    0 14px 24px rgba(90, 48, 107, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: scale(1.06);
}

.specialty-card__icon svg {
  height: 42px;
  width: 42px;
}

.specialty-card__icon circle,
.specialty-card__icon path {
  fill: none;
  stroke: var(--detail-purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.specialty-card__line {
  display: none;
}

.specialty-card__copy {
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.specialty-card--center .specialty-card__copy {
  max-width: none;
}

.specialty-card h3 {
  color: var(--detail-purple);
  font-family: var(--font-title);
  font-size: 24px;
  font-variant: small-caps;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.13;
  margin: 0;
}

.specialty-card p {
  color: #585262;
  font-size: 13.8px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  margin: 18px 0 0;
}

.identity-section {
  background: #fbf7fc;
  min-height: 948px;
  overflow: hidden;
  position: relative;
}

.identity-bg {
  height: auto;
  left: 50%;
  min-height: 100%;
  min-width: 1672px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: max(100%, 1672px);
  z-index: 0;
}

.identity-quote {
  align-items: center;
  background: rgba(250, 247, 252, 0.86);
  border: 1px solid var(--detail-purple-line);
  border-radius: 17px;
  box-shadow:
    0 17px 31px rgba(121, 71, 93, 0.16),
    inset 0 0 0 5px rgba(255, 255, 255, 0.42);
  color: var(--detail-purple);
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 35.8%;
  min-height: 286px;
  padding: 30px 22px 24px;
  position: absolute;
  text-align: center;
  top: 41.6%;
  width: 220px;
  z-index: 3;
}

.identity-quote > span {
  color: rgba(90, 48, 107, 0.42);
  font-family: Georgia, serif;
  font-size: 59px;
  font-weight: 700;
  line-height: 0.72;
  margin-bottom: 12px;
}

.identity-quote p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.34;
  margin: 0;
}

.identity-quote div {
  align-items: center;
  display: flex;
  gap: 13px;
  justify-content: center;
  margin-top: 24px;
  width: 100%;
}

.identity-quote div span {
  background: rgba(90, 48, 107, 0.3);
  display: block;
  height: 1px;
  width: 44px;
}

.identity-quote div strong {
  color: rgba(90, 48, 107, 0.54);
  font-size: 19px;
  line-height: 1;
}

.identity-content {
  left: 57.5%;
  position: absolute;
  top: 25px;
  width: 612px;
  z-index: 2;
}

.identity-kicker {
  align-items: center;
  color: rgba(90, 48, 107, 0.7);
  display: flex;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  gap: 16px;
  justify-content: center;
  letter-spacing: 2px;
  margin: 0 auto 12px;
  text-transform: uppercase;
  transform: translate(-440px, 38px);
}

.identity-kicker span {
  background: rgba(90, 48, 107, 0.3);
  height: 1px;
  width: 72px;
}

.identity-brand {
  text-align: center;
}

.identity-brand__logo {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  mix-blend-mode: multiply;
  width: 425px;
}

.identity-intro {
  color: #3f3641;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.47;
  margin: 32px 0 0 109px;
}

.identity-intro strong,
.identity-point strong {
  color: var(--detail-purple);
  font-weight: 700;
}

.identity-points {
  display: grid;
  gap: 29px;
  margin-top: 36px;
}

.identity-point {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 72px 1px minmax(0, 1fr);
}

.identity-point__icon {
  align-items: center;
  background: rgba(90, 48, 107, 0.08);
  border: 1px solid rgba(90, 48, 107, 0.16);
  border-radius: 50%;
  display: flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.identity-point__icon svg {
  height: 42px;
  width: 42px;
}

.identity-point__icon path,
.identity-point__icon circle {
  fill: none;
  stroke: var(--detail-purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.identity-point__line {
  background: rgba(90, 48, 107, 0.28);
  display: block;
  height: 66px;
  width: 1px;
}

.identity-point p {
  color: #554c55;
  font-size: 15.8px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 0;
}

.identity-credentials {
  align-items: center;
  background: rgba(250, 247, 252, 0.78);
  border: 1px solid var(--detail-purple-line);
  border-radius: 15px;
  bottom: 64px;
  box-shadow: 0 15px 28px rgba(121, 71, 93, 0.1);
  display: grid;
  grid-template-columns: 1fr 1.55fr 1fr;
  min-height: 116px;
  padding: 18px 18px;
  position: absolute;
  left: 7.7%;
  width: 731px;
  z-index: 3;
}

.identity-credential {
  align-items: center;
  display: flex;
  gap: 18px;
  height: 70px;
  justify-content: center;
  min-width: 0;
  padding: 0 18px;
  position: relative;
}

.identity-credential + .identity-credential::before {
  background: rgba(90, 48, 107, 0.24);
  content: "";
  height: 70px;
  left: 0;
  position: absolute;
  top: 0;
  width: 1px;
}

.identity-credential span {
  align-items: center;
  background: rgba(90, 48, 107, 0.08);
  border: 1px solid rgba(90, 48, 107, 0.16);
  border-radius: 50%;
  display: flex;
  flex: 0 0 58px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.identity-credential svg {
  height: 42px;
  width: 42px;
}

.identity-credential path {
  fill: none;
  stroke: var(--detail-purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.identity-credential p {
  color: var(--plum);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
}

.process-section {
  background-color: #fbf7fc;
  background-image: url("imgs/especialidades-bg-minimal.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
  overflow: hidden;
  padding: 56px 24px 76px;
  position: relative;
}

.process-section__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  z-index: 2;
}

.process-section h2 {
  color: var(--detail-purple);
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0;
  text-transform: uppercase;
}

.process-section__header p {
  color: #6a5d68;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  margin: 13px 0 0;
}

.process-section__rule {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 23px;
}

.process-section__rule i {
  background: rgba(90, 48, 107, 0.5);
  border-radius: 50%;
  display: block;
  height: 5px;
  width: 5px;
}

.process-section__rule span {
  background: linear-gradient(90deg, rgba(90, 48, 107, 0), rgba(90, 48, 107, 0.34));
  display: block;
  height: 1px;
  width: 124px;
}

.process-section__rule span:nth-of-type(2) {
  background: linear-gradient(90deg, rgba(90, 48, 107, 0.34), rgba(90, 48, 107, 0));
}

.process-section__rule svg {
  height: 28px;
  width: 44px;
}

.process-section__rule path {
  fill: none;
  stroke: rgba(90, 48, 107, 0.5);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process-grid {
  display: grid;
  align-items: start;
  gap: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  margin: 42px auto 0;
  max-width: 1088px;
  position: relative;
  z-index: 2;
}

.process-grid::before {
  background: linear-gradient(180deg, transparent, rgba(90, 48, 107, 0.2), transparent);
  bottom: 8px;
  content: "";
  left: 50%;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  width: 1px;
  z-index: 0;
}

.process-card {
  --process-offset: 0px;
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.94), rgba(248, 241, 249, 0.88));
  border: 1px solid rgba(90, 48, 107, 0.16);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(78, 44, 88, 0.1);
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  min-height: 240px;
  overflow: hidden;
  padding: 28px 30px;
  position: relative;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  transform: translateY(var(--process-offset));
  z-index: 1;
}

.process-card:hover {
  border-color: rgba(90, 48, 107, 0.32);
  box-shadow: 0 26px 48px rgba(90, 48, 107, 0.16);
  transform: translateY(calc(var(--process-offset) - 5px));
}

.process-card--highlight {
  background:
    linear-gradient(135deg, rgba(90, 48, 107, 0.13), rgba(255, 253, 250, 0.95) 54%, rgba(248, 241, 249, 0.9));
  border-color: rgba(90, 48, 107, 0.28);
}

.process-card:nth-child(even) {
  --process-offset: 0px;
}

.process-card__icon {
  align-items: center;
  align-self: start;
  background: rgba(90, 48, 107, 0.08);
  border: 1px solid rgba(90, 48, 107, 0.16);
  border-radius: 50%;
  box-shadow:
    0 10px 17px rgba(90, 48, 107, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  display: flex;
  grid-column: 1;
  height: 64px;
  justify-content: center;
  margin-top: 10px;
  width: 64px;
}

.process-card__icon svg {
  height: 42px;
  width: 42px;
}

.process-card__icon path {
  fill: none;
  stroke: var(--detail-purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.process-card__copy {
  grid-column: 2;
  padding-left: 8px;
  padding-top: 12px;
  position: relative;
  z-index: 2;
}

.process-card__copy h3 {
  color: var(--detail-purple);
  font-family: var(--font-title);
  font-size: 28px;
  font-variant: small-caps;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.process-card__copy p {
  color: #585262;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  margin: 18px 0 0;
}

.process-card__copy strong {
  color: var(--detail-purple);
  font-weight: 700;
}

.process-card__leaf {
  bottom: -4px;
  height: 70px;
  opacity: 0.36;
  position: absolute;
  right: -2px;
  width: 88px;
}

.process-card__leaf path {
  fill: none;
  stroke: rgba(90, 48, 107, 0.34);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.online-section {
  background-image: url("imgs/online.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 724px;
  overflow: hidden;
  position: relative;
}

.online-section__copy {
  left: 11.2%;
  position: absolute;
  text-align: left;
  top: 13.8%;
  width: 640px;
  z-index: 3;
}

.online-section__copy > p {
  color: rgba(90, 48, 107, 0.74);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 6px;
  line-height: 1;
  margin: 0 0 20px 7px;
  text-transform: uppercase;
}

.online-section h2 {
  color: var(--detail-purple);
  font-family: var(--font-title);
  font-size: 54px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
}

.online-section__rule {
  align-items: center;
  display: flex;
  gap: 11px;
  margin: 22px 0 0;
}

.online-section__rule span {
  background: linear-gradient(90deg, rgba(90, 48, 107, 0), rgba(90, 48, 107, 0.48));
  display: block;
  height: 1px;
  width: 175px;
}

.online-section__rule span:last-child {
  background: linear-gradient(90deg, rgba(90, 48, 107, 0.48), rgba(90, 48, 107, 0));
}

.online-section__rule svg {
  height: 22px;
  opacity: 0.82;
  width: 25px;
}

.online-section__rule path {
  fill: none;
  stroke: var(--detail-purple-muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.online-checklist {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 35px 0 0;
  padding: 0 0 0 7px;
}

.online-checklist li {
  align-items: center;
  color: #5d555e;
  display: flex;
  font-size: 20.5px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

.online-checklist li::before {
  align-items: center;
  border: 2px solid rgba(90, 48, 107, 0.34);
  border-radius: 50%;
  color: var(--detail-purple);
  content: "✓";
  display: inline-flex;
  flex: 0 0 35px;
  font-size: 22px;
  height: 35px;
  justify-content: center;
  line-height: 1;
  margin-right: 23px;
  width: 35px;
}

.faq-section {
  background-color: #fbf7fc;
  background-image: url("imgs/faq.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 64px 24px 82px;
  position: relative;
}

.faq-section__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  z-index: 1;
}

.faq-section__top-ornament {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.faq-section__top-ornament span {
  background: linear-gradient(90deg, rgba(90, 48, 107, 0), rgba(90, 48, 107, 0.38));
  display: block;
  height: 1px;
  width: 76px;
}

.faq-section__top-ornament span:last-child {
  background: linear-gradient(90deg, rgba(90, 48, 107, 0.38), rgba(90, 48, 107, 0));
}

.faq-section__top-ornament svg {
  height: 28px;
  opacity: 0.78;
  width: 44px;
}

.faq-section__top-ornament path {
  fill: none;
  stroke: rgba(90, 48, 107, 0.62);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.faq-section h2 {
  color: var(--plum);
  font-family: var(--font-title);
  font-size: 58px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin: 14px 0 0;
  text-transform: uppercase;
}

.faq-section__header p {
  color: #6a5d68;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  margin: 14px 0 0;
}

.faq-list {
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.9), rgba(248, 241, 249, 0.84));
  border: 1px solid rgba(90, 48, 107, 0.18);
  border-radius: 16px;
  box-shadow:
    0 22px 44px rgba(78, 44, 88, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  margin: 42px auto 0;
  max-width: 888px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.faq-item {
  border-bottom: 1px solid rgba(90, 48, 107, 0.14);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  align-items: center;
  color: var(--detail-purple);
  cursor: pointer;
  display: grid;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  gap: 22px;
  grid-template-columns: 24px minmax(0, 1fr);
  letter-spacing: 0;
  line-height: 1.25;
  list-style: none;
  min-height: 58px;
  padding: 18px 30px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  border: 1px solid rgba(90, 48, 107, 0.42);
  border-radius: 50%;
  display: block;
  height: 23px;
  position: relative;
  width: 23px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  background: var(--detail-purple);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::before {
  height: 1px;
  width: 9px;
}

.faq-item__icon::after {
  height: 9px;
  transition: opacity 180ms ease;
  width: 1px;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.42);
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
}

.faq-item p {
  color: #5d555e;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.72;
  margin: -2px 0 0;
  padding: 0 36px 24px 76px;
}

.reviews-section {
  background-color: #fbf7fc;
  background-image: url("imgs/especialidades-bg-minimal.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 48px 24px 58px;
  position: relative;
}

.reviews-section__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 860px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.reviews-section__eyebrow {
  align-items: center;
  color: rgba(90, 48, 107, 0.72);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 14px;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
}

.reviews-section__eyebrow span {
  background: rgba(90, 48, 107, 0.34);
  display: block;
  height: 1px;
  width: 72px;
}

.reviews-section h2 {
  color: var(--plum);
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 18px 0 0;
  text-transform: uppercase;
}

.reviews-section__header p {
  color: #5d555e;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  margin: 14px 0 0;
}

.reviews-carousel {
  --review-gap: 18px;
  margin: 26px auto 0;
  max-width: 1130px;
  position: relative;
  z-index: 1;
}

.reviews-carousel__viewport {
  margin: -8px;
  overflow: hidden;
  padding: 8px;
}

.reviews-showcase {
  display: flex;
  gap: var(--review-gap);
  margin: 0;
  max-width: none;
  transform: translateX(var(--review-offset, 0px));
  transition: transform 360ms ease;
}

.review-card {
  background:
    radial-gradient(circle at 92% 12%, rgba(90, 48, 107, 0.12), transparent 34%),
    linear-gradient(140deg, rgba(255, 253, 250, 0.98), rgba(248, 241, 249, 0.92));
  border: 1px solid rgba(90, 48, 107, 0.22);
  border-radius: 12px;
  box-shadow:
    0 16px 30px rgba(78, 44, 88, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  padding: 20px 20px 22px;
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 236px;
  width: calc((100% - 36px) / 3);
}

.review-card::before {
  background: linear-gradient(180deg, rgba(90, 48, 107, 0.74), rgba(90, 48, 107, 0.08));
  content: "";
  inset: 0 auto 0 0;
  opacity: 0.78;
  position: absolute;
  width: 4px;
}

.review-card__mark {
  color: rgba(90, 48, 107, 0.12);
  font-family: Georgia, serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 0;
}

.review-card__header {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 44px minmax(0, 1fr) 30px;
  position: relative;
  text-align: left;
  z-index: 1;
}

.review-card__avatar {
  align-items: center;
  background: linear-gradient(135deg, #6d3a80, #4f285f);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.review-card h3 {
  color: var(--plum);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.review-card__header p {
  color: #6a5d68;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  margin: 5px 0 0;
}

.review-card__source {
  align-items: center;
  align-self: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(90, 48, 107, 0.14);
  border-radius: 50%;
  color: var(--detail-purple);
  display: flex;
  font-size: 0;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  padding: 0;
  width: 28px;
}

.review-card__source::before {
  content: "G";
  font-size: 100px;
  line-height: 1;
}

.review-card__stars {
  color: #d8a23a;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
  margin: 16px 0 0;
  position: relative;
  z-index: 1;
}

.review-card__body {
  margin: 12px 0 0;
  max-width: none;
  overflow: hidden;
  position: relative;
  text-align: left;
  z-index: 1;
}

.review-card__body:not(.is-expanded) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.review-card__body:not(.is-expanded)::after {
  background: linear-gradient(90deg, rgba(248, 241, 249, 0), rgba(248, 241, 249, 0.96));
  bottom: 0;
  content: "";
  height: 28px;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: 58%;
}

.review-card__text {
  color: #47404c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.48;
  margin: 0;
}

.review-card__text + .review-card__text {
  margin-top: 14px;
}

.review-card__reply {
  border-left: 2px solid rgba(90, 48, 107, 0.28);
  display: grid;
  gap: 3px;
  margin-top: 14px;
  padding-left: 12px;
}

.review-card__reply strong {
  color: var(--plum);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.review-card__reply span {
  color: #6a5d68;
  font-size: 11px;
  line-height: 1.35;
}

.review-card__toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--detail-purple);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 12px 0 0;
  padding: 0;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.review-card__toggle::after {
  background: currentColor;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.42;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
}

.reviews-carousel__controls {
  align-items: center;
  display: contents;
}

.reviews-carousel__button {
  align-items: center;
  background: rgba(90, 48, 107, 0.1);
  border: 1px solid rgba(90, 48, 107, 0.2);
  border-radius: 50%;
  color: var(--detail-purple);
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 44%;
  transition:
    background 180ms ease,
    transform 180ms ease;
  width: 40px;
  z-index: 3;
}

.reviews-carousel__button[data-review-prev] {
  left: -18px;
}

.reviews-carousel__button[data-review-next] {
  right: -18px;
}

.reviews-carousel__button:hover {
  background: rgba(90, 48, 107, 0.16);
  transform: translateY(-2px);
}

.reviews-carousel__button svg {
  height: 22px;
  width: 22px;
}

.reviews-carousel__button path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.reviews-carousel__dots {
  align-items: center;
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-top: 16px;
}

.reviews-carousel__dot {
  background: rgba(90, 48, 107, 0.24);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 9px;
  padding: 0;
  transition:
    background 180ms ease,
    width 180ms ease;
  width: 9px;
}

.reviews-carousel__dot.is-active {
  background: var(--detail-purple);
  width: 28px;
}

.appointment-section {
  background-color: #fbf7fc;
  background-image: url("imgs/especialidades-bg-minimal.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 48px 24px 40px;
  position: relative;
  text-align: center;
}

.appointment-section__header {
  margin: 0 auto;
  max-width: 880px;
  position: relative;
  z-index: 1;
}

.appointment-section h2 {
  color: var(--plum);
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
  text-transform: uppercase;
}

.appointment-section__rule,
.appointment-card__rule {
  align-items: center;
  display: flex;
  gap: 13px;
  justify-content: center;
}

.appointment-section__rule {
  margin-top: 18px;
}

.appointment-section__rule span,
.appointment-card__rule span {
  background: linear-gradient(90deg, rgba(90, 48, 107, 0), rgba(90, 48, 107, 0.42));
  display: block;
  height: 1px;
  width: 104px;
}

.appointment-section__rule span:last-child,
.appointment-card__rule span:last-child {
  background: linear-gradient(90deg, rgba(90, 48, 107, 0.42), rgba(90, 48, 107, 0));
}

.appointment-section__rule svg,
.appointment-card__rule svg {
  height: 24px;
  width: 38px;
}

.appointment-section__rule path,
.appointment-card__rule path {
  fill: none;
  stroke: rgba(90, 48, 107, 0.72);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.appointment-section__header p {
  color: #4f4853;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  margin: 16px auto 0;
  max-width: 820px;
}

.appointment-card {
  background: rgba(255, 253, 250, 0.66);
  border: 1.5px solid rgba(90, 48, 107, 0.56);
  border-radius: 24px;
  box-shadow:
    0 22px 44px rgba(78, 44, 88, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  margin: 28px auto 0;
  max-width: 900px;
  padding: 22px 42px;
  position: relative;
  z-index: 1;
}

.appointment-card h3 {
  color: var(--plum);
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

.appointment-card__rule {
  margin-top: 13px;
}

.appointment-card__rule span {
  width: 88px;
}

.appointment-steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px auto 0;
  max-width: 700px;
  position: relative;
}

.appointment-steps::before {
  background: linear-gradient(90deg, rgba(90, 48, 107, 0), rgba(90, 48, 107, 0.74), rgba(90, 48, 107, 0));
  content: "";
  height: 1px;
  left: 14%;
  position: absolute;
  right: 14%;
  top: 43px;
  z-index: 0;
}

.appointment-step {
  display: grid;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.appointment-step::before,
.appointment-step::after {
  background: var(--detail-purple);
  border-radius: 50%;
  content: "";
  height: 7px;
  position: absolute;
  top: 40px;
  width: 7px;
}

.appointment-step::before {
  left: calc(50% - 78px);
}

.appointment-step::after {
  right: calc(50% - 78px);
}

.appointment-step:first-child::before,
.appointment-step:last-child::after {
  display: none;
}

.appointment-step span {
  align-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(90, 48, 107, 0.1), rgba(90, 48, 107, 0.04) 54%, transparent 56%),
    rgba(255, 255, 255, 0.72);
  border: 1.5px solid var(--detail-purple);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px rgba(90, 48, 107, 0.08);
  color: var(--plum);
  display: flex;
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 400;
  height: 88px;
  justify-content: center;
  line-height: 1;
  width: 88px;
}

.appointment-step p {
  color: #3f3945;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.32;
  margin: 16px 0 0;
}

.appointment-button {
  align-items: center;
  background: linear-gradient(135deg, #6d3a80, #4f285f);
  border-radius: 12px;
  box-shadow: 0 12px 20px rgba(78, 44, 88, 0.22);
  color: #fff;
  display: inline-flex;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 500;
  gap: 15px;
  justify-content: center;
  letter-spacing: 0;
  margin-top: 24px;
  min-height: 62px;
  min-width: 360px;
  padding: 0 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.appointment-button:hover {
  box-shadow: 0 16px 26px rgba(78, 44, 88, 0.28);
  transform: translateY(-2px);
}

.appointment-button svg {
  height: 32px;
  width: 32px;
}

.appointment-button path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.appointment-note {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: center;
  margin: 24px auto 0;
  max-width: 650px;
}

.appointment-note > span,
.appointment-info span {
  align-items: center;
  background: rgba(90, 48, 107, 0.1);
  border: 1px solid rgba(90, 48, 107, 0.18);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 50px;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.appointment-note svg {
  height: 31px;
  width: 31px;
}

.appointment-note path,
.appointment-info path,
.appointment-info circle {
  fill: none;
  stroke: var(--detail-purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.appointment-note p {
  color: #3f3945;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.42;
  margin: 0;
  text-align: left;
}

.appointment-note strong {
  color: var(--detail-purple);
  font-weight: 700;
}

.appointment-info {
  align-items: center;
  color: #342d39;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  gap: 28px;
  justify-content: center;
  line-height: 1;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.appointment-info a,
.appointment-info div {
  align-items: center;
  color: inherit;
  display: inline-flex;
  gap: 16px;
  text-decoration: none;
}

.appointment-info a::after {
  background: rgba(90, 48, 107, 0.46);
  content: "";
  height: 48px;
  margin-left: 18px;
  width: 1px;
}

.appointment-info span {
  flex-basis: 46px;
  height: 46px;
  width: 46px;
}

.appointment-info svg {
  height: 27px;
  width: 27px;
}

@media (max-width: 1400px) {
  .specialties__grid {
    max-width: calc(100vw - 80px);
  }

  .specialty-card {
    padding-left: 24px;
    padding-right: 22px;
  }

  .identity-content {
    left: 52%;
    transform: scale(0.92);
    transform-origin: top left;
  }

  .identity-quote {
    transform: scale(0.92);
    transform-origin: top left;
  }

  .identity-credentials {
    left: 7.7%;
    transform: scale(0.92);
    transform-origin: bottom left;
  }

  .process-grid {
    gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: min(1088px, calc(100vw - 80px));
  }

  .process-card {
    padding-left: 24px;
    padding-right: 22px;
  }

  .online-section__copy {
    left: 10%;
    transform: scale(0.88);
    transform-origin: top left;
  }

}

@media (max-width: 1300px) {
  .hero__copy {
    left: 8%;
    top: 13%;
    transform: scale(0.9);
    transform-origin: top left;
  }

  .benefits {
    left: 7%;
    transform: scale(0.9);
    transform-origin: bottom left;
  }

  .quote-card {
    right: 34px;
    transform: scale(0.9);
    transform-origin: bottom right;
  }
}

@media (max-width: 1080px) {
  .specialties {
    min-height: auto;
    padding-bottom: 72px;
  }

  .specialties__grid {
    max-width: calc(100vw - 48px);
  }

  .specialty-card:nth-child(-n + 3),
  .specialty-card {
    flex-basis: calc((100% - 34px) / 2);
    min-height: 280px;
  }

  .review-card {
    flex-basis: calc((100% - var(--review-gap)) / 2);
    width: calc((100% - var(--review-gap)) / 2);
  }

  .reviews-carousel__button[data-review-prev] {
    left: -10px;
  }

  .reviews-carousel__button[data-review-next] {
    right: -10px;
  }

  .identity-section {
    min-height: auto;
    padding: 560px 24px 60px;
  }

  .identity-bg {
    left: 0;
    min-height: 0;
    min-width: 0;
    transform: none;
    width: 1280px;
  }

  .identity-content,
  .identity-credentials,
  .identity-quote {
    position: relative;
    transform: none;
  }

  .identity-content {
    left: auto;
    margin-left: auto;
    margin-top: -24px;
    max-width: 680px;
    top: auto;
    transform: translateX(-44px);
    width: 100%;
  }

  .identity-kicker {
    transform: translateX(44px);
  }

  .identity-quote {
    left: auto;
    margin: 0 0 34px auto;
    top: auto;
  }

  .identity-credentials {
    bottom: auto;
    left: auto;
    margin: 34px auto 0;
    right: auto;
    width: min(100%, 731px);
  }

  .process-section {
    min-height: auto;
    padding-bottom: 72px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: calc(100vw - 48px);
  }

  .process-card,
  .process-card:nth-child(1),
  .process-card:nth-child(2),
  .process-card:nth-child(3),
  .process-card:nth-child(4),
  .process-card:nth-child(5),
  .process-card:nth-child(6) {
    --process-offset: 0px;
    grid-column: auto;
    min-height: 240px;
  }

  .online-section {
    background-position: 58% top;
    background-size: 1280px auto;
    min-height: auto;
    padding: 440px 24px 64px;
  }

  .online-section__copy {
    left: auto;
    position: relative;
    top: auto;
    transform: none;
  }

  .online-section__copy {
    max-width: 640px;
    width: 100%;
  }

}

@media (max-width: 980px) {
  .hero {
    --hero-bg-x: 58%;
    height: auto;
    min-height: 980px;
    padding: 82px 24px 260px;
  }

  .hero__copy {
    left: auto;
    max-width: 620px;
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__actions {
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 58px;
  }

  .benefits {
    bottom: 54px;
    left: 24px;
    right: 24px;
    transform: none;
    width: auto;
  }

  .quote-card {
    bottom: 154px;
    right: 24px;
    transform: none;
  }
}

@media (max-width: 720px) {
  .specialties {
    padding: 38px 18px 54px;
  }

  .specialties__top-ornament {
    gap: 14px;
    transform: scale(0.82);
  }

  .specialties h2 {
    font-size: 43px;
    line-height: 1.04;
    margin-top: 12px;
  }

  .specialties__rule {
    margin-top: 17px;
  }

  .specialties__rule span {
    width: 96px;
  }

  .specialties__grid {
    gap: 18px;
    margin-top: 28px;
    max-width: 520px;
  }

  .specialties__grid::before {
    display: none;
  }

  .specialty-card,
  .specialty-card:nth-child(-n + 3),
  .specialty-card--center {
    flex-basis: 100%;
    grid-column: auto;
    min-height: auto;
    width: 100%;
  }

  .specialty-card {
    column-gap: 17px;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    padding: 22px 20px;
  }

  .specialty-card__icon {
    height: 70px;
    margin: 0;
    width: 70px;
  }

  .specialty-card__copy {
    grid-column: 2;
    padding-top: 4px;
  }

  .specialty-card__icon svg {
    height: 45px;
    width: 45px;
  }

  .specialty-card h3 {
    font-size: 24px;
  }

  .specialty-card p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }

  .identity-section {
    padding: 430px 18px 46px;
  }

  .identity-content {
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  .identity-kicker {
    transform: none;
  }

  .identity-bg {
    left: 15%;
    transform: translateX(-11%);
    width: 1010px;
  }

  .identity-quote {
    display: none;
    min-height: auto;
    padding: 24px 18px 20px;
    width: 202px;
  }

  .identity-quote p {
    font-size: 15px;
  }

  .identity-brand__logo {
    width: 330px;
  }

  .identity-intro {
    font-size: 18px;
    margin-left: 0;
    text-align: center;
  }

  .identity-intro br,
  .identity-point br {
    display: none;
  }

  .identity-point {
    align-items: start;
    gap: 13px;
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .identity-point__icon {
    height: 60px;
    width: 60px;
  }

  .identity-point__line {
    display: none;
  }

  .identity-point p {
    font-size: 14px;
    padding-top: 4px;
  }

  .identity-credentials {
    grid-template-columns: 1fr;
    padding: 12px 20px;
  }

  .identity-credential {
    justify-content: flex-start;
    padding: 17px 0;
  }

  .identity-credential + .identity-credential::before {
    height: 1px;
    left: 0;
    top: 0;
    width: 100%;
  }

  .process-section {
    padding: 44px 18px 56px;
  }

  .process-section h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .process-section__header p {
    font-size: 15px;
    max-width: 520px;
  }

  .process-section__rule span {
    width: 74px;
  }

  .process-grid {
    gap: 18px;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 30px;
    max-width: 520px;
  }

  .process-grid::before {
    display: none;
  }

  .process-card,
  .process-card:nth-child(1),
  .process-card:nth-child(2),
  .process-card:nth-child(3),
  .process-card:nth-child(4),
  .process-card:nth-child(5),
  .process-card:nth-child(6) {
    --process-offset: 0px;
    border-radius: 16px;
    grid-column: auto;
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: auto;
    padding: 22px 20px 24px;
  }

  .process-card__icon {
    height: 70px;
    margin-top: 4px;
    width: 70px;
  }

  .process-card__icon svg {
    height: 46px;
    width: 46px;
  }

  .process-card__copy {
    padding-left: 13px;
    padding-top: 8px;
  }

  .process-card__copy h3 {
    font-size: 24px;
  }

  .process-card__copy p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }

  .process-card__leaf {
    height: 52px;
    width: 66px;
  }

  .online-section {
    background-image: none;
    padding: 46px 18px 0;
  }

  .online-section::after {
    background-image: url("imgs/online.png");
    background-position: calc(99% + 10px) top;
    background-repeat: no-repeat;
    background-size: 800px auto;
    content: "";
    display: block;
    height: 450px;
    margin: 30px -18px 0;
  }

  .online-section__copy > p {
    font-size: 11px;
    letter-spacing: 3.5px;
    margin-bottom: 10px;
  }

  .online-section h2 {
    font-size: 34px;
    line-height: 1;
  }

  .online-section__rule {
    margin-top: 14px;
  }

  .online-section__rule span {
    width: 80px;
  }

  .online-checklist {
    gap: 14px;
    margin-top: 24px;
    padding-left: 0;
  }

  .online-checklist li {
    font-size: 15px;
    line-height: 1.12;
  }

  .online-checklist li::before {
    flex-basis: 29px;
    font-size: 18px;
    height: 29px;
    margin-right: 13px;
    width: 29px;
  }

  .faq-section {
    padding: 44px 18px 58px;
  }

  .faq-section h2 {
    font-size: 40px;
    line-height: 1.05;
    margin-top: 12px;
  }

  .faq-section__header p {
    font-size: 14px;
    max-width: 360px;
  }

  .faq-section__top-ornament span {
    width: 58px;
  }

  .faq-list {
    margin-top: 32px;
    max-width: 520px;
  }

  .faq-item summary {
    font-size: 18px;
    gap: 16px;
    min-height: 56px;
    padding: 16px 18px;
  }

  .faq-item p {
    font-size: 14.5px;
    padding: 0 18px 20px 58px;
  }

  .reviews-section {
    padding: 44px 18px 56px;
  }

  .reviews-section__eyebrow {
    font-size: 11px;
    gap: 10px;
  }

  .reviews-section__eyebrow span {
    width: 46px;
  }

  .reviews-section h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .reviews-section__header p {
    font-size: 14px;
  }

  .reviews-carousel {
    margin-top: 30px;
    max-width: 560px;
  }

  .reviews-carousel__controls {
    gap: 14px;
  }

  .reviews-carousel__button {
    height: 38px;
    width: 38px;
  }

  .reviews-carousel__button[data-review-prev] {
    left: -6px;
  }

  .reviews-carousel__button[data-review-next] {
    right: -6px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 226px;
    padding: 26px 20px 24px;
    width: 100%;
  }

  .review-card__mark {
    font-size: 96px;
    right: 18px;
    top: 4px;
  }

  .review-card__header {
    gap: 13px;
    grid-template-columns: 48px minmax(0, 1fr) 30px;
  }

  .review-card__avatar {
    font-size: 22px;
    height: 48px;
    width: 48px;
  }

  .review-card__text {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .appointment-section {
    padding: 46px 18px 48px;
  }

  .appointment-section h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .appointment-section__header p {
    font-size: 15px;
    max-width: 520px;
  }

  .appointment-card {
    border-radius: 22px;
    margin-top: 28px;
    max-width: 620px;
    padding: 24px 22px;
  }

  .appointment-card h3 {
    font-size: 30px;
  }

  .appointment-steps {
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 24px;
    max-width: 360px;
  }

  .appointment-steps::before,
  .appointment-step::before,
  .appointment-step::after {
    display: none;
  }

  .appointment-step {
    align-items: center;
    column-gap: 18px;
    grid-template-columns: 82px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .appointment-step span {
    box-shadow: inset 0 0 0 7px rgba(90, 48, 107, 0.08);
    font-size: 38px;
    height: 82px;
    width: 82px;
  }

  .appointment-step p {
    font-size: 15px;
    margin: 0;
  }

  .appointment-button {
    font-size: 20px;
    min-height: 62px;
    min-width: 0;
    padding: 0 24px;
    width: min(100%, 360px);
  }

  .appointment-button svg {
    height: 30px;
    width: 30px;
  }

  .appointment-note {
    align-items: flex-start;
    gap: 16px;
    max-width: 390px;
  }

  .appointment-note p {
    font-size: 15px;
  }

  .appointment-note > span {
    flex-basis: 50px;
    height: 50px;
    width: 50px;
  }

  .appointment-info {
    align-items: flex-start;
    flex-direction: column;
    font-size: 17px;
    gap: 14px;
    margin-left: auto;
    margin-right: auto;
    max-width: 360px;
  }

  .appointment-info a::after {
    display: none;
  }

}

@media (max-width: 640px) {
  .hero::before {
    background-image: url("imgs/hero-bg-tel-20260822.png");
    background-size: 100% auto;
  }

  .hero {
    --hero-bg-x: center;
    --hero-bg-y: top;
    min-height: auto;
    padding: 326px 18px 72px;
  }

  .hero__eyebrow {
    align-items: flex-start;
    display: none;
    font-size: 11px;
    gap: 10px;
    line-height: 1.45;
  }

  .hero__butterfly {
    flex: 0 0 26px;
    height: 26px;
    width: 26px;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.08;
    margin-top: 52px;
  }

  .hero__ornament {
    display: none;
    margin-top: 24px;
  }

  .hero__text {
    font-size: 13px;
  }

  .hero__text br {
    display: none;
  }

  .hero__actions {
    flex-direction: row;
    gap: 8px;
    justify-content: center;
  }

  .hero__button {
    font-size: 8px;
    gap: 5px;
    height: 40px;
    line-height: 1.15;
    min-width: 0;
    padding: 0 8px;
    text-align: center;
    width: calc((100% - 8px) / 2);
  }

  .hero__button svg {
    height: 14px;
    width: 14px;
  }

  .hero__humanized {
    white-space: normal;
  }

  .quote-card {
    display: none;
  }

  .benefits {
    display: none;
  }

  .benefit,
  .benefit + .benefit {
    height: auto;
    padding: 0;
    width: 100%;
  }

  .benefit + .benefit::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 40px 18px 46px;
  }

  .site-footer__inner {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .site-footer h2 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__button,
  .specialty-card,
  .specialty-card::before,
  .specialty-card__icon,
  .process-card,
  .appointment-button,
  .reviews-showcase,
  .reviews-carousel__button,
  .reviews-carousel__dot {
    transition: none;
  }

  .hero__button:hover,
  .specialty-card:hover,
  .specialty-card:hover .specialty-card__icon,
  .process-card:hover,
  .appointment-button:hover {
    transform: none;
  }
}
