/* ==========================================================
   HOME — BLOQUE EQUIPO CLÍNICA DR. ASO
   ========================================================== */

.aso-home-team {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-sky: #eaf7ff;
  --aso-sky-light: #f6fbfe;
  --aso-coral: #ef6b67;
  --aso-purple: #7b4bb3;
  --aso-text: #263846;
  --aso-muted: #667789;
  --aso-border: rgba(31,111,152,.15);
  --aso-shadow: 0 22px 52px rgba(31,111,152,.12);

  margin: 0;
  padding: 72px 22px;
  background:
    radial-gradient(circle at 92% 8%, rgba(31,111,152,.10), transparent 30%),
    linear-gradient(135deg, #f7fcff 0%, #eaf7fc 54%, #ffffff 100%);
}

.aso-home-team *,
.aso-home-team *::before,
.aso-home-team *::after {
  box-sizing: border-box;
}

.aso-home-team__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.aso-home-team__head {
  max-width: 920px;
  margin: 0 auto 38px;
  text-align: center;
}

.aso-home-team__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--aso-coral);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.aso-home-team__kicker::before,
.aso-home-team__kicker::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(239,107,103,.58);
}

.aso-home-team__head h2 {
  margin: 0 0 16px;
  color: var(--aso-blue-dark);
  font-size: 36px;
  line-height: 1.17;
  font-weight: 800;
  letter-spacing: -.025em;
}

.aso-home-team__head p {
  margin: 0;
  color: var(--aso-text);
  font-size: 18px;
  line-height: 1.7;
}

.aso-home-team__layout {
  display: grid;
  grid-template-columns: minmax(310px, .86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: stretch;
}

.aso-home-team__intro {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--aso-border);
  border-radius: 14px;
  box-shadow: var(--aso-shadow);
}

.aso-home-team__intro-image {
  position: relative;
  overflow: hidden;
  background: var(--aso-sky-light);
}

.aso-home-team__intro-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.aso-home-team__intro-body {
  padding: 25px 25px 27px;
}

.aso-home-team__intro-label {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 6px 11px;
  color: var(--aso-blue-dark);
  background: var(--aso-sky);
  border-radius: 999px;
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .025em;
}

.aso-home-team__intro h3 {
  margin: 0 0 12px;
  color: var(--aso-blue-dark);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.aso-home-team__intro p {
  margin: 0;
  color: var(--aso-text);
  font-size: 15.5px;
  line-height: 1.68;
}

.aso-home-team__intro-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.aso-home-team__intro-list li {
  position: relative;
  padding-left: 21px;
  color: var(--aso-muted);
  font-size: 14px;
  line-height: 1.5;
}

.aso-home-team__intro-list li::before {
  content: "";
  position: absolute;
  top: .52em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--aso-coral);
  border-radius: 999px;
}

.aso-home-team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.aso-home-team__card {
  --aso-card-accent: var(--aso-blue);

  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  min-height: 138px;
  padding: 15px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--aso-border);
  border-left: 4px solid var(--aso-card-accent);
  border-radius: 12px;
  box-shadow: 0 15px 34px rgba(31,111,152,.09);
  text-decoration: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.aso-home-team__card:hover,
.aso-home-team__card:focus-visible {
  color: inherit;
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 23px 46px rgba(31,111,152,.15);
}

.aso-home-team__card--maxilo {
  --aso-card-accent: var(--aso-blue-deep);
}

.aso-home-team__card--anesthesia {
  --aso-card-accent: var(--aso-purple);
}

.aso-home-team__photo {
  overflow: hidden;
  width: 92px;
  height: 112px;
  background: var(--aso-sky-light);
  border-radius: 10px;
}

.aso-home-team__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}

.aso-home-team__card-body {
  min-width: 0;
}

.aso-home-team__role {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 5px 9px;
  color: var(--aso-card-accent);
  background: var(--aso-sky-light);
  border-radius: 999px;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .025em;
}

.aso-home-team__card--anesthesia .aso-home-team__role {
  background: #f6effb;
}

.aso-home-team__card h3 {
  margin: 0 0 5px;
  color: var(--aso-blue-dark);
  font-size: 17px;
  line-height: 1.28;
  font-weight: 800;
}

.aso-home-team__card p {
  margin: 0;
  color: var(--aso-muted);
  font-size: 13px;
  line-height: 1.45;
}

.aso-home-team__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--aso-card-accent);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 850;
}

.aso-home-team__cta::after {
  content: "→";
  transition: transform .22s ease;
}

.aso-home-team__card:hover .aso-home-team__cta::after,
.aso-home-team__card:focus-visible .aso-home-team__cta::after {
  transform: translateX(4px);
}

.aso-home-team__support {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 22px 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--aso-border);
  border-radius: 12px;
  box-shadow: 0 15px 34px rgba(31,111,152,.08);
}

.aso-home-team__support-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--aso-blue-dark), var(--aso-blue));
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .025em;
}

.aso-home-team__support p {
  margin: 0;
  color: var(--aso-text);
  font-size: 15px;
  line-height: 1.55;
}

.aso-home-team__support strong {
  color: var(--aso-blue-dark);
}

.aso-home-team__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.aso-home-team__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--aso-blue-dark), var(--aso-blue));
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(21,90,125,.18);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background-color .22s ease;
}

.aso-home-team__button:hover,
.aso-home-team__button:focus-visible {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 19px 38px rgba(21,90,125,.25);
}

.aso-home-team__button--secondary {
  color: var(--aso-blue-dark);
  background: #fff;
  border-color: rgba(31,111,152,.24);
  box-shadow: none;
}

.aso-home-team__button--secondary:hover,
.aso-home-team__button--secondary:focus-visible {
  color: var(--aso-blue-dark);
  background: var(--aso-sky-light);
}

.aso-home-team__card:focus-visible,
.aso-home-team__button:focus-visible {
  outline: 3px solid rgba(31,111,152,.3);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .aso-home-team__layout {
    grid-template-columns: 1fr;
  }

  .aso-home-team__intro {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .aso-home-team {
    padding: 54px 17px;
  }

  .aso-home-team__head {
    margin-bottom: 31px;
  }

  .aso-home-team__head h2 {
    font-size: 29px;
  }

  .aso-home-team__head p {
    font-size: 16px;
  }

  .aso-home-team__grid {
    grid-template-columns: 1fr;
  }

  .aso-home-team__support {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .aso-home-team__support-label {
    width: fit-content;
    margin: 0 auto;
  }

  .aso-home-team__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aso-home-team__button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .aso-home-team {
    padding: 46px 16px;
  }

  .aso-home-team__card {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 13px;
    padding: 13px;
  }

  .aso-home-team__photo {
    width: 78px;
    height: 96px;
  }

  .aso-home-team__intro-body {
    padding: 22px 20px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-team__card,
  .aso-home-team__button,
  .aso-home-team__cta::after {
    transition: none;
  }

  .aso-home-team__card:hover,
  .aso-home-team__card:focus-visible,
  .aso-home-team__button:hover,
  .aso-home-team__button:focus-visible {
    transform: none;
  }
}

/* ==========================================================
   HOME — BLOQUE "LA CLÍNICA CON EL MEJOR CIRUJANO..."
   Rediseño visual respetando el texto SEO original.
   ========================================================== */

.aso-home-best-clinic {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-sky: #eaf7ff;
  --aso-sky-light: #f6fbfe;
  --aso-coral: #ef6b67;
  --aso-text: #263846;
  --aso-muted: #667789;
  --aso-border: rgba(31,111,152,.15);
  --aso-shadow: 0 22px 52px rgba(31,111,152,.12);

  margin: 0;
  padding: 72px 22px;
  background:
    radial-gradient(circle at 8% 12%, rgba(31,111,152,.08), transparent 31%),
    linear-gradient(135deg, #ffffff 0%, #f7fcff 48%, #eaf7fc 100%);
}

.aso-home-best-clinic *,
.aso-home-best-clinic *::before,
.aso-home-best-clinic *::after {
  box-sizing: border-box;
}

.aso-home-best-clinic__wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.aso-home-best-clinic__grid {
  display: grid;
  grid-template-columns: minmax(310px, .92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.aso-home-best-clinic__media {
  position: relative;
  margin: 0;
}

.aso-home-best-clinic__media::before {
  content: "";
  position: absolute;
  inset: 28px -16px -18px 38px;
  z-index: 0;
  background:
    linear-gradient(145deg, rgba(31,111,152,.12), rgba(234,247,255,.95));
  border-radius: 34px;
}

.aso-home-best-clinic__image-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(31,111,152,.12);
  border-radius: 28px;
  box-shadow: 0 26px 62px rgba(21,90,125,.18);
}

.aso-home-best-clinic__image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
}

.aso-home-best-clinic__caption {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin: -26px auto 0;
  padding: 14px 18px;
  color: var(--aso-blue-dark);
  text-align: center;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--aso-border);
  border-radius: 15px;
  box-shadow: 0 15px 32px rgba(21,90,125,.14);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 800;
}

.aso-home-best-clinic__content {
  position: relative;
  padding: 34px 34px 32px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(31,111,152,.14);
  border-radius: 18px;
  box-shadow: var(--aso-shadow);
  backdrop-filter: blur(7px);
}

.aso-home-best-clinic__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--aso-coral);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.aso-home-best-clinic__kicker::before,
.aso-home-best-clinic__kicker::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(239,107,103,.58);
}

.aso-home-best-clinic__content h2 {
  margin: 0 0 21px;
  color: var(--aso-blue-dark);
  font-size: 34px;
  line-height: 1.17;
  font-weight: 800;
  letter-spacing: -.025em;
}

.aso-home-best-clinic__text {
  color: var(--aso-text);
}

.aso-home-best-clinic__text p {
  margin: 0 0 18px;
  color: var(--aso-text);
  text-align: left !important;
  font-size: 17px;
  line-height: 1.76;
}

.aso-home-best-clinic__text p:last-child {
  margin-bottom: 0;
}

.aso-home-best-clinic__quote {
  margin: 28px 0 0;
  padding: 23px 26px;
  color: var(--aso-blue-dark);
  text-align: center !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(31,111,152,.08), transparent 34%),
    linear-gradient(135deg, #f7fcff, #eaf7ff);
  border: 1px solid rgba(31,111,152,.16);
  border-radius: 13px;
  box-shadow: 0 16px 36px rgba(31,111,152,.08);
  font-size: 18px;
  line-height: 1.58;
  font-weight: 850;
}

.aso-home-best-clinic__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 25px;
}

.aso-home-best-clinic__card {
  position: relative;
  overflow: hidden;
  min-height: 124px;
  padding: 20px 18px 18px;
  background: #fff;
  border: 1px solid rgba(31,111,152,.13);
  border-radius: 11px;
  box-shadow: 0 14px 32px rgba(31,111,152,.08);
}

.aso-home-best-clinic__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--aso-blue-dark), var(--aso-blue));
}

.aso-home-best-clinic__card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--aso-coral), #f29b96);
}

.aso-home-best-clinic__card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--aso-blue-deep), var(--aso-blue));
}

.aso-home-best-clinic__card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--aso-blue-dark);
  font-size: 15.5px;
  line-height: 1.3;
  font-weight: 850;
}

.aso-home-best-clinic__card span {
  display: block;
  color: var(--aso-muted);
  font-size: 13px;
  line-height: 1.45;
}

.aso-home-best-clinic__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.aso-home-best-clinic__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--aso-blue-dark), var(--aso-blue));
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(21,90,125,.18);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease;
}

.aso-home-best-clinic__button:hover,
.aso-home-best-clinic__button:focus-visible {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 19px 38px rgba(21,90,125,.25);
}

.aso-home-best-clinic__button--secondary {
  color: var(--aso-blue-dark);
  background: #fff;
  border-color: rgba(31,111,152,.24);
  box-shadow: none;
}

.aso-home-best-clinic__button--secondary:hover,
.aso-home-best-clinic__button--secondary:focus-visible {
  color: var(--aso-blue-dark);
  background: var(--aso-sky-light);
}

.aso-home-best-clinic__button:focus-visible {
  outline: 3px solid rgba(31,111,152,.3);
  outline-offset: 4px;
}

@media (max-width: 991px) {
  .aso-home-best-clinic {
    padding: 62px 20px;
  }

  .aso-home-best-clinic__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .aso-home-best-clinic__media {
    max-width: 620px;
    margin: 0 auto;
  }

  .aso-home-best-clinic__content {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .aso-home-best-clinic {
    padding: 52px 17px;
  }

  .aso-home-best-clinic__content {
    padding: 28px 22px 26px;
  }

  .aso-home-best-clinic__content h2 {
    font-size: 29px;
  }

  .aso-home-best-clinic__text p {
    font-size: 16px;
    line-height: 1.68;
  }

  .aso-home-best-clinic__cards {
    grid-template-columns: 1fr;
  }

  .aso-home-best-clinic__quote {
    padding: 21px 20px;
    font-size: 16.5px;
  }

  .aso-home-best-clinic__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aso-home-best-clinic__button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .aso-home-best-clinic {
    padding: 46px 16px;
  }

  .aso-home-best-clinic__media::before {
    inset: 20px 0 -12px 22px;
    border-radius: 24px;
  }

  .aso-home-best-clinic__image-card {
    border-radius: 22px;
  }

  .aso-home-best-clinic__caption {
    margin-right: 12px;
    margin-left: 12px;
  }

  .aso-home-best-clinic__content h2 {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-best-clinic__button {
    transition: none;
  }

  .aso-home-best-clinic__button:hover,
  .aso-home-best-clinic__button:focus-visible {
    transform: none;
  }
}

/* ==========================================================
   HOME — BLOQUE VALORES: PACIENTE / SEGURIDAD / VISIÓN
   Rediseño visual respetando textos SEO originales.
   ========================================================== */

.aso-home-values {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-sky: #eaf7ff;
  --aso-sky-light: #f6fbfe;
  --aso-coral: #ef6b67;
  --aso-purple: #7b4bb3;
  --aso-text: #263846;
  --aso-muted: #667789;
  --aso-border: rgba(31,111,152,.15);
  --aso-shadow: 0 22px 52px rgba(31,111,152,.12);

  margin: 0;
  padding: 70px 22px 62px;
  background:
    radial-gradient(circle at 9% 12%, rgba(31,111,152,.08), transparent 28%),
    radial-gradient(circle at 91% 88%, rgba(239,107,103,.07), transparent 31%),
    linear-gradient(135deg, #ffffff 0%, #f8fcff 54%, #eaf7fc 100%);
}

.aso-home-values *,
.aso-home-values *::before,
.aso-home-values *::after {
  box-sizing: border-box;
}

.aso-home-values__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.aso-home-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.aso-home-values__card {
  --aso-card-accent: var(--aso-blue);

  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 34px 28px 31px;
  text-align: center;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--aso-border);
  border-radius: 16px;
  box-shadow: var(--aso-shadow);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.aso-home-values__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--aso-card-accent), var(--aso-blue));
}

.aso-home-values__card::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -72px;
  width: 170px;
  height: 170px;
  background: color-mix(in srgb, var(--aso-card-accent) 10%, transparent);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-values__card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--aso-card-accent) 35%, transparent);
  box-shadow: 0 30px 64px rgba(21,90,125,.16);
}

.aso-home-values__card--patient {
  --aso-card-accent: var(--aso-blue);
}

.aso-home-values__card--safety {
  --aso-card-accent: var(--aso-coral);
}

.aso-home-values__card--vision {
  --aso-card-accent: var(--aso-purple);
}

.aso-home-values__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--aso-card-accent);
  background:
    radial-gradient(circle at 50% 36%, #fff 0%, #fff 34%, transparent 35%),
    linear-gradient(135deg, #f7fcff, #eaf7ff);
  border: 1px solid color-mix(in srgb, var(--aso-card-accent) 20%, transparent);
  border-radius: 22px;
  box-shadow: 0 15px 34px rgba(31,111,152,.12);
}

.aso-home-values__icon svg {
  display: block;
  width: 42px;
  height: 42px;
}

.aso-home-values__title {
  position: relative;
  z-index: 1;
  margin: 0 0 15px;
  color: var(--aso-blue-dark);
  text-align: center !important;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -.015em;
}

.aso-home-values__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--aso-muted);
  text-align: center !important;
  font-size: 16px;
  line-height: 1.7;
}

.aso-home-values__cta {
  max-width: 820px;
  margin: 38px auto 0;
  padding: 28px 30px 25px;
  text-align: center;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(31,111,152,.14);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(31,111,152,.1);
}

.aso-home-values__button {
  display: inline-flex;
  min-width: 210px;
  min-height: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  color: #fff;
  text-align: center !important;
  background: linear-gradient(135deg, #1f6f98, #2991d6);
  border: 1px solid transparent;
  border-radius: 10px;
  box-shadow: 0 17px 36px rgba(31,111,152,.24);
  font-size: 16px;
  line-height: 1.18;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease;
}

.aso-home-values__button strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  text-align: center !important;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .01em;
}

.aso-home-values__button:hover,
.aso-home-values__button:focus-visible {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 23px 45px rgba(31,111,152,.32);
}

.aso-home-values__note {
  max-width: 1040px;
  margin: 25px auto 0;
  color: var(--aso-muted);
  text-align: center !important;
  font-size: 14px;
  line-height: 1.62;
}

.aso-home-values__button:focus-visible {
  outline: 3px solid rgba(31,111,152,.3);
  outline-offset: 4px;
}

@media (max-width: 991px) {
  .aso-home-values {
    padding: 60px 20px 54px;
  }

  .aso-home-values__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .aso-home-values__card {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .aso-home-values {
    padding: 50px 17px 46px;
  }

  .aso-home-values__card {
    padding: 29px 22px 27px;
    border-radius: 14px;
  }

  .aso-home-values__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    border-radius: 19px;
  }

  .aso-home-values__icon svg {
    width: 37px;
    height: 37px;
  }

  .aso-home-values__title {
    font-size: 20px;
  }

  .aso-home-values__text {
    font-size: 15.5px;
    line-height: 1.64;
  }

  .aso-home-values__cta {
    margin-top: 28px;
    padding: 24px 20px 22px;
  }

  .aso-home-values__button {
    width: 100%;
  }

  .aso-home-values__note {
    font-size: 13px;
    line-height: 1.58;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-values__card,
  .aso-home-values__button {
    transition: none;
  }

  .aso-home-values__card:hover,
  .aso-home-values__button:hover,
  .aso-home-values__button:focus-visible {
    transform: none;
  }
}

/* ==========================================================
   HOME — BANDA PREMIUM PRIMERA VISITA GRATUITA
   Rediseño visual respetando texto SEO original.
   ========================================================== */

.aso-home-freevisit {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-sky: #eaf7ff;
  --aso-coral: #ef6b67;
  --aso-text: #263846;

  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 34px 22px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255,255,255,.16), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(239,107,103,.18), transparent 31%),
    linear-gradient(135deg, var(--aso-blue-deep), var(--aso-blue-dark) 48%, var(--aso-blue));
}

.aso-home-freevisit *,
.aso-home-freevisit *::before,
.aso-home-freevisit *::after {
  box-sizing: border-box;
}

.aso-home-freevisit::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-freevisit::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 12%;
  width: 320px;
  height: 320px;
  background: rgba(234,247,255,.08);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-freevisit__wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.aso-home-freevisit__shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 25px 29px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(7,48,70,.24);
  backdrop-filter: blur(8px);
}

.aso-home-freevisit__icon {
  display: inline-flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  color: var(--aso-blue-dark);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 17px 38px rgba(7,48,70,.2);
}

.aso-home-freevisit__icon svg {
  display: block;
  width: 36px;
  height: 36px;
}

.aso-home-freevisit__content {
  min-width: 0;
}

.aso-home-freevisit__headline {
  margin: 0;
  color: #fff;
  text-align: left !important;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.24;
  font-weight: 850;
  letter-spacing: -.025em;
}

.aso-home-freevisit__headline strong {
  color: #fff;
  font-weight: 950;
  white-space: nowrap;
}

.aso-home-freevisit__note {
  max-width: 870px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.82);
  text-align: left !important;
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 500;
}

.aso-home-freevisit__action {
  display: flex;
  justify-content: flex-end;
}

.aso-home-freevisit__button {
  display: inline-flex;
  min-width: 208px;
  min-height: 62px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  color: var(--aso-blue-dark);
  text-align: center !important;
  background: #fff;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 11px;
  box-shadow: 0 18px 40px rgba(7,48,70,.25);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 760;
  text-decoration: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease;
}

.aso-home-freevisit__button span,
.aso-home-freevisit__button strong {
  display: block;
  color: var(--aso-blue-dark);
  text-align: center !important;
}

.aso-home-freevisit__button strong {
  margin-top: 3px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: .01em;
}

.aso-home-freevisit__button:hover,
.aso-home-freevisit__button:focus-visible {
  color: var(--aso-blue-dark);
  text-decoration: none;
  transform: translateY(-3px);
  background: var(--aso-sky);
  box-shadow: 0 25px 48px rgba(7,48,70,.32);
}

.aso-home-freevisit__button:focus-visible {
  outline: 3px solid rgba(255,255,255,.55);
  outline-offset: 4px;
}

@media (max-width: 991px) {
  .aso-home-freevisit {
    padding: 30px 18px;
  }

  .aso-home-freevisit__shell {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 20px;
  }

  .aso-home-freevisit__action {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .aso-home-freevisit {
    padding: 28px 16px;
  }

  .aso-home-freevisit__shell {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 25px 20px 24px;
    text-align: center;
    border-radius: 16px;
  }

  .aso-home-freevisit__headline,
  .aso-home-freevisit__note {
    text-align: center !important;
  }

  .aso-home-freevisit__headline {
    font-size: 23px;
  }

  .aso-home-freevisit__note {
    font-size: 13px;
  }

  .aso-home-freevisit__button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .aso-home-freevisit__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .aso-home-freevisit__icon svg {
    width: 31px;
    height: 31px;
  }

  .aso-home-freevisit__headline {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-freevisit__button {
    transition: none;
  }

  .aso-home-freevisit__button:hover,
  .aso-home-freevisit__button:focus-visible {
    transform: none;
  }
}

/* ==========================================================
   FIX — BANDA PRIMERA VISITA A ANCHO COMPLETO
   Evita barras blancas laterales dentro de WPBakery/Porto.
   ========================================================== */

body.home .aso-home-freevisit {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Evita scroll horizontal por el uso de 100vw en Windows */
body.home {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  body.home {
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  body.home .aso-home-freevisit {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/* ==========================================================
   HOME — BLOQUE PRINCIPALES TRATAMIENTOS
   Mantiene espíritu curvo arriba y abajo + ancho completo.
   ========================================================== */

.aso-home-treatments {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-sky: #dff2ff;
  --aso-sky-soft: #eaf7ff;
  --aso-card-bg: rgba(255,255,255,.96);
  --aso-border: rgba(31,111,152,.12);
  --aso-shadow: 0 18px 42px rgba(31,111,152,.10);
  --aso-text: #263846;

  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 92px 22px 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.26), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(31,111,152,.07), transparent 28%),
    linear-gradient(180deg, #cfeafb 0%, #d9effc 48%, #d2ebfb 100%);
}

.aso-home-treatments *,
.aso-home-treatments *::before,
.aso-home-treatments *::after {
  box-sizing: border-box;
}

/* Curvas superior e inferior */
.aso-home-treatments::before,
.aso-home-treatments::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 130%;
  transform: translateX(-50%);
  background: #fff;
  pointer-events: none;
  z-index: 0;
}

.aso-home-treatments::before {
  top: -88px;
  height: 120px;
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
}

.aso-home-treatments::after {
  bottom: -88px;
  height: 120px;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
}

.aso-home-treatments__wrap {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
}

.aso-home-treatments__head {
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.aso-home-treatments__head h2 {
  margin: 0;
  color: var(--aso-blue-dark);
  font-size: clamp(28px, 2.6vw, 54px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.025em;
}

.aso-home-treatments__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.aso-home-treatments__card {
  display: flex;
  min-height: 195px;
  align-items: center;
  justify-content: center;
  padding: 26px 18px 24px;
  text-align: center;
  text-decoration: none;
  background: var(--aso-card-bg);
  border: 1px solid var(--aso-border);
  border-radius: 14px;
  box-shadow: var(--aso-shadow);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background-color .22s ease;
}

.aso-home-treatments__card:hover,
.aso-home-treatments__card:focus-visible {
  transform: translateY(-5px);
  text-decoration: none;
  border-color: rgba(31,111,152,.22);
  box-shadow: 0 24px 50px rgba(31,111,152,.15);
  background: rgba(255,255,255,1);
}

.aso-home-treatments__card:focus-visible {
  outline: 3px solid rgba(31,111,152,.28);
  outline-offset: 4px;
}

.aso-home-treatments__inner {
  width: 100%;
}

.aso-home-treatments__icon {
  display: flex;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  align-items: center;
  justify-content: center;
}

.aso-home-treatments__icon img {
  display: block;
  max-width: 64px;
  max-height: 64px;
  width: auto;
  height: auto;
}

.aso-home-treatments__title {
  margin: 0;
  color: var(--aso-blue-dark);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

/* Tablet grande */
@media (max-width: 1199px) {
  .aso-home-treatments__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 991px) {
  .aso-home-treatments {
    padding: 82px 20px 82px;
  }

  .aso-home-treatments__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Móvil */
@media (max-width: 767px) {
  .aso-home-treatments {
    padding: 70px 16px 70px;
  }

  .aso-home-treatments::before,
  .aso-home-treatments::after {
    width: 160%;
  }

  .aso-home-treatments__head {
    margin-bottom: 30px;
  }

  .aso-home-treatments__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aso-home-treatments__card {
    min-height: 150px;
    padding: 22px 16px 20px;
  }

  .aso-home-treatments__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }

  .aso-home-treatments__icon img {
    max-width: 56px;
    max-height: 56px;
  }

  .aso-home-treatments__title {
    font-size: 17px;
  }
}

/* Evita scroll horizontal raro por 100vw */
body.home {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  body.home {
    overflow-x: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-treatments__card {
    transition: none;
  }

  .aso-home-treatments__card:hover,
  .aso-home-treatments__card:focus-visible {
    transform: none;
  }
}


/* ==========================================================
   HOME — TRATAMIENTOS: ANIMACIÓN Y HOVER PREMIUM
   ========================================================== */

.aso-home-treatments__card {
  position: relative;
  overflow: hidden;
  transform: translateY(0) scale(1);
  will-change: transform;
  transition:
    transform .26s ease,
    box-shadow .26s ease,
    border-color .26s ease,
    background-color .26s ease;
}

.aso-home-treatments__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--aso-blue-dark), var(--aso-blue));
  opacity: 0;
  transition: opacity .26s ease;
}

.aso-home-treatments__card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -52px;
  width: 132px;
  height: 132px;
  background: rgba(31,111,152,.07);
  border-radius: 999px;
  opacity: 0;
  transition: opacity .26s ease, transform .26s ease;
  pointer-events: none;
}

.aso-home-treatments__card:hover,
.aso-home-treatments__card:focus-visible {
  transform: translateY(-7px) scale(1.018);
  border-color: rgba(31,111,152,.24);
  background: #fff;
  box-shadow: 0 28px 58px rgba(31,111,152,.18);
}

.aso-home-treatments__card:hover::before,
.aso-home-treatments__card:focus-visible::before,
.aso-home-treatments__card:hover::after,
.aso-home-treatments__card:focus-visible::after {
  opacity: 1;
}

.aso-home-treatments__card:hover::after,
.aso-home-treatments__card:focus-visible::after {
  transform: translate(-8px, -8px);
}

.aso-home-treatments__icon img {
  transition: transform .26s ease, filter .26s ease;
}

.aso-home-treatments__card:hover .aso-home-treatments__icon img,
.aso-home-treatments__card:focus-visible .aso-home-treatments__icon img {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 12px rgba(31,111,152,.14));
}

.aso-home-treatments__title {
  transition: color .26s ease;
}

.aso-home-treatments__card:hover .aso-home-treatments__title,
.aso-home-treatments__card:focus-visible .aso-home-treatments__title {
  color: var(--aso-blue-deep);
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-treatments__card,
  .aso-home-treatments__card::before,
  .aso-home-treatments__card::after,
  .aso-home-treatments__icon img,
  .aso-home-treatments__title {
    transition: none;
  }

  .aso-home-treatments__card:hover,
  .aso-home-treatments__card:focus-visible,
  .aso-home-treatments__card:hover .aso-home-treatments__icon img,
  .aso-home-treatments__card:focus-visible .aso-home-treatments__icon img {
    transform: none;
  }
}

/* ==========================================================
   FIX — CURVAS LATERALES BLOQUE TRATAMIENTOS
   Hace que las curvas nazcan fuera de pantalla para que no
   se vea el corte recto en los laterales.
   ========================================================== */

.aso-home-treatments::before,
.aso-home-treatments::after {
  left: 50% !important;
  width: 240vw !important;
  max-width: none !important;
  height: 180px !important;
  transform: translateX(-50%) !important;
  background: #fff !important;
  border-radius: 50% !important;
}

.aso-home-treatments::before {
  top: -138px !important;
}

.aso-home-treatments::after {
  bottom: -138px !important;
}

@media (max-width: 767px) {
  .aso-home-treatments::before,
  .aso-home-treatments::after {
    width: 320vw !important;
    height: 150px !important;
  }

  .aso-home-treatments::before {
    top: -116px !important;
  }

  .aso-home-treatments::after {
    bottom: -116px !important;
  }
}

/* ==========================================================
   HOME — BLOQUE DOCTOR ASO / AUTORIDAD MÉDICA
   Rediseño premium respetando texto SEO original.
   ========================================================== */

.aso-home-doctor {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-sky: #eaf7ff;
  --aso-sky-light: #f7fcff;
  --aso-coral: #ef6b67;
  --aso-purple: #7b4bb3;
  --aso-text: #263846;
  --aso-muted: #667789;
  --aso-border: rgba(31,111,152,.15);
  --aso-shadow: 0 24px 58px rgba(31,111,152,.13);

  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 86px 22px;
  background:
    radial-gradient(circle at 9% 16%, rgba(31,111,152,.08), transparent 30%),
    radial-gradient(circle at 93% 84%, rgba(239,107,103,.07), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fcff 52%, #edf8ff 100%);
}

.aso-home-doctor *,
.aso-home-doctor *::before,
.aso-home-doctor *::after {
  box-sizing: border-box;
}

.aso-home-doctor::before {
  content: "";
  position: absolute;
  top: 74px;
  right: -96px;
  width: 260px;
  height: 260px;
  background: rgba(31,111,152,.07);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-doctor::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  background: rgba(234,247,255,.9);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-doctor__wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.aso-home-doctor__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, .96fr);
  gap: 58px;
  align-items: center;
}

.aso-home-doctor__content {
  min-width: 0;
}

.aso-home-doctor__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--aso-coral);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.aso-home-doctor__kicker::before,
.aso-home-doctor__kicker::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(239,107,103,.58);
}

.aso-home-doctor h2 {
  margin: 0 0 22px;
  color: var(--aso-blue-dark);
  font-family: Alice, serif;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.035em;
}

.aso-home-doctor__text {
  max-width: 680px;
}

.aso-home-doctor__text p {
  margin: 0 0 21px;
  color: var(--aso-text);
  text-align: left !important;
  font-size: 17px;
  line-height: 1.72;
}

.aso-home-doctor__text p:last-child {
  margin-bottom: 0;
}

.aso-home-doctor__text a {
  color: var(--aso-blue-dark);
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 -1px 0 rgba(31,111,152,.28);
  transition:
    color .22s ease,
    box-shadow .22s ease;
}

.aso-home-doctor__text a:hover,
.aso-home-doctor__text a:focus-visible {
  color: var(--aso-blue-deep);
  box-shadow: inset 0 -2px 0 rgba(31,111,152,.42);
  text-decoration: none;
}

.aso-home-doctor__teaching {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 21px 23px;
  background:
    radial-gradient(circle at 96% 10%, rgba(123,75,179,.08), transparent 36%),
    linear-gradient(135deg, #ffffff, #f7fcff);
  border: 1px solid rgba(31,111,152,.15);
  border-left: 4px solid var(--aso-purple);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(31,111,152,.09);
}

.aso-home-doctor__teaching-mark {
  display: inline-flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--aso-purple), #5f348f);
  border-radius: 18px;
  box-shadow: 0 15px 32px rgba(95,52,143,.18);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.aso-home-doctor__teaching strong {
  display: block;
  margin-bottom: 6px;
  color: var(--aso-blue-dark);
  font-size: 17px;
  line-height: 1.28;
  font-weight: 850;
}

.aso-home-doctor__teaching span {
  display: block;
  color: var(--aso-text);
  text-align: left !important;
  font-size: 15.5px;
  line-height: 1.58;
}

.aso-home-doctor__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 24px;
}

.aso-home-doctor__badge {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 18px 17px 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--aso-border);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(31,111,152,.08);
}

.aso-home-doctor__badge::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--aso-blue-dark), var(--aso-blue));
}

.aso-home-doctor__badge:nth-child(2)::before {
  background: linear-gradient(90deg, var(--aso-coral), #f29b96);
}

.aso-home-doctor__badge:nth-child(3)::before {
  background: linear-gradient(90deg, var(--aso-purple), #a378ca);
}

.aso-home-doctor__badge strong {
  display: block;
  margin-bottom: 7px;
  color: var(--aso-blue-dark);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
}

.aso-home-doctor__badge span {
  display: block;
  color: var(--aso-muted);
  text-align: left !important;
  font-size: 13px;
  line-height: 1.48;
}

.aso-home-doctor__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.aso-home-doctor__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--aso-blue-dark), var(--aso-blue));
  border: 1px solid transparent;
  border-radius: 9px;
  box-shadow: 0 15px 32px rgba(21,90,125,.2);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease;
}

.aso-home-doctor__button:hover,
.aso-home-doctor__button:focus-visible {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 21px 42px rgba(21,90,125,.27);
}

.aso-home-doctor__button--secondary {
  color: var(--aso-blue-dark);
  background: #fff;
  border-color: rgba(31,111,152,.24);
  box-shadow: none;
}

.aso-home-doctor__button--secondary:hover,
.aso-home-doctor__button--secondary:focus-visible {
  color: var(--aso-blue-dark);
  background: var(--aso-sky-light);
}

.aso-home-doctor__button:focus-visible {
  outline: 3px solid rgba(31,111,152,.3);
  outline-offset: 4px;
}

.aso-home-doctor__media {
  position: relative;
  margin: 0;
}

.aso-home-doctor__media::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 36px;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.72), transparent 34%),
    linear-gradient(145deg, rgba(31,111,152,.12), rgba(234,247,255,.96));
  border-radius: 34px;
}

.aso-home-doctor__image-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(31,111,152,.13);
  border-radius: 30px;
  box-shadow: 0 28px 64px rgba(21,90,125,.18);
}

.aso-home-doctor__image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
}

.aso-home-doctor__caption {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin: -26px auto 0;
  padding: 14px 18px;
  color: var(--aso-blue-dark);
  text-align: center !important;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--aso-border);
  border-radius: 15px;
  box-shadow: 0 15px 32px rgba(21,90,125,.14);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .aso-home-doctor__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .aso-home-doctor__media {
    max-width: 620px;
    margin: 0 auto;
  }

  .aso-home-doctor__text {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .aso-home-doctor {
    padding: 62px 17px;
  }

  .aso-home-doctor h2 {
    font-size: 42px;
  }

  .aso-home-doctor__text p {
    font-size: 16px;
    line-height: 1.66;
  }

  .aso-home-doctor__badges {
    grid-template-columns: 1fr;
  }

  .aso-home-doctor__teaching {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .aso-home-doctor__teaching-mark {
    margin: 0 auto;
  }

  .aso-home-doctor__teaching span {
    text-align: center !important;
  }

  .aso-home-doctor__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aso-home-doctor__button {
    width: 100%;
  }

  .aso-home-doctor__media::before {
    inset: 20px 0 -12px 22px;
    border-radius: 24px;
  }

  .aso-home-doctor__image-card {
    border-radius: 24px;
  }

  .aso-home-doctor__caption {
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-doctor__button {
    transition: none;
  }

  .aso-home-doctor__button:hover,
  .aso-home-doctor__button:focus-visible {
    transform: none;
  }
}

/* ==========================================================
   HOME — BLOQUE VISITA ONLINE + MODELO 3D IA
   ========================================================== */

.aso-home-online {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-navy: #071d2d;
  --aso-navy-soft: #0b2b40;
  --aso-sky: #eaf7ff;
  --aso-sky-light: #f7fcff;
  --aso-coral: #ef6b67;
  --aso-purple: #7b4bb3;
  --aso-text: #263846;
  --aso-muted: #667789;
  --aso-border: rgba(31,111,152,.15);
  --aso-shadow: 0 26px 64px rgba(7,29,45,.18);

  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 82px 22px;
  background:
    radial-gradient(circle at 7% 14%, rgba(31,111,152,.10), transparent 32%),
    radial-gradient(circle at 92% 84%, rgba(239,107,103,.08), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fcff 48%, #eaf7ff 100%);
}

.aso-home-online *,
.aso-home-online *::before,
.aso-home-online *::after {
  box-sizing: border-box;
}

.aso-home-online::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: rgba(31,111,152,.08);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-online::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 410px;
  height: 410px;
  background: rgba(234,247,255,.95);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-online__wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.aso-home-online__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: 46px;
  align-items: center;
  padding: 54px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 0%, rgba(45,156,219,.26), transparent 34%),
    radial-gradient(circle at 91% 14%, rgba(123,75,179,.18), transparent 30%),
    linear-gradient(135deg, #071d2d 0%, #0b2b40 52%, #050b10 100%);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  box-shadow: var(--aso-shadow);
}

.aso-home-online__panel::before {
  content: "";
  position: absolute;
  right: -86px;
  top: -88px;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-online__panel::after {
  content: "";
  position: absolute;
  left: 42%;
  bottom: -120px;
  width: 330px;
  height: 330px;
  background: rgba(45,156,219,.10);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-online__content,
.aso-home-online__visual {
  position: relative;
  z-index: 1;
}

.aso-home-online__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 8px 14px;
  color: #dff4ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.aso-home-online__kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #2d9cdb;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(45,156,219,.18);
}

.aso-home-online h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(31px, 3.35vw, 47px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -.04em;
}

.aso-home-online__lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.84);
  text-align: left !important;
  font-size: 18px;
  line-height: 1.68;
}

.aso-home-online__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.aso-home-online__step {
  position: relative;
  min-height: 142px;
  padding: 19px 17px 17px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  transition:
    transform .24s ease,
    background-color .24s ease,
    border-color .24s ease;
}

.aso-home-online__step:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}

.aso-home-online__step-number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  color: var(--aso-navy);
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.aso-home-online__step strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 15px;
  line-height: 1.28;
  font-weight: 850;
}

.aso-home-online__step span {
  display: block;
  color: rgba(255,255,255,.76);
  text-align: left !important;
  font-size: 13.5px;
  line-height: 1.48;
}

.aso-home-online__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.aso-home-online__chips li {
  position: relative;
  padding: 9px 13px 9px 33px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 750;
}

.aso-home-online__chips li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 8px;
  color: #8bd6ff;
  font-weight: 900;
}

.aso-home-online__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.aso-home-online__button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  color: var(--aso-navy);
  background: #fff;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease;
}

.aso-home-online__button:hover,
.aso-home-online__button:focus-visible {
  color: var(--aso-navy);
  text-decoration: none;
  transform: translateY(-3px);
  background: var(--aso-sky);
  box-shadow: 0 24px 48px rgba(0,0,0,.29);
}

.aso-home-online__button--secondary {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  box-shadow: none;
}

.aso-home-online__button--secondary:hover,
.aso-home-online__button--secondary:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.13);
}

.aso-home-online__button:focus-visible {
  outline: 3px solid rgba(255,255,255,.45);
  outline-offset: 4px;
}

.aso-home-online__visual {
  min-width: 0;
}

.aso-home-online__device {
  position: relative;
  padding: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}

.aso-home-online__screen {
  position: relative;
  overflow: hidden;
  min-height: 355px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(135deg, #f7fcff 0%, #eaf7ff 58%, #d5ecfa 100%);
  border-radius: 18px;
}

.aso-home-online__screen img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.aso-home-online__placeholder {
  display: grid;
  min-height: 355px;
  place-items: center;
  padding: 28px;
  color: var(--aso-blue-dark);
  text-align: center;
}

.aso-home-online__placeholder-inner {
  width: 100%;
  max-width: 330px;
}

.aso-home-online__placeholder-icon {
  display: inline-flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--aso-blue-dark), var(--aso-blue));
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(31,111,152,.22);
}

.aso-home-online__placeholder-icon svg {
  display: block;
  width: 38px;
  height: 38px;
}

.aso-home-online__placeholder strong {
  display: block;
  margin-bottom: 9px;
  color: var(--aso-blue-dark);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 900;
}

.aso-home-online__placeholder span {
  display: block;
  color: var(--aso-text);
  text-align: center !important;
  font-size: 15px;
  line-height: 1.55;
}

.aso-home-online__floating-card {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 24px;
  width: min(275px, 64%);
  padding: 17px 18px;
  color: var(--aso-text);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(31,111,152,.13);
  border-left: 4px solid var(--aso-coral);
  border-radius: 16px;
  box-shadow: 0 20px 46px rgba(0,0,0,.18);
}

.aso-home-online__floating-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--aso-blue-dark);
  font-size: 14.5px;
  line-height: 1.25;
  font-weight: 900;
}

.aso-home-online__floating-card span {
  display: block;
  color: var(--aso-muted);
  text-align: left !important;
  font-size: 12.8px;
  line-height: 1.45;
}

.aso-home-online__mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.aso-home-online__mini-card {
  padding: 16px 15px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
}

.aso-home-online__mini-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
}

.aso-home-online__mini-card span {
  display: block;
  color: rgba(255,255,255,.74);
  text-align: left !important;
  font-size: 12.8px;
  line-height: 1.46;
}

.aso-home-online__notice {
  margin: 24px 0 0;
  padding: 18px 20px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  font-size: 13.2px;
  line-height: 1.58;
}

.aso-home-online__notice strong {
  color: #fff;
}

@media (max-width: 1100px) {
  .aso-home-online__panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aso-home-online__visual {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .aso-home-online {
    padding: 62px 17px;
  }

  .aso-home-online__panel {
    padding: 34px 22px;
    border-radius: 22px;
  }

  .aso-home-online h2 {
    font-size: 31px;
  }

  .aso-home-online__lead {
    font-size: 16px;
    line-height: 1.62;
  }

  .aso-home-online__steps {
    grid-template-columns: 1fr;
  }

  .aso-home-online__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aso-home-online__button {
    width: 100%;
  }

  .aso-home-online__device {
    padding: 12px;
    border-radius: 20px;
  }

  .aso-home-online__screen,
  .aso-home-online__placeholder {
    min-height: 310px;
  }

  .aso-home-online__floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -18px 14px 0;
  }

  .aso-home-online__mini {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .aso-home-online__panel {
    padding: 30px 18px;
  }

  .aso-home-online__chips {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aso-home-online__placeholder strong {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-online__button,
  .aso-home-online__step {
    transition: none;
  }

  .aso-home-online__button:hover,
  .aso-home-online__button:focus-visible,
  .aso-home-online__step:hover {
    transform: none;
  }
}

/* ==========================================================
   HOME — VISITA ONLINE: PREVIEW SIMULADOR 3D ANTES/DESPUÉS
   ========================================================== */

.aso-home-online__screen--simulator {
  overflow: hidden;
  min-height: auto;
  background: #050b0f;
}

.aso-home-online__simulator {
  position: relative;
  margin: 0;
}

.aso-home-online__simulator-media {
  position: relative;
  overflow: hidden;
  background: #050b0f;
}

.aso-home-online__simulator-media img {
  display: block;
  width: 100%;
  aspect-ratio: 20 / 9;
  object-fit: cover;
  object-position: center center;
  transition:
    transform .28s ease,
    filter .28s ease;
}

.aso-home-online__simulator:hover .aso-home-online__simulator-media img {
  transform: scale(1.012);
  filter: brightness(1.04);
}

.aso-home-online__simulator-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aso-home-online__simulator-label {
  position: absolute;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(7,29,45,.78);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .01em;
}

.aso-home-online__simulator-label--before {
  left: 14px;
}

.aso-home-online__simulator-label--after {
  left: calc(50% + 14px);
}

.aso-home-online__simulator-caption {
  margin: 0;
  padding: 15px 17px 17px;
  color: var(--aso-text);
  background: rgba(255,255,255,.97);
  border-top: 1px solid rgba(31,111,152,.12);
  font-size: 13.5px;
  line-height: 1.52;
}

.aso-home-online__simulator-caption strong {
  display: block;
  margin-bottom: 5px;
  color: var(--aso-blue-dark);
  font-size: 14.5px;
  line-height: 1.25;
  font-weight: 900;
}

.aso-home-online__simulator-caption span {
  display: block;
  color: var(--aso-muted);
  text-align: left !important;
}

.aso-home-online__simulator-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 7px 10px;
  color: var(--aso-blue-dark);
  background: #eaf7ff;
  border-radius: 999px;
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 850;
}

.aso-home-online__simulator-note::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--aso-coral);
  border-radius: 999px;
}

@media (max-width: 767px) {
  .aso-home-online__simulator-label {
    top: 10px;
    min-height: 28px;
    padding: 6px 9px;
    font-size: 10.5px;
  }

  .aso-home-online__simulator-label--before {
    left: 10px;
  }

  .aso-home-online__simulator-label--after {
    left: calc(50% + 10px);
  }

  .aso-home-online__simulator-caption {
    font-size: 13px;
  }

  .aso-home-online__simulator-note {
    align-items: flex-start;
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-online__simulator-media img {
    transition: none;
  }

  .aso-home-online__simulator:hover .aso-home-online__simulator-media img {
    transform: none;
    filter: none;
  }
}


/* ==========================================================
   HOME — VISITA ONLINE: VIDEOLLAMADA + SIMULADOR 3D
   Permite que convivan la imagen de videollamada y la
   simulación antes/después dentro del mismo bloque.
   ========================================================== */

.aso-home-online__visual-stack {
  display: grid;
  gap: 16px;
}

.aso-home-online__consult-card,
.aso-home-online__simulator-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}

.aso-home-online__consult-media,
.aso-home-online__simulator-media {
  position: relative;
  overflow: hidden;
  background: #050b0f;
  border-radius: 18px;
}

.aso-home-online__consult-media img,
.aso-home-online__simulator-media img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  transition:
    transform .28s ease,
    filter .28s ease;
}

.aso-home-online__consult-media img {
  aspect-ratio: 4 / 3;
}

.aso-home-online__simulator-media img {
  aspect-ratio: 20 / 9;
}

.aso-home-online__consult-card:hover img,
.aso-home-online__simulator-card:hover img {
  transform: scale(1.012);
  filter: brightness(1.04);
}

.aso-home-online__consult-placeholder {
  display: none;
  min-height: 300px;
  place-items: center;
  padding: 28px;
  color: var(--aso-blue-dark);
  text-align: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(135deg, #f7fcff 0%, #eaf7ff 58%, #d5ecfa 100%);
}

.aso-home-online__consult-media--missing .aso-home-online__consult-placeholder {
  display: grid;
}

.aso-home-online__consult-media--missing img {
  display: none;
}

.aso-home-online__consult-placeholder-inner {
  width: 100%;
  max-width: 330px;
}

.aso-home-online__consult-placeholder-icon {
  display: inline-flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--aso-blue-dark), var(--aso-blue));
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(31,111,152,.22);
}

.aso-home-online__consult-placeholder-icon svg {
  display: block;
  width: 38px;
  height: 38px;
}

.aso-home-online__consult-placeholder strong {
  display: block;
  margin-bottom: 9px;
  color: var(--aso-blue-dark);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 900;
}

.aso-home-online__consult-placeholder span {
  display: block;
  color: var(--aso-text);
  text-align: center !important;
  font-size: 15px;
  line-height: 1.55;
}

.aso-home-online__consult-badges,
.aso-home-online__simulator-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aso-home-online__consult-badge,
.aso-home-online__simulator-label {
  position: absolute;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(7,29,45,.78);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .01em;
}

.aso-home-online__consult-badge--left,
.aso-home-online__simulator-label--before {
  left: 14px;
}

.aso-home-online__consult-badge--right {
  right: 14px;
}

.aso-home-online__simulator-label--after {
  left: calc(50% + 14px);
}

.aso-home-online__consult-caption,
.aso-home-online__simulator-caption {
  margin: 0;
  padding: 15px 17px 17px;
  color: var(--aso-text);
  background: rgba(255,255,255,.97);
  border-top: 1px solid rgba(31,111,152,.12);
  border-radius: 0 0 18px 18px;
  font-size: 13.5px;
  line-height: 1.52;
}

.aso-home-online__consult-caption strong,
.aso-home-online__simulator-caption strong {
  display: block;
  margin-bottom: 5px;
  color: var(--aso-blue-dark);
  font-size: 14.5px;
  line-height: 1.25;
  font-weight: 900;
}

.aso-home-online__consult-caption span,
.aso-home-online__simulator-caption span {
  display: block;
  color: var(--aso-muted);
  text-align: left !important;
}

.aso-home-online__simulator-note {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 7px 10px;
  color: var(--aso-blue-dark) !important;
  background: #eaf7ff;
  border-radius: 999px;
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 850;
}

.aso-home-online__simulator-note::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--aso-coral);
  border-radius: 999px;
}

.aso-home-online__mini--online {
  margin-top: 0;
}

@media (max-width: 767px) {
  .aso-home-online__consult-card,
  .aso-home-online__simulator-card {
    padding: 11px;
    border-radius: 20px;
  }

  .aso-home-online__consult-media,
  .aso-home-online__simulator-media {
    border-radius: 16px;
  }

  .aso-home-online__consult-placeholder {
    min-height: 280px;
  }

  .aso-home-online__consult-badge,
  .aso-home-online__simulator-label {
    top: 10px;
    min-height: 28px;
    padding: 6px 9px;
    font-size: 10.5px;
  }

  .aso-home-online__consult-badge--left,
  .aso-home-online__simulator-label--before {
    left: 10px;
  }

  .aso-home-online__consult-badge--right {
    right: 10px;
  }

  .aso-home-online__simulator-label--after {
    left: calc(50% + 10px);
  }

  .aso-home-online__consult-caption,
  .aso-home-online__simulator-caption {
    font-size: 13px;
  }

  .aso-home-online__simulator-note {
    align-items: flex-start;
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-online__consult-media img,
  .aso-home-online__simulator-media img {
    transition: none;
  }

  .aso-home-online__consult-card:hover img,
  .aso-home-online__simulator-card:hover img {
    transform: none;
    filter: none;
  }
}

/* ==========================================================
   HOME — BLOQUE RESOLVEMOS TUS DUDAS
   Versión compacta premium + teléfono + WhatsApp + formulario.
   Sustituye por completo el CSS anterior de este bloque.
   ========================================================== */

.aso-home-doubts {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-blue-black: #071d2d;
  --aso-sky: #eaf7ff;
  --aso-sky-soft: #f7fcff;
  --aso-coral: #ef6b67;
  --aso-whatsapp: #25d366;
  --aso-text: #263846;
  --aso-muted: #667789;

  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 46px 22px;
  background:
    radial-gradient(circle at 8% 15%, rgba(31,111,152,.07), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(239,107,103,.055), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fcff 52%, #edf8ff 100%);
}

.aso-home-doubts *,
.aso-home-doubts *::before,
.aso-home-doubts *::after {
  box-sizing: border-box;
}

.aso-home-doubts::before {
  content: "";
  position: absolute;
  top: -115px;
  right: -135px;
  width: 310px;
  height: 310px;
  background: rgba(31,111,152,.075);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-doubts::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -155px;
  width: 380px;
  height: 380px;
  background: rgba(234,247,255,.9);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-doubts__wrap {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}

.aso-home-doubts__panel {
  position: relative;
  overflow: hidden;
  padding: 34px 40px 30px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,.16), transparent 33%),
    radial-gradient(circle at 92% 18%, rgba(239,107,103,.13), transparent 31%),
    linear-gradient(135deg, #0f4866 0%, #1f6f98 48%, #2991d6 100%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 26px;
  box-shadow: 0 24px 58px rgba(21,90,125,.2);
}

.aso-home-doubts__panel::before {
  content: "";
  position: absolute;
  top: -95px;
  right: -85px;
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,.10);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-doubts__panel::after {
  content: "";
  position: absolute;
  left: 7%;
  bottom: -145px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.075);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-doubts__header,
.aso-home-doubts__grid,
.aso-home-doubts__divider,
.aso-home-doubts__cta {
  position: relative;
  z-index: 1;
}

.aso-home-doubts__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto 22px;
}

.aso-home-doubts__mark {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: var(--aso-blue-dark);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 17px;
  box-shadow: 0 14px 34px rgba(7,29,45,.18);
}

.aso-home-doubts__mark svg {
  display: block;
  width: 30px;
  height: 30px;
}

.aso-home-doubts h2 {
  margin: 0;
  color: #fff;
  text-align: left !important;
  font-family: Alice, serif;
  font-size: clamp(30px, 2.5vw, 40px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.025em;
}

.aso-home-doubts__grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 14px;
  align-items: stretch;
}

.aso-home-doubts__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  min-height: 112px;
  padding: 19px 21px;
  background: rgba(255,255,255,.105);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 16px;
  box-shadow: 0 15px 34px rgba(7,29,45,.11);
  transition:
    transform .24s ease,
    background-color .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

.aso-home-doubts__item:hover,
.aso-home-doubts__item:focus-within {
  transform: translateY(-3px);
  background: rgba(255,255,255,.145);
  border-color: rgba(255,255,255,.27);
  box-shadow: 0 22px 46px rgba(7,29,45,.17);
}

.aso-home-doubts__item-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 15px;
}

.aso-home-doubts__item-icon svg {
  display: block;
  width: 27px;
  height: 27px;
}

.aso-home-doubts__item p {
  margin: 0;
  color: rgba(255,255,255,.94);
  text-align: left !important;
  font-size: 15.5px;
  line-height: 1.52;
  font-weight: 780;
}

.aso-home-doubts__item--long p {
  font-size: 14.6px;
  line-height: 1.58;
  font-weight: 650;
}

.aso-home-doubts__divider {
  width: min(500px, 72%);
  height: 1px;
  margin: 23px auto;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.54), transparent);
}

.aso-home-doubts__cta {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 17px;
}

.aso-home-doubts__cta-text {
  margin: 0;
  color: #fff;
  text-align: left !important;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}

.aso-home-doubts__contact-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.aso-home-doubts__contact {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 15px;
  color: #fff;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1.15;
  font-weight: 900;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease;
}

.aso-home-doubts__contact svg {
  display: block;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
}

.aso-home-doubts__contact--phone {
  background: rgba(255,255,255,.10);
}

.aso-home-doubts__contact--whatsapp {
  background: rgba(37,211,102,.95);
  border-color: rgba(37,211,102,.45);
  box-shadow: 0 14px 30px rgba(37,211,102,.18);
}

.aso-home-doubts__contact--help {
  color: var(--aso-blue-dark);
  background: #fff;
  border-color: rgba(255,255,255,.42);
  box-shadow: 0 15px 34px rgba(7,29,45,.18);
}

.aso-home-doubts__contact--help svg {
  color: var(--aso-blue-dark);
}

.aso-home-doubts__contact:hover,
.aso-home-doubts__contact:focus-visible {
  color: #fff;
  text-decoration: none !important;
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 20px 42px rgba(7,29,45,.22);
}

.aso-home-doubts__contact--phone:hover,
.aso-home-doubts__contact--phone:focus-visible {
  background: rgba(255,255,255,.16);
}

.aso-home-doubts__contact--whatsapp:hover,
.aso-home-doubts__contact--whatsapp:focus-visible {
  background: #20bd5a;
  box-shadow: 0 22px 44px rgba(37,211,102,.25);
}

.aso-home-doubts__contact--help:hover,
.aso-home-doubts__contact--help:focus-visible {
  color: var(--aso-blue-dark);
  background: var(--aso-sky);
  box-shadow: 0 22px 44px rgba(7,29,45,.25);
}

.aso-home-doubts__contact:focus-visible {
  outline: 3px solid rgba(255,255,255,.48);
  outline-offset: 4px;
}

@media (max-width: 991px) {
  .aso-home-doubts {
    padding: 42px 20px;
  }

  .aso-home-doubts__panel {
    padding: 32px 28px 28px;
  }

  .aso-home-doubts__header {
    max-width: none;
  }

  .aso-home-doubts__grid {
    grid-template-columns: 1fr;
  }

  .aso-home-doubts__cta {
    grid-template-columns: 1fr;
  }

  .aso-home-doubts__cta-text {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .aso-home-doubts {
    padding: 38px 16px;
  }

  .aso-home-doubts__panel {
    padding: 28px 18px 22px;
    border-radius: 22px;
  }

  .aso-home-doubts__header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    margin-bottom: 18px;
    text-align: center;
  }

  .aso-home-doubts__mark {
    width: 56px;
    height: 56px;
  }

  .aso-home-doubts h2 {
    text-align: center !important;
    font-size: 31px;
  }

  .aso-home-doubts__item {
    grid-template-columns: 1fr;
    gap: 13px;
    justify-items: center;
    min-height: 0;
    padding: 20px 17px;
    text-align: center;
  }

  .aso-home-doubts__item p,
  .aso-home-doubts__item--long p {
    text-align: center !important;
    font-size: 14.7px;
    line-height: 1.55;
  }

  .aso-home-doubts__divider {
    width: 100%;
    margin: 20px auto;
  }

  .aso-home-doubts__cta {
    padding: 17px 15px;
  }

  .aso-home-doubts__contact-group {
    grid-template-columns: 1fr;
  }

  .aso-home-doubts__contact {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-doubts__item,
  .aso-home-doubts__contact {
    transition: none;
  }

  .aso-home-doubts__item:hover,
  .aso-home-doubts__item:focus-within,
  .aso-home-doubts__contact:hover,
  .aso-home-doubts__contact:focus-visible {
    transform: none;
  }
}

/* ==========================================================
   HOME — BLOQUE DR. JORGE ASO / PRESTIGIO Y EQUIPO
   Rediseño premium con curvas, manteniendo el texto original.
   ========================================================== */

.aso-home-prestige {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-sky: #dff2ff;
  --aso-sky-soft: #eaf7ff;
  --aso-card-bg: rgba(255,255,255,.96);
  --aso-border: rgba(31,111,152,.14);
  --aso-shadow: 0 22px 52px rgba(31,111,152,.12);
  --aso-coral: #ef6b67;
  --aso-purple: #7b4bb3;
  --aso-text: #263846;
  --aso-muted: #667789;

  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 92px 22px 90px;
  background:
    radial-gradient(circle at 10% 18%, rgba(255,255,255,.28), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(31,111,152,.08), transparent 30%),
    linear-gradient(180deg, #cfeafb 0%, #dff2ff 48%, #d3edfb 100%);
}

.aso-home-prestige *,
.aso-home-prestige *::before,
.aso-home-prestige *::after {
  box-sizing: border-box;
}

/* Curvas superior e inferior */
.aso-home-prestige::before,
.aso-home-prestige::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 240vw;
  max-width: none;
  height: 180px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.aso-home-prestige::before {
  top: -138px;
}

.aso-home-prestige::after {
  bottom: -138px;
}

.aso-home-prestige__wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.aso-home-prestige__grid {
  display: grid;
  grid-template-columns: minmax(310px, .88fr) minmax(0, 1.12fr);
  gap: 36px;
  align-items: center;
}

.aso-home-prestige__intro {
  position: relative;
  overflow: hidden;
  padding: 36px 36px 34px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--aso-border);
  border-radius: 24px;
  box-shadow: var(--aso-shadow);
}

.aso-home-prestige__intro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--aso-blue-dark), var(--aso-blue));
}

.aso-home-prestige__intro::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  background: rgba(31,111,152,.07);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-prestige__intro-inner {
  position: relative;
  z-index: 1;
}

.aso-home-prestige h2 {
  margin: 0 0 14px;
  color: var(--aso-blue-dark);
  text-align: left !important;
  font-family: Alice, serif;
  font-size: clamp(38px, 3.6vw, 54px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.035em;
}

.aso-home-prestige__subtitle {
  margin: 0 0 18px;
  color: var(--aso-blue-dark);
  text-align: left !important;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 850;
}

.aso-home-prestige__intro p {
  margin: 0;
  color: var(--aso-text);
  text-align: left !important;
  font-size: 16.5px;
  line-height: 1.72;
}

.aso-home-prestige__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.aso-home-prestige__card {
  --aso-card-accent: var(--aso-blue);

  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 136px;
  padding: 22px 24px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--aso-border);
  border-left: 5px solid var(--aso-card-accent);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(31,111,152,.10);
  transform: translateY(0) scale(1);
  transition:
    transform .26s ease,
    box-shadow .26s ease,
    border-color .26s ease,
    background-color .26s ease;
}

.aso-home-prestige__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--aso-card-accent), var(--aso-blue));
  opacity: 0;
  transition: opacity .26s ease;
}

.aso-home-prestige__card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -62px;
  width: 150px;
  height: 150px;
  background: rgba(31,111,152,.065);
  border-radius: 999px;
  opacity: 0;
  transition: opacity .26s ease, transform .26s ease;
  pointer-events: none;
}

.aso-home-prestige__card:hover,
.aso-home-prestige__card:focus-within {
  transform: translateY(-6px) scale(1.01);
  background: #fff;
  border-color: rgba(31,111,152,.24);
  box-shadow: 0 28px 58px rgba(31,111,152,.16);
}

.aso-home-prestige__card:hover::before,
.aso-home-prestige__card:focus-within::before,
.aso-home-prestige__card:hover::after,
.aso-home-prestige__card:focus-within::after {
  opacity: 1;
}

.aso-home-prestige__card:hover::after,
.aso-home-prestige__card:focus-within::after {
  transform: translate(-8px, -8px);
}

.aso-home-prestige__card--tech {
  --aso-card-accent: var(--aso-blue);
}

.aso-home-prestige__card--advice {
  --aso-card-accent: var(--aso-coral);
}

.aso-home-prestige__card--team {
  --aso-card-accent: var(--aso-purple);
}

.aso-home-prestige__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  color: var(--aso-card-accent);
  background:
    radial-gradient(circle at 50% 36%, #fff 0%, #fff 35%, transparent 36%),
    linear-gradient(135deg, #f7fcff, #eaf7ff);
  border: 1px solid rgba(31,111,152,.15);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(31,111,152,.10);
}

.aso-home-prestige__card--advice .aso-home-prestige__icon {
  background: linear-gradient(135deg, #fffafa, #fff0ef);
  border-color: rgba(239,107,103,.18);
}

.aso-home-prestige__card--team .aso-home-prestige__icon {
  background: linear-gradient(135deg, #fcf9ff, #f4edfb);
  border-color: rgba(123,75,179,.18);
}

.aso-home-prestige__icon svg {
  display: block !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
}

.aso-home-prestige__body {
  position: relative;
  z-index: 1;
}

.aso-home-prestige__body h3 {
  margin: 0 0 8px;
  color: var(--aso-blue-dark);
  text-align: left !important;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 850;
}

.aso-home-prestige__body p {
  margin: 0;
  color: var(--aso-muted);
  text-align: left !important;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .aso-home-prestige__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .aso-home-prestige__intro {
    max-width: 820px;
    margin: 0 auto;
  }

  .aso-home-prestige__features {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .aso-home-prestige {
    padding: 72px 16px 72px;
  }

  .aso-home-prestige::before,
  .aso-home-prestige::after {
    width: 320vw;
    height: 150px;
  }

  .aso-home-prestige::before {
    top: -116px;
  }

  .aso-home-prestige::after {
    bottom: -116px;
  }

  .aso-home-prestige__intro {
    padding: 31px 22px 29px;
    border-radius: 20px;
  }

  .aso-home-prestige h2 {
    text-align: center !important;
    font-size: 39px;
  }

  .aso-home-prestige__subtitle,
  .aso-home-prestige__intro p {
    text-align: center !important;
  }

  .aso-home-prestige__subtitle {
    font-size: 18px;
  }

  .aso-home-prestige__intro p {
    font-size: 15.8px;
    line-height: 1.64;
  }

  .aso-home-prestige__card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 15px;
    min-height: 0;
    padding: 20px 18px;
    border-radius: 16px;
  }

  .aso-home-prestige__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .aso-home-prestige__icon svg {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    max-width: 29px !important;
    min-height: 29px !important;
    max-height: 29px !important;
  }

  .aso-home-prestige__body h3 {
    font-size: 17px;
  }

  .aso-home-prestige__body p {
    font-size: 14.5px;
    line-height: 1.54;
  }
}

@media (max-width: 480px) {
  .aso-home-prestige__card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .aso-home-prestige__body h3,
  .aso-home-prestige__body p {
    text-align: center !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-prestige__card,
  .aso-home-prestige__card::before,
  .aso-home-prestige__card::after {
    transition: none;
  }

  .aso-home-prestige__card:hover,
  .aso-home-prestige__card:focus-within {
    transform: none;
  }
}

/* ==========================================================
   HOME — BLOQUE PRINCIPIOS / PACIENTE / RIGOR / SERVICIO
   Fondo beige premium con curvas, manteniendo textos actuales.
   ========================================================== */

.aso-home-principles {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-coral: #ef6b67;
  --aso-cream: #f6eee6;
  --aso-warm: #b88a67;
  --aso-brown: #5d4132;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 102px 22px 104px;
  background:
    linear-gradient(90deg, rgba(7,29,45,.74) 0%, rgba(56,40,31,.48) 47%, rgba(7,29,45,.66) 100%),
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.16), transparent 31%),
    radial-gradient(circle at 88% 78%, rgba(239,107,103,.14), transparent 32%),
    url("https://www.doctoraso.es/wp-content/uploads/2026/06/home-valores-estetica-beige-dr-aso.webp"),
    linear-gradient(135deg, #c9a78b 0%, #e8d5c3 52%, #b88a67 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.aso-home-principles *,
.aso-home-principles *::before,
.aso-home-principles *::after {
  box-sizing: border-box;
}

/* Curvas blancas superior e inferior */
.aso-home-principles::before,
.aso-home-principles::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 240vw;
  max-width: none;
  height: 180px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.aso-home-principles::before {
  top: -138px;
}

.aso-home-principles::after {
  bottom: -138px;
}

.aso-home-principles__wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.aso-home-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.aso-home-principles__card {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  padding: 30px 28px 29px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.17), rgba(255,255,255,.075));
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 21px;
  box-shadow: 0 24px 62px rgba(7,29,45,.24);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transform: translateY(0) scale(1);
  transition:
    transform .26s ease,
    box-shadow .26s ease,
    border-color .26s ease,
    background-color .26s ease;
}

.aso-home-principles__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.22));
  opacity: .82;
}

.aso-home-principles__card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -66px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,.09);
  border-radius: 999px;
  pointer-events: none;
  transition:
    transform .26s ease,
    opacity .26s ease;
}

.aso-home-principles__card:hover,
.aso-home-principles__card:focus-within {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(255,255,255,.38);
  background:
    linear-gradient(135deg, rgba(255,255,255,.21), rgba(255,255,255,.10));
  box-shadow: 0 32px 74px rgba(7,29,45,.32);
}

.aso-home-principles__card:hover::after,
.aso-home-principles__card:focus-within::after {
  transform: translate(-10px, -10px);
  opacity: 1;
}

.aso-home-principles__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin: 0 0 22px;
  color: var(--aso-blue-dark);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(7,29,45,.18);
}

.aso-home-principles__icon svg {
  display: block !important;
  width: 31px !important;
  height: 31px !important;
  min-width: 31px !important;
  max-width: 31px !important;
  min-height: 31px !important;
  max-height: 31px !important;
}

.aso-home-principles__card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 15px;
  color: #fff;
  text-align: left !important;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 850;
  letter-spacing: -.015em;
  text-shadow: 0 1px 12px rgba(7,29,45,.24);
}

.aso-home-principles__card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,.91);
  text-align: left !important;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 650;
  text-shadow: 0 1px 12px rgba(7,29,45,.18);
}

.aso-home-principles__card--science {
  transform: translateY(10px);
}

.aso-home-principles__card--science:hover,
.aso-home-principles__card--science:focus-within {
  transform: translateY(3px) scale(1.012);
}

.aso-home-principles__card--care {
  transform: translateY(24px);
}

.aso-home-principles__card--care:hover,
.aso-home-principles__card--care:focus-within {
  transform: translateY(17px) scale(1.012);
}

@media (max-width: 991px) {
  .aso-home-principles {
    padding: 88px 20px 90px;
  }

  .aso-home-principles__grid {
    grid-template-columns: 1fr;
    max-width: 740px;
    margin: 0 auto;
  }

  .aso-home-principles__card,
  .aso-home-principles__card--science,
  .aso-home-principles__card--care {
    min-height: 0;
    transform: none;
  }

  .aso-home-principles__card:hover,
  .aso-home-principles__card:focus-within,
  .aso-home-principles__card--science:hover,
  .aso-home-principles__card--science:focus-within,
  .aso-home-principles__card--care:hover,
  .aso-home-principles__card--care:focus-within {
    transform: translateY(-5px);
  }
}

@media (max-width: 767px) {
  .aso-home-principles {
    padding: 76px 16px 78px;
    background-position: center center;
  }

  .aso-home-principles::before,
  .aso-home-principles::after {
    width: 320vw;
    height: 150px;
  }

  .aso-home-principles::before {
    top: -116px;
  }

  .aso-home-principles::after {
    bottom: -116px;
  }

  .aso-home-principles__grid {
    gap: 16px;
  }

  .aso-home-principles__card {
    padding: 25px 21px 24px;
    border-radius: 18px;
  }

  .aso-home-principles__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 17px;
    border-radius: 16px;
  }

  .aso-home-principles__icon svg {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    max-width: 29px !important;
    min-height: 29px !important;
    max-height: 29px !important;
  }

  .aso-home-principles__card h3 {
    font-size: 20px;
  }

  .aso-home-principles__card p {
    font-size: 15px;
    line-height: 1.58;
  }
}

@media (max-width: 480px) {
  .aso-home-principles__card,
  .aso-home-principles__card h3,
  .aso-home-principles__card p {
    text-align: center !important;
  }

  .aso-home-principles__icon {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-principles__card,
  .aso-home-principles__card::after {
    transition: none;
  }

  .aso-home-principles__card:hover,
  .aso-home-principles__card:focus-within,
  .aso-home-principles__card--science:hover,
  .aso-home-principles__card--science:focus-within,
  .aso-home-principles__card--care:hover,
  .aso-home-principles__card--care:focus-within {
    transform: none;
  }
}

/* ==========================================================
   HOME — BLOQUE "NUESTRO PROCESO"
   Fondo fotográfico full-width con curvas y panel central.
   ========================================================== */

.aso-home-process {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 102px 22px 104px;
  background:
    linear-gradient(90deg, rgba(53,35,24,.48) 0%, rgba(19,34,46,.34) 50%, rgba(53,35,24,.44) 100%),
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.10), transparent 32%),
    url("https://www.doctoraso.es/wp-content/uploads/2026/06/home-proceso-estetica-facial-dr-aso.webp"),
    linear-gradient(135deg, #d4b8a0 0%, #f0dfd1 50%, #bf9678 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.aso-home-process *,
.aso-home-process *::before,
.aso-home-process *::after {
  box-sizing: border-box;
}

.aso-home-process::before,
.aso-home-process::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 240vw;
  max-width: none;
  height: 180px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.aso-home-process::before {
  top: -138px;
}

.aso-home-process::after {
  bottom: -138px;
}

.aso-home-process__wrap {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.aso-home-process__panel {
  position: relative;
  overflow: hidden;
  max-width: 840px;
  margin: 0 auto;
  padding: 36px 34px 28px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  box-shadow: 0 26px 64px rgba(7,29,45,.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.aso-home-process__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.18));
}

.aso-home-process__panel::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 148px;
  height: 148px;
  background: rgba(255,255,255,.09);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-process__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.aso-home-process__kicker::before,
.aso-home-process__kicker::after {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,.48);
}

.aso-home-process h2 {
  margin: 0 0 18px;
  color: #fff;
  text-align: center !important;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -.03em;
  text-shadow: 0 2px 16px rgba(7,29,45,.24);
}

.aso-home-process__lead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.95);
  text-align: center !important;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(7,29,45,.20);
}

.aso-home-process__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.aso-home-process__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 288px;
  padding: 15px 28px;
  color: #fff !important;
  background: linear-gradient(135deg, #2b8fcb, #1f6f98);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(15,72,102,.26);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.aso-home-process__button:hover,
.aso-home-process__button:focus {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(15,72,102,.32);
  filter: brightness(1.03);
}

.aso-home-process__note {
  max-width: 780px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.88);
  text-align: center !important;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
  text-shadow: 0 1px 10px rgba(7,29,45,.18);
}

@media (max-width: 767px) {
  .aso-home-process {
    padding: 78px 16px 80px;
    background-position: center center;
  }

  .aso-home-process::before,
  .aso-home-process::after {
    width: 320vw;
    height: 150px;
  }

  .aso-home-process::before {
    top: -116px;
  }

  .aso-home-process::after {
    bottom: -116px;
  }

  .aso-home-process__panel {
    padding: 28px 20px 22px;
    border-radius: 20px;
  }

  .aso-home-process h2 {
    font-size: 34px;
  }

  .aso-home-process__lead {
    font-size: 15.5px;
    line-height: 1.58;
  }

  .aso-home-process__button {
    min-width: 100%;
    padding: 14px 18px;
    font-size: 16px;
  }

  .aso-home-process__note {
    font-size: 13.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-process__button {
    transition: none;
  }

  .aso-home-process__button:hover,
  .aso-home-process__button:focus {
    transform: none;
  }
}

/* ==========================================================
   HOME — BLOQUE MIA FEMTECH COMPACTO
   Teaser minimalista para enlazar a la página específica.
   Sustituye por completo el CSS anterior de .aso-home-mia.
   ========================================================== */

.aso-home-mia {
  --aso-mia-dark: #272331;
  --aso-mia-deep: #3e374d;
  --aso-mia-mid: #7c728e;
  --aso-mia-soft: #eee9f2;
  --aso-mia-light: #faf8fb;
  --aso-coral: #ef6b67;
  --aso-text: #263846;

  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 42px 22px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,255,255,.42), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(124,114,142,.18), transparent 32%),
    linear-gradient(135deg, #faf8fb 0%, #eee9f2 52%, #ddd6e4 100%);
}

.aso-home-mia *,
.aso-home-mia *::before,
.aso-home-mia *::after {
  box-sizing: border-box;
}

.aso-home-mia__wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.aso-home-mia__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 292px;
  padding: 26px 32px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,.14), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(239,107,103,.10), transparent 31%),
    linear-gradient(135deg, var(--aso-mia-dark) 0%, var(--aso-mia-deep) 56%, #665d74 100%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  box-shadow: 0 24px 58px rgba(37,34,49,.20);
}

.aso-home-mia__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.14));
}

.aso-home-mia__panel::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-mia__visual,
.aso-home-mia__content {
  position: relative;
  z-index: 1;
}

.aso-home-mia__visual {
  margin: 0;
}

.aso-home-mia__image-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8f5fb, #ded8e6);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0,0,0,.22);
}

.aso-home-mia__image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.aso-home-mia__brand {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.aso-home-mia__logo {
  display: block;
  width: 158px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.16));
}

.aso-home-mia__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: 11.5px;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.aso-home-mia__kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--aso-coral);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(239,107,103,.14);
}

.aso-home-mia h2 {
  max-width: 720px;
  margin: 0 0 10px;
  color: #fff;
  text-align: left !important;
  font-size: clamp(25px, 2.55vw, 36px);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -.035em;
}

.aso-home-mia__lead {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.82);
  text-align: left !important;
  font-size: 15.5px;
  line-height: 1.58;
}

.aso-home-mia__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.aso-home-mia__chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.085);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: 12.5px;
  line-height: 1.15;
  font-weight: 800;
}

.aso-home-mia__chips li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  background: var(--aso-coral);
  border-radius: 999px;
}

.aso-home-mia__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 21px;
}

.aso-home-mia__button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: var(--aso-mia-dark);
  text-align: center !important;
  background: #fff;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0,0,0,.20);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 900;
  text-decoration: none !important;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease;
}

.aso-home-mia__button:hover,
.aso-home-mia__button:focus-visible {
  color: var(--aso-mia-dark);
  text-decoration: none !important;
  transform: translateY(-2px);
  background: var(--aso-mia-light);
  box-shadow: 0 22px 42px rgba(0,0,0,.26);
}

.aso-home-mia__button--secondary {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
  box-shadow: none;
}

.aso-home-mia__button--secondary:hover,
.aso-home-mia__button--secondary:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.13);
}

.aso-home-mia__button:focus-visible {
  outline: 3px solid rgba(255,255,255,.42);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .aso-home-mia__panel {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 22px;
    padding: 24px;
  }

  .aso-home-mia__image-card {
    max-width: 180px;
  }
}

@media (max-width: 767px) {
  .aso-home-mia {
    padding: 38px 16px;
  }

  .aso-home-mia__panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 19px 24px;
    border-radius: 22px;
  }

  .aso-home-mia__visual {
    order: 2;
  }

  .aso-home-mia__content {
    order: 1;
  }

  .aso-home-mia__image-card {
    max-width: 230px;
  }

  .aso-home-mia__brand {
    justify-content: center;
    text-align: center;
  }

  .aso-home-mia__logo {
    width: 150px;
  }

  .aso-home-mia h2,
  .aso-home-mia__lead {
    text-align: center !important;
  }

  .aso-home-mia h2 {
    font-size: 29px;
  }

  .aso-home-mia__lead {
    font-size: 15px;
    line-height: 1.54;
  }

  .aso-home-mia__chips {
    justify-content: center;
  }

  .aso-home-mia__chips li {
    border-radius: 10px;
  }

  .aso-home-mia__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aso-home-mia__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-mia__button {
    transition: none;
  }

  .aso-home-mia__button:hover,
  .aso-home-mia__button:focus-visible {
    transform: none;
  }
}

/* ==========================================================
   FIX — TRATAMIENTOS MÓVIL: TEXTO CENTRADO CON EL ICONO
   ========================================================== */

@media (max-width: 767px) {
  .aso-home-treatments__card {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .aso-home-treatments__inner {
    display: flex !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .aso-home-treatments__icon {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .aso-home-treatments__title {
    display: block !important;
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
    text-align-last: center !important;
  }
}

/* ==========================================================
   HOME — BLOQUE CLÍNICA / CONFIANZA / CONTACTO
   Rediseño premium asimétrico, sin imagen de fondo.
   Sustituye visualmente el bloque antiguo de:
   "Conoce nuestra Clínica de Estética y Cirugía Plástica"
   ========================================================== */

.aso-home-clinic-access {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-sky: #eaf7ff;
  --aso-sky-soft: #f7fcff;
  --aso-coral: #ef6b67;
  --aso-purple: #7b4bb3;
  --aso-text: #263846;
  --aso-muted: #667789;
  --aso-border: rgba(31,111,152,.15);
  --aso-shadow: 0 26px 66px rgba(21,90,125,.13);

  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 78px 22px;
  background:
    radial-gradient(circle at 8% 10%, rgba(31,111,152,.08), transparent 30%),
    radial-gradient(circle at 92% 90%, rgba(239,107,103,.065), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7fcff 52%, #eef9ff 100%);
}

.aso-home-clinic-access *,
.aso-home-clinic-access *::before,
.aso-home-clinic-access *::after {
  box-sizing: border-box;
}

.aso-home-clinic-access::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -135px;
  width: 380px;
  height: 380px;
  background: rgba(31,111,152,.07);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-clinic-access::after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  background: rgba(234,247,255,.9);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-clinic-access__wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.aso-home-clinic-access__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, .93fr) minmax(0, 1.07fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(31,111,152,.13);
  border-radius: 30px;
  box-shadow: var(--aso-shadow);
}

/* Franja diagonal izquierda: aporta originalidad sin meter imagen */
.aso-home-clinic-access__panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.88), transparent 32%),
    linear-gradient(135deg, #eaf7ff 0%, #dff2ff 55%, #f7fcff 100%);
  clip-path: polygon(0 0, 100% 0, 83% 100%, 0 100%);
  pointer-events: none;
  z-index: 0;
}

.aso-home-clinic-access__panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  background: rgba(31,111,152,.055);
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.aso-home-clinic-access__proofs,
.aso-home-clinic-access__summary {
  position: relative;
  z-index: 1;
}

.aso-home-clinic-access__proofs {
  display: grid;
  gap: 16px;
  padding: 4px 0;
}

.aso-home-clinic-access__proof {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 118px;
  padding: 21px 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(31,111,152,.14);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(31,111,152,.10);
  transform: translateY(0);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease,
    background-color .24s ease;
}

.aso-home-clinic-access__proof::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--aso-blue-dark), var(--aso-blue));
}

.aso-home-clinic-access__proof:nth-child(2)::before {
  background: linear-gradient(90deg, var(--aso-coral), #f29b96);
}

.aso-home-clinic-access__proof:nth-child(3)::before {
  background: linear-gradient(90deg, var(--aso-blue-deep), var(--aso-blue));
}

.aso-home-clinic-access__proof:nth-child(4)::before {
  background: linear-gradient(90deg, var(--aso-purple), #a378ca);
}

.aso-home-clinic-access__proof::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 140px;
  height: 140px;
  background: rgba(31,111,152,.055);
  border-radius: 999px;
  opacity: 0;
  transition: opacity .24s ease, transform .24s ease;
  pointer-events: none;
}

.aso-home-clinic-access__proof:hover,
.aso-home-clinic-access__proof:focus-within {
  transform: translateY(-5px);
  background: #fff;
  border-color: rgba(31,111,152,.24);
  box-shadow: 0 27px 58px rgba(31,111,152,.16);
}

.aso-home-clinic-access__proof:hover::after,
.aso-home-clinic-access__proof:focus-within::after {
  opacity: 1;
  transform: translate(-8px, -8px);
}

.aso-home-clinic-access__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--aso-blue-dark);
  background:
    radial-gradient(circle at 50% 35%, #fff 0%, #fff 36%, transparent 37%),
    linear-gradient(135deg, #f7fcff, #eaf7ff);
  border: 1px solid rgba(31,111,152,.16);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(31,111,152,.11);
}

.aso-home-clinic-access__proof:nth-child(2) .aso-home-clinic-access__icon {
  color: var(--aso-coral);
  background: linear-gradient(135deg, #fffafa, #fff0ef);
  border-color: rgba(239,107,103,.20);
}

.aso-home-clinic-access__proof:nth-child(4) .aso-home-clinic-access__icon {
  color: var(--aso-purple);
  background: linear-gradient(135deg, #fcf9ff, #f4edfb);
  border-color: rgba(123,75,179,.20);
}

.aso-home-clinic-access__icon svg {
  display: block !important;
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  max-width: 26px !important;
  min-height: 26px !important;
  max-height: 26px !important;
}

.aso-home-clinic-access__proof-body {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.aso-home-clinic-access__proof-title {
  margin: 0 0 7px;
  color: var(--aso-blue);
  text-align: left !important;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
}

.aso-home-clinic-access__proof-text {
  margin: 0;
  color: var(--aso-muted);
  text-align: left !important;
  font-size: 15px;
  line-height: 1.52;
  font-weight: 550;
  letter-spacing: .01em;
}

.aso-home-clinic-access__proof-note {
  margin-top: 11px;
  color: var(--aso-muted);
  text-align: left !important;
  font-size: 12.5px;
  line-height: 1.42;
  font-weight: 500;
}

.aso-home-clinic-access__summary {
  padding: 38px 38px 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(31,111,152,.08), transparent 33%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,252,255,.94));
  border: 1px solid rgba(31,111,152,.14);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(31,111,152,.09);
}

.aso-home-clinic-access__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--aso-coral);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.aso-home-clinic-access__kicker::before,
.aso-home-clinic-access__kicker::after {
  content: "";
  width: 25px;
  height: 1px;
  background: rgba(239,107,103,.58);
}

.aso-home-clinic-access h2 {
  margin: 0 0 15px;
  color: var(--aso-blue-dark);
  text-align: left !important;
  font-family: Alice, serif;
  font-size: clamp(36px, 3.15vw, 50px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.035em;
}

.aso-home-clinic-access__subtitle {
  margin: 0 0 17px;
  color: var(--aso-muted);
  text-align: left !important;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
}

.aso-home-clinic-access__text {
  margin: 0;
  color: var(--aso-text);
  text-align: left !important;
  font-size: 16.5px;
  line-height: 1.72;
}

.aso-home-clinic-access__contact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.aso-home-clinic-access__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  color: #fff;
  text-align: center !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, var(--aso-blue-dark), var(--aso-blue));
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: 0 15px 32px rgba(21,90,125,.18);
  font-size: 15px;
  line-height: 1.16;
  font-weight: 850;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease;
}

.aso-home-clinic-access__button svg {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.aso-home-clinic-access__button:hover,
.aso-home-clinic-access__button:focus-visible {
  color: #fff;
  text-decoration: none !important;
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(21,90,125,.26);
}

.aso-home-clinic-access__button--phone {
  color: var(--aso-blue-dark);
  background: #fff;
  border-color: rgba(31,111,152,.22);
  box-shadow: none;
}

.aso-home-clinic-access__button--phone:hover,
.aso-home-clinic-access__button--phone:focus-visible {
  color: var(--aso-blue-dark);
  background: var(--aso-sky);
}

.aso-home-clinic-access__button:focus-visible {
  outline: 3px solid rgba(31,111,152,.30);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .aso-home-clinic-access__panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aso-home-clinic-access__panel::before {
    width: 100%;
    height: 47%;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
  }

  .aso-home-clinic-access__proofs,
  .aso-home-clinic-access__summary {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .aso-home-clinic-access {
    padding: 58px 16px;
  }

  .aso-home-clinic-access__panel {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .aso-home-clinic-access__proof {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 19px 17px;
    border-radius: 16px;
  }

  .aso-home-clinic-access__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .aso-home-clinic-access__icon svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
  }

  .aso-home-clinic-access__proof-title {
    font-size: 16.5px;
  }

  .aso-home-clinic-access__proof-text {
    font-size: 14.3px;
    line-height: 1.5;
  }

  .aso-home-clinic-access__proof-note {
    font-size: 12px;
  }

  .aso-home-clinic-access__summary {
    padding: 30px 21px 26px;
    border-radius: 20px;
  }

  .aso-home-clinic-access__kicker {
    justify-content: center;
    width: 100%;
  }

  .aso-home-clinic-access h2,
  .aso-home-clinic-access__subtitle,
  .aso-home-clinic-access__text {
    text-align: center !important;
  }

  .aso-home-clinic-access h2 {
    font-size: 34px;
  }

  .aso-home-clinic-access__subtitle {
    font-size: 17px;
  }

  .aso-home-clinic-access__text {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .aso-home-clinic-access__contact-strip {
    grid-template-columns: 1fr;
  }

  .aso-home-clinic-access__button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .aso-home-clinic-access__proof {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .aso-home-clinic-access__proof-title,
  .aso-home-clinic-access__proof-text,
  .aso-home-clinic-access__proof-note {
    text-align: center !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-clinic-access__proof,
  .aso-home-clinic-access__proof::after,
  .aso-home-clinic-access__button {
    transition: none;
  }

  .aso-home-clinic-access__proof:hover,
  .aso-home-clinic-access__proof:focus-within,
  .aso-home-clinic-access__button:hover,
  .aso-home-clinic-access__button:focus-visible {
    transform: none;
  }
}

/* ==========================================================
   HOME — FAQ PREMIUM / PREGUNTAS FRECUENTES
   Acordeón robusto sin JavaScript, usando details/summary.
   ========================================================== */

.aso-home-faq {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-sky: #eaf7ff;
  --aso-sky-soft: #f7fcff;
  --aso-coral: #ef6b67;
  --aso-purple: #7b4bb3;
  --aso-text: #263846;
  --aso-muted: #667789;
  --aso-border: rgba(31,111,152,.15);
  --aso-shadow: 0 24px 58px rgba(31,111,152,.12);

  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 76px 22px 82px;
  background:
    radial-gradient(circle at 8% 10%, rgba(31,111,152,.08), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(239,107,103,.065), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fcff 54%, #eaf7ff 100%);
}

.aso-home-faq *,
.aso-home-faq *::before,
.aso-home-faq *::after {
  box-sizing: border-box;
}

.aso-home-faq::before {
  content: "";
  position: absolute;
  top: -135px;
  right: -145px;
  width: 380px;
  height: 380px;
  background: rgba(31,111,152,.07);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-faq::after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  background: rgba(234,247,255,.95);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-faq__wrap {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
}

.aso-home-faq__head {
  max-width: 840px;
  margin: 0 auto 36px;
  text-align: center;
}

.aso-home-faq__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--aso-coral);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.aso-home-faq__kicker::before,
.aso-home-faq__kicker::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(239,107,103,.58);
}

.aso-home-faq h2 {
  margin: 0 0 16px;
  color: var(--aso-blue-dark);
  text-align: center !important;
  font-family: Alice, serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -.035em;
}

.aso-home-faq__lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--aso-text);
  text-align: center !important;
  font-size: 18px;
  line-height: 1.68;
}

.aso-home-faq__list {
  display: grid;
  gap: 13px;
}

.aso-home-faq__item {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(31,111,152,.14);
  border-radius: 17px;
  box-shadow: 0 16px 38px rgba(31,111,152,.08);
  transition:
    border-color .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    transform .22s ease;
}

.aso-home-faq__item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--aso-blue-dark), var(--aso-blue));
  opacity: .9;
}

.aso-home-faq__item:nth-child(3n+2)::before {
  background: linear-gradient(90deg, var(--aso-coral), #f29b96);
}

.aso-home-faq__item:nth-child(3n+3)::before {
  background: linear-gradient(90deg, var(--aso-purple), #a378ca);
}

.aso-home-faq__item[open] {
  background: #fff;
  border-color: rgba(31,111,152,.25);
  box-shadow: 0 24px 54px rgba(31,111,152,.14);
}

.aso-home-faq__item:hover {
  transform: translateY(-2px);
  border-color: rgba(31,111,152,.23);
  box-shadow: 0 22px 48px rgba(31,111,152,.12);
}

.aso-home-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  min-height: 68px;
  padding: 20px 22px 18px;
  color: var(--aso-blue-dark);
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  line-height: 1.32;
  font-weight: 850;
}

.aso-home-faq__question::-webkit-details-marker {
  display: none;
}

.aso-home-faq__question::after {
  content: "+";
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--aso-blue-dark), var(--aso-blue));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31,111,152,.18);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  transition:
    transform .22s ease,
    background-color .22s ease;
}

.aso-home-faq__item[open] .aso-home-faq__question::after {
  content: "–";
  transform: rotate(180deg);
}

.aso-home-faq__question:hover,
.aso-home-faq__question:focus-visible {
  color: var(--aso-blue-deep);
  outline: none;
}

.aso-home-faq__answer {
  padding: 0 22px 22px;
  color: var(--aso-muted);
}

.aso-home-faq__answer-inner {
  padding: 18px 20px 20px;
  background:
    radial-gradient(circle at 98% 0%, rgba(31,111,152,.055), transparent 35%),
    linear-gradient(135deg, #ffffff, #f7fcff);
  border: 1px solid rgba(31,111,152,.10);
  border-radius: 13px;
}

.aso-home-faq__answer p,
.aso-home-faq__answer li {
  color: var(--aso-muted);
  text-align: left !important;
  font-size: 16px;
  line-height: 1.68;
}

.aso-home-faq__answer p {
  margin: 0 0 14px;
}

.aso-home-faq__answer p:last-child {
  margin-bottom: 0;
}

.aso-home-faq__answer ul {
  margin: 13px 0 16px;
  padding-left: 21px;
}

.aso-home-faq__answer li {
  margin-bottom: 10px;
}

.aso-home-faq__answer strong {
  color: var(--aso-blue-dark);
  font-weight: 850;
}

.aso-home-faq__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
  padding: 23px 26px;
  background:
    radial-gradient(circle at 96% 12%, rgba(255,255,255,.14), transparent 32%),
    linear-gradient(135deg, var(--aso-blue-deep), var(--aso-blue-dark) 52%, var(--aso-blue));
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(21,90,125,.20);
}

.aso-home-faq__cta p {
  margin: 0;
  color: #fff;
  text-align: left !important;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 850;
}

.aso-home-faq__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  color: var(--aso-blue-dark);
  background: #fff;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(7,29,45,.20);
  font-size: 15px;
  line-height: 1.16;
  font-weight: 900;
  text-align: center !important;
  text-decoration: none !important;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease;
}

.aso-home-faq__button:hover,
.aso-home-faq__button:focus-visible {
  color: var(--aso-blue-dark);
  background: var(--aso-sky);
  text-decoration: none !important;
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(7,29,45,.26);
}

.aso-home-faq__button:focus-visible {
  outline: 3px solid rgba(255,255,255,.50);
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .aso-home-faq {
    padding: 58px 16px 64px;
  }

  .aso-home-faq__head {
    margin-bottom: 28px;
  }

  .aso-home-faq h2 {
    font-size: 38px;
  }

  .aso-home-faq__lead {
    font-size: 16px;
    line-height: 1.58;
  }

  .aso-home-faq__question {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 12px;
    min-height: 62px;
    padding: 17px 16px 15px;
    font-size: 16px;
    line-height: 1.34;
  }

  .aso-home-faq__question::after {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .aso-home-faq__answer {
    padding: 0 14px 15px;
  }

  .aso-home-faq__answer-inner {
    padding: 16px 15px 17px;
  }

  .aso-home-faq__answer p,
  .aso-home-faq__answer li {
    font-size: 14.7px;
    line-height: 1.58;
  }

  .aso-home-faq__cta {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    text-align: center;
  }

  .aso-home-faq__cta p {
    text-align: center !important;
    font-size: 16.5px;
  }

  .aso-home-faq__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-faq__item,
  .aso-home-faq__question::after,
  .aso-home-faq__button {
    transition: none;
  }

  .aso-home-faq__item:hover,
  .aso-home-faq__button:hover,
  .aso-home-faq__button:focus-visible {
    transform: none;
  }
}

/* ==========================================================
   HOME — BLOQUE PONTE EN MANOS DEL MEJOR CIRUJANO
   Rediseño sutil del bloque original con collage de imágenes.
   ========================================================== */

.aso-home-surgeon-choice {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-sky: #eaf7ff;
  --aso-sky-soft: #f7fcff;
  --aso-coral: #ef6b67;
  --aso-text: #263846;
  --aso-muted: #667789;
  --aso-border: rgba(31,111,152,.15);
  --aso-shadow: 0 24px 58px rgba(31,111,152,.12);

  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 76px 22px 82px;
  background:
    radial-gradient(circle at 12% 18%, rgba(31,111,152,.075), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(239,107,103,.045), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #fbfdff 52%, #f3fbff 100%);
}

.aso-home-surgeon-choice *,
.aso-home-surgeon-choice *::before,
.aso-home-surgeon-choice *::after {
  box-sizing: border-box;
}

.aso-home-surgeon-choice::before {
  content: "";
  position: absolute;
  top: -130px;
  left: -150px;
  width: 360px;
  height: 360px;
  background: rgba(234,247,255,.9);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-surgeon-choice::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 390px;
  height: 390px;
  background: rgba(31,111,152,.055);
  border-radius: 999px;
  pointer-events: none;
}

.aso-home-surgeon-choice__wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.aso-home-surgeon-choice__grid {
  display: grid;
  grid-template-columns: minmax(340px, .94fr) minmax(0, 1.06fr);
  gap: 62px;
  align-items: center;
}

.aso-home-surgeon-choice__media {
  position: relative;
  min-height: 500px;
  margin: 0;
}

.aso-home-surgeon-choice__orb {
  position: absolute;
  inset: 26px 18px 18px 74px;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.72), transparent 34%),
    linear-gradient(135deg, rgba(234,247,255,.92), rgba(215,238,250,.72));
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(31,111,152,.07);
}

.aso-home-surgeon-choice__image {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(31,111,152,.13);
  box-shadow: 0 24px 56px rgba(21,90,125,.17);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    filter .28s ease;
}

.aso-home-surgeon-choice__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform .32s ease,
    filter .32s ease;
}

.aso-home-surgeon-choice__image:hover,
.aso-home-surgeon-choice__image:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(21,90,125,.22);
}

.aso-home-surgeon-choice__image:hover img,
.aso-home-surgeon-choice__image:focus-within img {
  transform: scale(1.035);
  filter: brightness(1.035);
}

.aso-home-surgeon-choice__image--main {
  top: 0;
  left: 0;
  width: min(58%, 350px);
  aspect-ratio: 1 / 1;
  border-radius: 24px;
}

.aso-home-surgeon-choice__image--side {
  top: 160px;
  right: 0;
  width: min(43%, 255px);
  aspect-ratio: 212 / 192;
  border-radius: 21px;
}

.aso-home-surgeon-choice__image--small {
  left: 28%;
  bottom: 0;
  width: min(34%, 190px);
  aspect-ratio: 164 / 148;
  border-radius: 19px;
}

.aso-home-surgeon-choice__image--main img {
  object-position: center center;
}

.aso-home-surgeon-choice__image--side img,
.aso-home-surgeon-choice__image--small img {
  object-position: center center;
}

.aso-home-surgeon-choice__content {
  position: relative;
  max-width: 610px;
}

.aso-home-surgeon-choice__content::before {
  content: "";
  position: absolute;
  top: -28px;
  left: -30px;
  width: 74px;
  height: 74px;
  background: rgba(234,247,255,.86);
  border-radius: 22px;
  transform: rotate(10deg);
  pointer-events: none;
  z-index: -1;
}

.aso-home-surgeon-choice__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--aso-coral);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.aso-home-surgeon-choice__kicker::before {
  content: "";
  width: 27px;
  height: 1px;
  background: rgba(239,107,103,.58);
}

.aso-home-surgeon-choice h2 {
  margin: 0 0 20px;
  color: var(--aso-blue-dark);
  text-align: left !important;
  font-family: Jost, sans-serif;
  font-size: clamp(26px, 2.55vw, 36px);
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: -.035em;
}

.aso-home-surgeon-choice__text {
  position: relative;
  padding: 0 0 0 24px;
  border-left: 3px solid rgba(31,111,152,.16);
}

.aso-home-surgeon-choice__text p {
  margin: 0 0 24px;
  color: var(--aso-text);
  text-align: left !important;
  font-size: 17px;
  line-height: 1.78;
  font-weight: 500;
}

.aso-home-surgeon-choice__text p:last-child {
  margin-bottom: 0;
}

.aso-home-surgeon-choice__text strong {
  color: var(--aso-blue-deep);
  font-weight: 850;
}

.aso-home-surgeon-choice__mini-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-top: 28px;
}

.aso-home-surgeon-choice__proof {
  position: relative;
  overflow: hidden;
  min-height: 88px;
  padding: 15px 15px 14px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(31,111,152,.13);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(31,111,152,.08);
}

.aso-home-surgeon-choice__proof::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--aso-blue-dark), var(--aso-blue));
  border-radius: 999px;
}

.aso-home-surgeon-choice__proof:nth-child(2)::before {
  background: linear-gradient(90deg, var(--aso-coral), #f29b96);
}

.aso-home-surgeon-choice__proof:nth-child(3)::before {
  background: linear-gradient(90deg, var(--aso-blue-deep), var(--aso-blue));
}

.aso-home-surgeon-choice__proof span {
  display: block;
  color: var(--aso-blue-dark);
  text-align: left !important;
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .aso-home-surgeon-choice__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .aso-home-surgeon-choice__media {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .aso-home-surgeon-choice__content {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .aso-home-surgeon-choice {
    padding: 58px 16px 64px;
  }

  .aso-home-surgeon-choice__grid {
    gap: 36px;
  }

  .aso-home-surgeon-choice__media {
    min-height: 390px;
  }

  .aso-home-surgeon-choice__orb {
    inset: 30px 0 34px 34px;
  }

  .aso-home-surgeon-choice__image--main {
    width: 61%;
    border-radius: 21px;
  }

  .aso-home-surgeon-choice__image--side {
    top: 132px;
    width: 45%;
    border-radius: 18px;
  }

  .aso-home-surgeon-choice__image--small {
    left: 24%;
    width: 38%;
    border-radius: 17px;
  }

  .aso-home-surgeon-choice__content {
    text-align: center;
  }

  .aso-home-surgeon-choice__content::before {
    left: 50%;
    transform: translateX(-50%) rotate(10deg);
  }

  .aso-home-surgeon-choice__kicker {
    justify-content: center;
  }

  .aso-home-surgeon-choice__kicker::after {
    content: "";
    width: 27px;
    height: 1px;
    background: rgba(239,107,103,.58);
  }

  .aso-home-surgeon-choice h2 {
    text-align: center !important;
    font-size: 28px;
  }

  .aso-home-surgeon-choice__text {
    padding-left: 0;
    border-left: 0;
  }

  .aso-home-surgeon-choice__text p {
    text-align: center !important;
    font-size: 15.8px;
    line-height: 1.66;
  }

  .aso-home-surgeon-choice__mini-proof {
    grid-template-columns: 1fr;
  }

  .aso-home-surgeon-choice__proof span {
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .aso-home-surgeon-choice__media {
    min-height: 345px;
  }

  .aso-home-surgeon-choice__image--main {
    width: 64%;
  }

  .aso-home-surgeon-choice__image--side {
    top: 118px;
    width: 46%;
  }

  .aso-home-surgeon-choice__image--small {
    left: 19%;
    bottom: 6px;
    width: 40%;
  }

  .aso-home-surgeon-choice h2 {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-surgeon-choice__image,
  .aso-home-surgeon-choice__image img {
    transition: none;
  }

  .aso-home-surgeon-choice__image:hover,
  .aso-home-surgeon-choice__image:focus-within,
  .aso-home-surgeon-choice__image:hover img,
  .aso-home-surgeon-choice__image:focus-within img {
    transform: none;
    filter: none;
  }
}

/* ==========================================================
   FIX MÓVIL — BLOQUE "PONTE EN MANOS..."
   Compacta la parte inferior y evita que el fondo circular
   haga raro el cierre del bloque en móvil.
   ========================================================== */

@media (max-width: 767px) {
  .aso-home-surgeon-choice {
    padding-bottom: 48px;
  }

  .aso-home-surgeon-choice::after {
    display: none;
  }

  .aso-home-surgeon-choice__mini-proof {
    gap: 9px;
    margin-top: 22px;
  }

  .aso-home-surgeon-choice__proof {
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: flex-start;
    padding: 13px 15px 13px 46px;
    background: rgba(255,255,255,.95);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(31,111,152,.07);
  }

  .aso-home-surgeon-choice__proof::before {
    position: absolute;
    top: 50%;
    left: 16px;
    display: inline-flex;
    width: 19px;
    height: 19px;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--aso-blue-dark), var(--aso-blue));
    border-radius: 999px;
    transform: translateY(-50%);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    content: "✓";
  }

  .aso-home-surgeon-choice__proof:nth-child(2)::before {
    background: linear-gradient(135deg, var(--aso-coral), #f29b96);
  }

  .aso-home-surgeon-choice__proof:nth-child(3)::before {
    background: linear-gradient(135deg, var(--aso-blue-deep), var(--aso-blue));
  }

  .aso-home-surgeon-choice__proof span {
    text-align: left !important;
    font-size: 14px;
    line-height: 1.28;
  }
}

@media (max-width: 480px) {
  .aso-home-surgeon-choice {
    padding-bottom: 42px;
  }

  .aso-home-surgeon-choice__mini-proof {
    margin-top: 20px;
  }

  .aso-home-surgeon-choice__proof {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* ==========================================================
   HOME — CTA FINAL "RESALTAR TU BELLEZA"
   Banda simple, ligera y responsive.
   ========================================================== */

.aso-home-beauty-cta {
  --aso-blue: #1f6f98;
  --aso-blue-dark: #155a7d;
  --aso-blue-deep: #0f4866;
  --aso-sky: #eaf7ff;

  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 36px 22px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.14), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,.10), transparent 30%),
    linear-gradient(135deg, var(--aso-blue-deep), var(--aso-blue-dark) 52%, var(--aso-blue));
}

.aso-home-beauty-cta *,
.aso-home-beauty-cta *::before,
.aso-home-beauty-cta *::after {
  box-sizing: border-box;
}

.aso-home-beauty-cta__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}

.aso-home-beauty-cta__text {
  min-width: 0;
}

.aso-home-beauty-cta__title {
  margin: 0 0 11px;
  color: #fff;
  text-align: left !important;
  font-family: Alice, serif;
  font-size: clamp(31px, 3vw, 43px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.025em;
}

.aso-home-beauty-cta__lead {
  margin: 0;
  color: rgba(255,255,255,.90);
  text-align: left !important;
  font-size: 20px;
  line-height: 1.42;
  font-weight: 500;
}

.aso-home-beauty-cta__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  color: var(--aso-blue-dark);
  text-align: center !important;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 10px;
  box-shadow: 0 15px 34px rgba(7,29,45,.18);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 650;
  text-decoration: none !important;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease;
}

.aso-home-beauty-cta__button strong {
  font-weight: 900;
}

.aso-home-beauty-cta__button:hover,
.aso-home-beauty-cta__button:focus-visible {
  color: var(--aso-blue-dark);
  background: var(--aso-sky);
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 21px 42px rgba(7,29,45,.25);
}

.aso-home-beauty-cta__button:focus-visible {
  outline: 3px solid rgba(255,255,255,.55);
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .aso-home-beauty-cta {
    padding: 34px 18px;
  }

  .aso-home-beauty-cta__wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .aso-home-beauty-cta__title,
  .aso-home-beauty-cta__lead {
    text-align: center !important;
  }

  .aso-home-beauty-cta__title {
    font-size: 32px;
  }

  .aso-home-beauty-cta__lead {
    font-size: 16.5px;
    line-height: 1.5;
  }

  .aso-home-beauty-cta__button {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-home-beauty-cta__button {
    transition: none;
  }

  .aso-home-beauty-cta__button:hover,
  .aso-home-beauty-cta__button:focus-visible {
    transform: none;
  }
}

/* ==========================================================
   Clínica Dr. Aso — Hero home v2
   ========================================================== */
.aso-hero-home,
.aso-hero-home * {
  box-sizing: border-box;
}

.aso-hero-home {
  --aso-blue: #246692;
  --aso-blue-bright: #2991d6;
  --aso-ink: #0b3149;
  --aso-soft: #eef8ff;
  --aso-white: #ffffff;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #071016;
}

.aso-hero-home__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  margin: 0;
  overflow: hidden;
  background: #071016;
}

.aso-hero-home__picture,
.aso-hero-home__img {
  display: block;
  width: 100%;
  height: 100%;
}

.aso-hero-home__img {
  object-fit: cover;
  object-position: center center;
}

.aso-hero-home__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .85s ease;
}

.aso-hero-home__video.is-visible {
  opacity: 1;
}

.aso-hero-home__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 42%, rgba(41,145,214,.10), transparent 36%),
    linear-gradient(
      90deg,
      rgba(4, 10, 13, .94) 0%,
      rgba(4, 10, 13, .86) 30%,
      rgba(4, 10, 13, .42) 56%,
      rgba(4, 10, 13, .12) 78%,
      rgba(4, 10, 13, .20) 100%
    );
}

.aso-hero-home__wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  max-width: 1180px;
  min-height: clamp(560px, calc(100svh - 150px), 760px);
  margin: 0 auto;
  padding: 64px 24px 76px;
}

.aso-hero-home__content {
  width: 100%;
  max-width: 610px;
}

.aso-hero-home__card {
  position: relative;
  max-width: 590px;
  padding: 38px 38px 34px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(7, 20, 28, .58), rgba(13, 58, 84, .28));
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(6px);
}

.aso-hero-home__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 38px;
  width: 86px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
}

.aso-hero-home__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  margin: 0 0 18px;
  padding: 6px 12px;
  color: rgba(255,255,255,.90);
  text-align: left !important;
  font-family: Jost, sans-serif;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
}

.aso-hero-home h1 {
  margin: 0 0 18px;
  color: #fff !important;
  text-align: left !important;
  font-family: Alice, serif;
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: .015em;
}

.aso-hero-home__lead {
  max-width: 540px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.92);
  text-align: left !important;
  font-family: Jost, sans-serif;
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.48;
}

.aso-hero-home__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

body .aso-hero-home__proofs li {
  margin: 0;
  padding: 8px 12px;
  color: rgba(255,255,255,.92);
  text-align: left !important;
  font-family: Jost, sans-serif;
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.15;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}

.aso-hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.aso-hero-home__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  text-align: center !important;
  font-family: Jost, sans-serif;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none !important;
  border-radius: 12px;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease,
    color .2s ease;
}

.aso-hero-home__button--primary {
  color: var(--aso-blue) !important;
  background: rgba(255,255,255,.97);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

.aso-hero-home__button--secondary {
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.36);
  background: rgba(255,255,255,.09);
}

.aso-hero-home__button:hover,
.aso-hero-home__button:focus-visible {
  transform: translateY(-2px);
  text-decoration: none !important;
}

.aso-hero-home__button--primary:hover,
.aso-hero-home__button--primary:focus-visible {
  color: var(--aso-blue) !important;
  background: #eef8ff;
  box-shadow: 0 22px 42px rgba(0,0,0,.28);
}

.aso-hero-home__button--secondary:hover,
.aso-hero-home__button--secondary:focus-visible {
  color: #fff !important;
  background: rgba(255,255,255,.16);
}

.aso-hero-home__note {
  margin: 15px 0 0;
  color: rgba(255,255,255,.68);
  text-align: left !important;
  font-family: Jost, sans-serif;
  font-size: 12.5px;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .aso-hero-home {
    overflow: visible;
    background:
      linear-gradient(180deg, #eef8ff 0%, #ffffff 78%);
  }

  .aso-hero-home__media {
    position: relative;
    inset: auto;
    z-index: 0;
    height: clamp(300px, 62vw, 430px);
  }

  .aso-hero-home__img {
    object-position: center center;
  }

  .aso-hero-home__video {
    display: none;
  }

  .aso-hero-home__veil {
    background:
      linear-gradient(
        180deg,
        rgba(4, 10, 13, .03) 0%,
        rgba(4, 10, 13, .12) 50%,
        rgba(4, 10, 13, .56) 100%
      );
  }

  .aso-hero-home__wrap {
    display: block;
    min-height: 0;
    padding: 0 16px 34px;
    transform: translateY(-54px);
    margin-bottom: -54px;
  }

  .aso-hero-home__content {
    max-width: 590px;
    margin: 0 auto;
  }

  .aso-hero-home__card {
    max-width: none;
    padding: 27px 21px 23px;
    color: var(--aso-ink);
    border: 1px solid rgba(36,102,146,.14);
    border-radius: 23px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 22px 52px rgba(17,72,105,.18);
    backdrop-filter: none;
  }

  .aso-hero-home__card::before {
    left: 22px;
    width: 74px;
    background: var(--aso-blue-bright);
  }

  .aso-hero-home__kicker {
    color: var(--aso-blue);
    border-color: rgba(41,145,214,.20);
    background: #eef8ff;
  }

  .aso-hero-home h1 {
    color: var(--aso-blue) !important;
    font-size: clamp(34px, 8.7vw, 44px);
    line-height: 1.08;
    letter-spacing: .01em;
  }

  .aso-hero-home__lead {
    color: #385d73;
    font-size: 17px;
    line-height: 1.52;
  }

  .aso-hero-home__proofs {
    gap: 8px;
    margin-bottom: 22px;
  }

  body .aso-hero-home__proofs li {
    color: var(--aso-blue);
    border-color: rgba(41,145,214,.16);
    background: #eef8ff;
    font-size: 13.5px !important;
  }

  .aso-hero-home__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .aso-hero-home__button {
    width: 100%;
    min-height: 52px;
  }

  .aso-hero-home__button--primary {
    color: #fff !important;
    background: var(--aso-blue-bright);
    box-shadow: 0 14px 30px rgba(41,145,214,.24);
  }

  .aso-hero-home__button--primary:hover,
  .aso-hero-home__button--primary:focus-visible {
    color: #fff !important;
    background: var(--aso-blue);
  }

  .aso-hero-home__button--secondary {
    color: var(--aso-blue) !important;
    border-color: rgba(36,102,146,.18);
    background: #fff;
  }

  .aso-hero-home__button--secondary:hover,
  .aso-hero-home__button--secondary:focus-visible {
    color: var(--aso-blue) !important;
    background: #eef8ff;
  }

  .aso-hero-home__note {
    color: #6b8798;
  }
}

@media (max-width: 420px) {
  .aso-hero-home__media {
    height: 315px;
  }

  .aso-hero-home__wrap {
    padding-right: 14px;
    padding-left: 14px;
  }

  .aso-hero-home__card {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aso-hero-home__video {
    display: none;
  }

  .aso-hero-home__button,
  .aso-hero-home__video {
    transition: none;
  }
}

/* HOME — Sustituir iconos FontAwesome básicos por caracteres nativos */
body.home .mobile-toggle i,
body.home .activador-cta-lateral i {
  display: none !important;
}

body.home .mobile-toggle::before {
  content: "☰";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: inherit;
}

body.home .activador-cta-lateral::after {
  content: "›";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: inherit;
}

/* HOME — Evitar que WP Rocket Lazy Render oculte bloques bajo el hero */
body.home [data-wpr-lazyrender] {
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important;
}
/* ==========================================================
   HOME HERO — vídeo desktop/tablet con fallback móvil
   Permite el vídeo desde 768px y lo mantiene desactivado
   en móvil real. Va al final para pisar reglas previas
   de max-width: 991px y prefers-reduced-motion.
   ========================================================== */

@media (min-width: 768px) {
  body.home .aso-hero-home__video {
    display: block !important;
  }
}

@media (max-width: 767px) {
  body.home .aso-hero-home__video {
    display: none !important;
  }
}
