:root {
  --primary: #5e9da4;
  --primary-dark: #123333;
  --teal-950: #123333;
  --teal-850: #477f85;
  --teal-700: #5e9da4;
  --teal-soft: #eaf4f5;
  --pearl: #f6f8f8;
  --mist: #d8dede;
  --silver: #d8dede;
  --ink: #123333;
  --text: #123333;
  --muted: #6b7474;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(8, 63, 67, 0.12);
  --radius: 8px;
  --font: "Josefin Sans", sans-serif;
  --display: "Allura", cursive;
  --font-sans: var(--font);
  --font-serif: var(--font);
  --sans: var(--font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfc 48%, #f7f8f7 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(186, 197, 197, 0.5);
  box-shadow: 0 10px 28px rgba(8, 63, 67, 0.045);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--teal-950);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text small,
.brand span:not(.brand-logo):not(.brand-text) {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(186, 197, 197, 0.52);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(8, 63, 67, 0.08);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.brand-logo.is-placeholder::after {
  content: "DA";
  color: var(--teal-950);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
}

.main-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.88rem;
  color: #31464a;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  flex: 1 1 auto;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.header-actions {
  flex: 0 0 auto;
  gap: 10px;
}

.main-nav a {
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--teal-700);
}

.nav-whatsapp {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(18, 140, 126, 0.32);
  border-radius: 999px;
  color: #0f756d;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--teal-950);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-950), var(--teal-700));
  box-shadow: 0 14px 28px rgba(6, 63, 66, 0.22);
}

.btn-primary:hover {
  background: var(--teal-850);
}

.header-actions .btn-header {
  min-height: 36px;
  padding: 0 15px;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(6, 63, 66, 0.16);
}

.btn-outline {
  color: var(--teal-950);
  border-color: rgba(186, 197, 197, 0.88);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.btn-soft {
  color: var(--teal-950);
  background: var(--pearl);
  border-color: var(--mist);
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 58px 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 247, 0.94) 52%, rgba(230, 241, 240, 0.92) 100%),
    linear-gradient(180deg, transparent 0%, rgba(186, 197, 197, 0.16) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: 46px;
}

.eyebrow {
  display: inline-flex;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1,
.section-heading h2 {
  margin: 14px 0 18px;
  color: var(--teal-950);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.9vw, 4.35rem);
  max-width: 700px;
}

.hero-accent {
  display: inline-block;
  color: var(--teal-700);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

.hero p {
  max-width: 640px;
  font-size: 1.12rem;
  color: #496164;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
  max-width: 620px;
}

.hero-proof div {
  padding: 16px;
  border: 1px solid rgba(186, 197, 197, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.hero-proof strong {
  display: block;
  color: var(--teal-950);
}

.hero-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-image {
  position: relative;
  overflow: hidden;
  max-width: 430px;
  justify-self: end;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(8, 63, 67, 0.16);
  border: 10px solid rgba(255, 255, 255, 0.9);
  background: var(--white);
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-note {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 16px;
  color: var(--white);
  background: rgba(6, 63, 66, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: linear-gradient(180deg, var(--pearl), #ffffff);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.card,
.testimonial,
.faq-item,
.contact-panel,
.result-tile {
  border: 1px solid rgba(186, 197, 197, 0.56);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(8, 63, 67, 0.07);
}

.service-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--silver), var(--teal-700), transparent);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-950), var(--teal-700));
  border-radius: 50%;
  font-weight: 800;
}

.service-card h3,
.card h3 {
  margin: 0 0 10px;
  color: var(--teal-950);
}

.service-card p,
.card p,
.testimonial p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.portrait-panel {
  min-height: 390px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

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

.check-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--teal-700);
  background: var(--pearl);
  border-radius: var(--radius);
}

.card {
  overflow: hidden;
}

.card-media {
  min-height: 190px;
  background: linear-gradient(145deg, #eef4f3, #ffffff);
}

.card-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.visual {
  display: grid;
  place-items: center;
  min-height: 210px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 63, 67, 0.88), rgba(28, 116, 117, 0.68)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.16), transparent);
}

.visual span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-weight: 800;
}

.card-body {
  padding: 22px;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
}

.low-stock {
  color: #a33e42;
  font-weight: 800;
}

.benefit {
  margin-top: 14px !important;
  color: var(--teal-850) !important;
  font-weight: 700;
}

.promo-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 63, 67, 0.96), rgba(28, 116, 117, 0.86)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.16), transparent);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.promo-copy {
  padding: 28px;
}

.promo-copy .btn {
  margin-top: 22px;
}

.promo-price {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
}

.promo-media {
  min-height: 280px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
}

.promo-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.promo-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.result-tile {
  overflow: hidden;
}

.result-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
}

.result-visual span {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal-950);
  font-weight: 800;
}

.result-visual span:last-child {
  background: var(--teal-700);
}

.result-tile p {
  margin: 0;
  padding: 16px;
  color: var(--muted);
}

.testimonial {
  padding: 24px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(8, 63, 67, 0.12);
}

.stars {
  color: #c59a3a;
  letter-spacing: 0;
}

.testimonial strong {
  display: block;
  margin-top: 18px;
  color: var(--teal-950);
}

.booking-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  padding: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-950), var(--teal-850));
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.booking-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(183, 192, 192, 0.68);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-panel input,
.booking-panel select,
.booking-panel textarea {
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-panel {
  padding: 28px;
}

.map-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid rgba(186, 197, 197, 0.65);
  border-radius: var(--radius);
  color: var(--teal-950);
  background:
    linear-gradient(90deg, rgba(8,63,67,.08) 1px, transparent 1px),
    linear-gradient(rgba(8,63,67,.08) 1px, transparent 1px),
    #f7f8f7;
  background-size: 26px 26px;
  text-align: center;
  font-weight: 800;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  transform: translateY(-22px) rotate(45deg);
  border-radius: 50% 50% 50% 0;
  background: #e04b3f;
  box-shadow: 0 8px 18px rgba(8, 63, 67, 0.16);
}

.page-hero {
  padding: 72px 0 44px;
  background: var(--pearl);
}

.toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
}

.toolbar input {
  flex: 1;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--mist);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-950);
  cursor: pointer;
}

.chip.is-active {
  color: var(--white);
  background: var(--teal-950);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px;
}

.site-footer {
  padding: 52px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, #083f43, #052f32);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand h3 {
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 28px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: auto;
  height: 56px;
  padding: 0 18px 0 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #128c7e, #0b6f73);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(18, 140, 126, 0.3);
  font-weight: 900;
  gap: 8px;
}

.whatsapp-float::before {
  content: "\260E";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
  line-height: 1;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  background: var(--pearl);
  border-radius: var(--radius);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--mist);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links,
  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-links a {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: var(--radius);
  }

  .nav-links a:hover {
    background: var(--pearl);
  }

  .main-nav .btn,
  .main-nav .nav-whatsapp {
    width: 100%;
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .hero-image {
    justify-self: center;
    max-width: 430px;
  }

  .hero {
    min-height: auto;
  }

  .grid-3,
  .grid-4,
  .result-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1160px);
  }

  .hero {
    padding: 42px 0;
  }

  .section {
    padding: 58px 0;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-proof,
  .grid-3,
  .grid-4,
  .result-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .promo-band,
  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .promo-band {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .brand-text small {
    display: none;
  }

  .hero-actions .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .whatsapp-float {
    left: auto;
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .booking-panel {
    padding: 24px;
  }
}

/* Reference-style layout */
.site-main {
  padding: 22px 0 0;
}

.page-layout {
  width: min(1280px, calc(100% - 32px));
  display: block;
}

.main-column,
.side-column {
  min-width: 0;
}

.main-column {
  overflow: hidden;
  border: 1px solid rgba(186, 197, 197, 0.42);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(8, 63, 67, 0.075);
}

.side-column {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 88px;
}

.hero {
  min-height: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 86px 82px 50px;
  background:
    radial-gradient(circle at 82% 18%, rgba(223, 235, 232, 0.98) 0 24%, rgba(223, 235, 232, 0) 48%),
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.95) 0 22%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(105deg, #ffffff 0%, #fbfaf7 48%, #eef6f4 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% 4% auto auto;
  width: min(48vw, 560px);
  height: min(48vw, 560px);
  border-radius: 50%;
  background: rgba(28, 116, 117, 0.11);
  filter: blur(56px);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  right: 48px;
  bottom: -110px;
  width: 520px;
  height: 260px;
  border-radius: 50%;
  background: rgba(186, 197, 197, 0.28);
  filter: blur(48px);
  z-index: -1;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 500px);
  gap: 70px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.95rem, 4.7vw, 5rem);
  color: #173034;
}

.hero p {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  justify-self: end;
  overflow: visible;
  border: 0;
  border-radius: 32px;
  box-shadow: none;
  background: transparent;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -34px -42px -36px -26px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 52% 42%, rgba(28, 116, 117, 0.18), rgba(28, 116, 117, 0.06) 38%, transparent 68%);
  filter: blur(22px);
  z-index: -1;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}

.hero-note {
  display: none;
}

.hero-proof {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.hero-proof div {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 5px;
  min-height: 112px;
  padding: 16px 10px 14px;
  border: 1px solid rgba(186, 197, 197, 0.48);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 28px rgba(8, 63, 67, 0.055);
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-proof div::before {
  display: none;
}

.proof-icon {
  width: 38px;
  height: 38px;
  display: grid !important;
  place-items: center;
  margin-bottom: 4px;
  color: var(--primary);
  border: 1px solid rgba(28, 116, 117, 0.24);
  border-radius: 999px;
  background: rgba(230, 241, 240, 0.72);
}

.proof-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof strong {
  font-size: 0.82rem;
}

.hero-proof span {
  font-size: 0.75rem;
}

.section {
  padding: 38px 54px;
}

.compact-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.page-layout .section {
  padding: 48px 72px;
}

.page-layout .compact-section {
  padding-top: 38px;
  padding-bottom: 38px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
}

.text-link {
  color: var(--primary);
  font-size: 0.94rem;
  font-weight: 800;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.service-row .service-card {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 16px 10px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(8, 63, 67, 0.06);
}

.service-row .service-card::before {
  display: none;
}

.service-row .service-card h3 {
  margin: 8px 0 0;
  font-size: 0.83rem;
}

.service-icon {
  color: var(--primary);
  background: rgba(28, 116, 117, 0.07);
  border: 1px solid rgba(28, 116, 117, 0.28);
}

.home-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
  gap: 18px;
  padding: 0 72px 48px;
  background: #fff;
}

.home-highlight-grid .side-card {
  min-height: 100%;
}

.home-highlight-grid .side-hero-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px;
  text-align: left;
}

.home-highlight-grid .side-hero-card h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.home-highlight-grid .side-hero-card .btn {
  width: auto;
  margin-top: 18px;
}

.home-highlight-grid .side-treatment-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
}

.home-highlight-grid .side-treatment-visual {
  min-height: 250px;
}

.home-highlight-grid .side-benefits {
  align-content: center;
  grid-template-columns: 1fr;
  padding: 28px;
}

.about-band {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  background: linear-gradient(90deg, #f8fbfa 0 50%, #ffffff 50% 100%);
}

.clinic-photo {
  height: 260px;
  margin: 0;
  overflow: hidden;
}

.clinic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  padding: 34px 44px;
}

.about-copy h2 {
  margin: 8px 0 14px;
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.featured-treatment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-treatment-grid .card-media img,
.featured-treatment-grid .visual {
  height: 145px;
  min-height: 145px;
}

.featured-treatment-grid .card-body {
  padding: 14px;
  text-align: center;
}

.featured-treatment-grid .benefit,
.featured-treatment-grid .eyebrow {
  display: none;
}

.featured-treatment-grid .card p {
  font-size: 0.82rem;
}

.featured-treatment-grid .btn {
  min-height: 30px;
  margin-top: 10px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-strip .card-media img,
.product-strip .visual {
  height: 132px;
  min-height: 132px;
}

.product-strip .card-body {
  padding: 12px;
}

.product-strip .card p,
.product-strip .eyebrow {
  display: none;
}

.product-strip .card h3 {
  font-size: 0.88rem;
}

.product-strip .meta-row {
  margin: 10px 0;
  font-size: 0.82rem;
}

.product-strip .btn {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.78rem;
}

.promo-band {
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(8, 63, 67, 0.1);
}

.promo-month-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.promo-month-grid .side-promo-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
}

.promo-month-grid .side-promo-media,
.promo-month-grid .side-promo-media img {
  height: 132px;
}

.promo-month-grid .side-promo-media {
  grid-row: 1 / 5;
}

.promo-month-grid .side-promo-card h4 {
  margin-top: 0;
  font-size: 1rem;
}

.promo-month-grid .side-promo-card p {
  font-size: 0.86rem;
}

.promo-month-grid .side-promo-card .btn {
  width: auto;
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.8rem;
}

.result-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.result-visual {
  min-height: 90px;
}

.result-visual img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.result-tile p {
  padding: 10px;
  text-align: center;
  font-size: 0.78rem;
}

.small-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 16px;
  align-items: stretch;
}

.testimonial-feature {
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  text-align: center;
}

.testimonial-feature p {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.testimonial-layout [data-testimonials] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  box-shadow: none;
}

.reservation-section {
  background: linear-gradient(180deg, #ffffff, #f7fbfa);
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: stretch;
}

.booking-card {
  text-align: left;
}

.booking-card .btn {
  width: 100%;
}

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

.home-social-grid .side-card {
  min-width: 0;
}

.home-social-grid .side-newsletter,
.home-social-grid .side-card:last-child {
  grid-column: span 1;
}

.side-card {
  padding: 22px;
  border: 1px solid rgba(186, 197, 197, 0.42);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8, 63, 67, 0.07);
  text-align: center;
}

.side-card h2,
.side-card h3 {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-weight: 500;
}

.side-card p,
.side-card small {
  color: var(--muted);
}

.side-treatment-card {
  padding: 0;
  overflow: hidden;
}

.side-treatment-visual {
  min-height: 185px;
  background:
    linear-gradient(rgba(255,255,255,.08), rgba(255,255,255,.08)),
    url("../assets/demo/tratamientos/limpieza-facial.jpg") center / cover;
}

.side-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 18px 12px;
}

.side-benefits span {
  color: var(--text);
  font-size: 0.72rem;
}

.side-benefits span::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto 7px;
  border: 1px solid rgba(28, 116, 117, 0.5);
  border-radius: 50%;
}

.side-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.side-promo-card {
  padding: 8px;
  border: 1px solid rgba(186, 197, 197, 0.45);
  border-radius: 10px;
  background: #fff;
  text-align: left;
}

.side-promo-media,
.side-promo-media img {
  width: 100%;
  height: 92px;
  border-radius: 8px;
  object-fit: cover;
}

.side-promo-card h4 {
  margin: 8px 0 4px;
  font-size: 0.82rem;
}

.side-promo-card p {
  margin: 0 0 6px;
  font-size: 0.72rem;
}

.side-promo-card strong {
  display: block;
  color: var(--primary-dark);
  font-size: 0.82rem;
}

.side-promo-card .btn {
  width: 100%;
  min-height: 30px;
  margin-top: 8px;
  padding: 0 8px;
  font-size: 0.72rem;
}

.side-form {
  display: grid;
  gap: 10px;
  text-align: left;
}

.side-form .btn,
.newsletter-form .btn,
.side-card > .btn {
  width: 100%;
}

.home-highlight-grid .side-hero-card > .btn,
.promo-month-grid .side-promo-card > .btn {
  width: auto;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 14px 0;
}

.instagram-grid img,
.instagram-grid span {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  background: linear-gradient(135deg, #e7f1f0, #fff 45%, #d6e8e6);
}

.side-newsletter {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.side-newsletter h3,
.side-newsletter p {
  color: var(--white);
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  min-width: 0;
}

.mini-map {
  display: grid;
  place-items: center;
  min-height: 150px;
  margin-bottom: 14px;
  border-radius: 10px;
  color: var(--primary-dark);
  background:
    linear-gradient(90deg, rgba(8,63,67,.08) 1px, transparent 1px),
    linear-gradient(rgba(8,63,67,.08) 1px, transparent 1px),
    #f7f8f7;
  background-size: 24px 24px;
  font-weight: 800;
}

.bottom-benefits {
  padding: 20px 0;
  background: #ffffff;
}

.bottom-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bottom-benefits-grid div {
  display: grid;
  gap: 4px;
  color: var(--text);
}

.bottom-benefits-grid div::before {
  content: "";
  width: 32px;
  height: 32px;
  border: 1px solid rgba(28, 116, 117, 0.5);
  border-radius: 50%;
}

.bottom-benefits-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-grid {
  grid-template-columns: 1.15fr 1fr 1fr 0.7fr;
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}

.whatsapp-float {
  left: 22px;
  right: auto;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
}

.whatsapp-float::before,
.whatsapp-float span {
  display: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (max-width: 1180px) {
  .hero {
    padding: 66px 44px 40px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 34px;
  }

  .hero-image img {
    min-height: 500px;
  }

  .page-layout .section,
  .page-layout .compact-section {
    padding-left: 44px;
    padding-right: 44px;
  }

  .home-highlight-grid {
    padding-left: 44px;
    padding-right: 44px;
  }

  .page-layout {
    width: min(100% - 28px, 1160px);
  }

  .side-column {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero,
  .section,
  .compact-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-grid,
  .about-band,
  .home-highlight-grid,
  .home-highlight-grid .side-treatment-card,
  .reservation-layout,
  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .hero-image {
    justify-self: center;
    max-width: 460px;
  }

  .hero-image img {
    min-height: 500px;
  }

  .service-row,
  .featured-treatment-grid,
  .product-strip,
  .promo-month-grid,
  .home-social-grid,
  .result-grid,
  .bottom-benefits-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-main {
    padding-top: 10px;
  }

  .page-layout {
    width: min(100% - 18px, 1160px);
    gap: 12px;
  }

  .hero,
  .section,
  .compact-section {
    padding: 28px 16px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    min-height: 430px;
    border-width: 1px;
    border-radius: 24px;
  }

  .hero::before {
    width: 360px;
    height: 360px;
    inset: auto -90px 22% auto;
  }

  .hero-proof,
  .service-row,
  .featured-treatment-grid,
  .product-strip,
  .promo-month-grid,
  .promo-month-grid .side-promo-card,
  .home-social-grid,
  .result-grid,
  .bottom-benefits-grid,
  .footer-grid,
  .side-promos,
  .side-benefits,
  .testimonial-layout [data-testimonials] {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-highlight-grid {
    padding: 0 16px 28px;
  }

  .promo-month-grid .side-promo-media {
    grid-row: auto;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* Figma finish layer */
body {
  font-family: var(--font);
  color: var(--text);
  background: #eef3f3;
}

h1,
h2,
.brand-text,
.section-tag,
.testimonial-feature p,
.side-card h2,
.side-card h3,
.about-copy h2,
.page-hero h1,
.section-heading h2 {
  font-family: var(--display);
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(216, 222, 222, 0.88);
  box-shadow: 0 8px 24px rgba(18, 51, 51, 0.045);
}

.header-inner {
  min-height: 54px;
  gap: 18px;
}

.brand {
  gap: 8px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-color: rgba(34, 101, 111, 0.18);
  box-shadow: none;
}

.brand-text {
  color: var(--primary-dark);
  font-size: 1.02rem;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 2px;
  font-family: var(--font);
  font-size: 0.52rem;
  font-weight: 500;
  text-transform: none;
}

.main-nav {
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
}

.nav-links {
  gap: 18px;
}

.main-nav a {
  white-space: nowrap;
}

.nav-whatsapp,
.header-actions .btn-header {
  min-height: 30px;
  padding: 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: none;
}

.nav-whatsapp {
  border-color: rgba(34, 101, 111, 0.32);
  color: var(--primary);
}

.btn {
  min-height: 36px;
  padding: 0 16px;
  font-size: 0.84rem;
}

.page-layout {
  width: min(1180px, calc(100% - 28px));
}

.main-column {
  border-radius: 0;
  border-color: rgba(216, 222, 222, 0.82);
  box-shadow: 0 20px 44px rgba(18, 51, 51, 0.08);
}

.hero {
  padding: 30px 46px 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 251, 0.96) 42%, rgba(234, 244, 245, 0.96) 100%),
    radial-gradient(circle at 82% 20%, rgba(94, 157, 164, 0.22), transparent 38%);
}

.hero::before,
.hero::after {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 430px);
  gap: 34px;
}

.eyebrow {
  color: var(--primary);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.hero h1 {
  max-width: 560px;
  margin: 6px 0 14px;
  color: var(--primary-dark);
  font-size: clamp(2rem, 3.25vw, 2.9rem);
  font-weight: 600;
  line-height: 1.08;
}

.hero-accent {
  display: inline;
  color: var(--teal-700);
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
}

.hero p {
  max-width: 480px;
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.75;
}

.hero-actions {
  gap: 10px;
  margin-top: 18px;
}

.hero-actions .btn {
  min-height: 32px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.hero-proof {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 520px;
  margin-top: 18px;
}

.hero-proof div {
  min-height: 72px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.proof-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
  background: transparent;
  border-color: rgba(34, 101, 111, 0.28);
}

.proof-icon svg {
  width: 18px;
  height: 18px;
}

.hero-proof strong {
  font-size: 0.62rem;
  line-height: 1.15;
}

.hero-proof span {
  font-size: 0.58rem;
  line-height: 1.15;
}

.hero-image {
  max-width: 430px;
  align-self: end;
  border-radius: 0;
}

.hero-image::before {
  inset: 28px -18px 18px 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 157, 164, 0.18), transparent 64%);
  filter: blur(18px);
}

.hero-image img {
  min-height: 360px;
  height: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}

.home-highlight-grid {
  padding: 0 46px 18px;
  background: #ffffff;
}

.home-highlight-grid .side-hero-card {
  padding: 24px;
}

.home-highlight-grid .side-hero-card h2 {
  font-size: 1.52rem;
}

.home-highlight-grid .side-treatment-card {
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
}

.home-highlight-grid .side-treatment-visual {
  min-height: 200px;
}

.section,
.compact-section,
.page-layout .section,
.page-layout .compact-section {
  padding: 22px 46px;
}

.section-heading,
.section-heading.centered {
  justify-content: center;
  margin-bottom: 14px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
}

.section-tag {
  display: block;
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-row {
  gap: 14px;
}

.service-row .service-card {
  min-height: 92px;
  padding: 12px 8px;
  border-radius: 4px;
  border-color: rgba(216, 222, 222, 0.92);
  box-shadow: 0 8px 18px rgba(18, 51, 51, 0.055);
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  color: var(--primary);
  background: #f7fbfb;
  border-color: rgba(34, 101, 111, 0.32);
  font-size: 0.82rem;
}

.service-row .service-card h3 {
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.25;
}

.about-band {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  background: #f6f8f8;
}

.clinic-photo {
  height: 245px;
}

.about-copy {
  padding: 24px 36px;
}

.about-copy .section-tag {
  text-align: left;
}

.about-copy h2 {
  margin: 6px 0 10px;
  font-size: 1.82rem;
}

.about-copy p {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.58;
}

.about-copy .btn {
  margin-top: 6px;
}

.featured-treatment-grid,
.result-grid {
  gap: 14px;
}

.featured-treatment-grid .card,
.product-strip .card,
.result-tile {
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(18, 51, 51, 0.06);
}

.featured-treatment-grid .card-media,
.featured-treatment-grid .card-media img {
  height: 126px;
  min-height: 126px;
}

.featured-treatment-grid .card-body {
  padding: 12px;
}

.featured-treatment-grid .card h3 {
  margin-bottom: 5px;
  font-size: 0.78rem;
}

.featured-treatment-grid .card p {
  font-size: 0.68rem;
  line-height: 1.35;
}

.featured-treatment-grid .btn {
  min-height: 24px;
  padding: 0 10px;
  font-size: 0.64rem;
}

.product-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.product-strip .card-media,
.product-strip .card-media img {
  height: 118px;
  min-height: 118px;
}

.product-strip .card-media img {
  object-fit: contain;
  padding: 10px;
}

.product-strip .card-body {
  padding: 10px;
}

.product-strip .card h3 {
  min-height: 2.2em;
  margin-bottom: 4px;
  font-size: 0.68rem;
  line-height: 1.2;
}

.product-strip .meta-row {
  margin: 6px 0 0;
}

.product-strip .meta-row strong {
  font-size: 0.7rem;
}

.product-strip .meta-row span {
  display: none;
}

.product-strip .btn {
  min-height: 24px;
  margin-top: 6px;
  padding: 0 8px;
  font-size: 0.6rem;
}

.promo-band {
  border-radius: 6px;
}

.promo-month-grid .side-promo-card {
  border-radius: 6px;
}

.result-visual,
.result-visual img {
  height: 110px;
  min-height: 110px;
}

.testimonial-feature {
  background: linear-gradient(135deg, #5e9da4, var(--primary));
}

.testimonial-feature p {
  font-size: 1.2rem;
}

.side-card {
  border-radius: 6px;
}

.bottom-benefits {
  background: #ffffff;
  border-top: 1px solid rgba(216, 222, 222, 0.82);
}

.bottom-benefits-grid {
  gap: 10px;
}

.bottom-benefits-grid div {
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
}

.bottom-benefits-grid div::before {
  grid-row: span 2;
}

.bottom-benefits-grid strong {
  font-size: 0.76rem;
}

.bottom-benefits-grid span {
  font-size: 0.68rem;
}

.site-footer {
  padding: 30px 0 14px;
  background: linear-gradient(180deg, #5e9da4 0%, #22656f 100%);
}

.footer-grid {
  grid-template-columns: 1.1fr 1fr 1.1fr 0.8fr;
  gap: 22px;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  font-size: 0.9rem;
}

.site-footer p,
.footer-links,
.copyright {
  font-size: 0.72rem;
  line-height: 1.55;
}

.social-row span {
  background: rgba(255, 255, 255, 0.22);
}

.whatsapp-float {
  left: 18px;
  right: auto;
  bottom: 18px;
  background: #24c35a;
  box-shadow: 0 14px 28px rgba(36, 195, 90, 0.28);
}

@media (max-width: 1180px) {
  .page-layout {
    width: min(100% - 24px, 1120px);
  }

  .hero,
  .section,
  .compact-section,
  .page-layout .section,
  .page-layout .compact-section,
  .home-highlight-grid {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 28px;
  }

  .hero-image img {
    height: 350px;
    min-height: 350px;
  }

  .nav-links {
    gap: 12px;
  }
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 60px;
  }

  .main-nav {
    top: 60px;
    font-size: 0.86rem;
  }

  .main-nav .btn,
  .main-nav .nav-whatsapp {
    min-height: 38px;
    font-size: 0.82rem;
  }

  .hero-grid,
  .about-band,
  .home-highlight-grid,
  .home-highlight-grid .side-treatment-card,
  .reservation-layout,
  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
  }

  .hero h1,
  .hero p {
    max-width: none;
  }

  .hero-image {
    max-width: 420px;
    justify-self: center;
  }

  .service-row,
  .featured-treatment-grid,
  .product-strip,
  .result-grid,
  .bottom-benefits-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-copy .section-tag {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .page-layout {
    width: min(100% - 16px, 1120px);
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .brand-text small {
    display: block;
    font-size: 0.48rem;
  }

  .hero,
  .section,
  .compact-section,
  .page-layout .section,
  .page-layout .compact-section,
  .home-highlight-grid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-image img {
    height: 360px;
    min-height: 360px;
  }

  .service-row,
  .featured-treatment-grid,
  .product-strip,
  .promo-month-grid,
  .promo-month-grid .side-promo-card,
  .home-social-grid,
  .result-grid,
  .bottom-benefits-grid,
  .footer-grid,
  .side-promos,
  .side-benefits,
  .testimonial-layout [data-testimonials] {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding: 22px 18px;
  }

  .footer-grid {
    gap: 16px;
  }
}

/* Header/navbar refinement */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(216, 222, 222, 0.7);
  box-shadow: 0 6px 18px rgba(18, 51, 51, 0.035);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  min-width: 232px;
  gap: 10px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-color: rgba(34, 101, 111, 0.16);
  box-shadow: none;
}

.brand-text {
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: none;
}

.main-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--primary-dark);
  font-family: var(--font);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
}

.nav-links a {
  white-space: nowrap;
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.header-actions {
  flex: 0 0 142px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.header-actions .nav-whatsapp {
  display: none;
}

.header-actions .btn-header {
  min-height: 38px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #5e9da4;
  box-shadow: 0 8px 18px rgba(94, 157, 164, 0.18);
  font-family: var(--font);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.header-actions .btn-header:hover {
  background: #529199;
  box-shadow: 0 10px 22px rgba(94, 157, 164, 0.22);
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .brand {
    min-width: 214px;
  }

  .main-nav,
  .nav-links {
    gap: 16px;
  }
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 62px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-text small {
    display: block;
    font-size: 0.52rem;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    border-radius: 999px;
  }

  .main-nav {
    top: 62px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    border-radius: 10px;
    font-size: 0.84rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-links {
    align-items: stretch;
    gap: 6px;
  }

  .header-actions {
    flex: 0 0 auto;
    width: 100%;
  }

  .header-actions .btn-header {
    width: 100%;
    min-height: 40px;
    font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .container.header-inner {
    width: min(100% - 18px, 1160px);
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .brand-text small {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Hero final reference */
.hero {
  min-height: 0;
  padding: 46px 54px 36px;
  background:
    radial-gradient(circle at 84% 18%, rgba(94, 157, 164, 0.14), transparent 34%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 46%, #f6f8f8 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  min-width: 0;
}

.hero .eyebrow {
  color: #22656f;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 14px 0 16px;
  color: #123333;
  font-family: var(--display);
  font-size: clamp(2.55rem, 4.2vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
}

.hero-accent {
  display: inline;
  color: #5e9da4;
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
}

.hero p {
  max-width: 560px;
  margin: 0;
  color: #123333;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
}

.hero-benefits {
  max-width: 540px;
  margin: 24px 0 22px;
}

.hero-benefits img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.hero-actions .btn {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.hero-actions .hero-primary {
  color: #ffffff;
  background: #5e9da4;
  border-color: #5e9da4;
  box-shadow: 0 12px 24px rgba(94, 157, 164, 0.2);
}

.hero-actions .hero-primary:hover {
  background: #529199;
  border-color: #529199;
}

.hero-actions .hero-whatsapp {
  gap: 8px;
  color: #123333;
  background: #ffffff;
  border-color: rgba(18, 51, 51, 0.34);
  box-shadow: none;
}

.hero-actions .hero-whatsapp span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #ffffff;
  background: #25d366;
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 800;
}

.hero-actions .hero-whatsapp .whatsapp-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 430px;
  justify-self: end;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 12% -8% 4% 4%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 157, 164, 0.2), transparent 68%);
  filter: blur(22px);
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}

@media (max-width: 1180px) {
  .hero {
    padding: 42px 36px 34px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 4vw, 3.25rem);
  }
}

@media (max-width: 920px) {
  .hero {
    padding: 36px 24px 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1,
  .hero p,
  .hero-benefits {
    max-width: none;
  }

  .hero-image {
    justify-self: center;
    max-width: 430px;
  }

  .hero-image img {
    height: 440px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 30px 14px 28px;
  }

  .hero h1 {
    font-size: 2.16rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero-benefits {
    margin: 20px 0 18px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 40px;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    height: 370px;
    object-position: center top;
  }
}

/* Hero wide correction */
.main-column:has(> .hero:first-child) {
  overflow: visible;
}

.hero {
  position: relative;
  left: 50%;
  width: min(1380px, 100vw);
  min-height: 0;
  margin: 0;
  padding: 0;
  background: #f6f8f8;
  overflow: hidden;
  transform: translateX(-50%);
}

.hero-container {
  width: 100%;
  margin: 0 auto;
  min-height: 748px;
  padding: 58px 44px 52px;
  position: relative;
  isolation: isolate;
}

.hero-grid {
  display: block;
  min-height: 0;
  position: static;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 640px;
}

.hero .eyebrow {
  display: none;
  color: #22656f;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 630px;
  margin: 0 0 24px;
  color: #5e9da4;
  font-family: var(--display);
  font-size: clamp(3rem, 4.05vw, 4.35rem);
  font-weight: 600;
  line-height: 1.03;
}

.hero-accent {
  display: inline;
  color: #5e9da4;
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
}

.hero-strong {
  color: #050505;
}

.hero p {
  max-width: 560px;
  margin: 0;
  color: #1d2f31;
  font-family: var(--font);
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.85;
}

.hero-benefits {
  width: 100%;
  max-width: 620px;
  margin: 14px 0 28px;
}

.hero-benefits-img,
.hero-benefits img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-top: 0;
}

.hero-actions .btn {
  min-height: 44px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.hero-actions .hero-primary {
  color: #ffffff;
  background: #5e9da4;
  border-color: #5e9da4;
  box-shadow: 0 12px 24px rgba(94, 157, 164, 0.18);
  min-width: 190px;
}

.hero-actions .hero-primary:hover {
  background: #529199;
  border-color: #529199;
}

.hero-actions .hero-whatsapp {
  gap: 8px;
  color: #123333;
  background: #ffffff;
  border-color: rgba(18, 51, 51, 0.34);
  box-shadow: none;
  min-width: 280px;
}

.hero-actions .hero-whatsapp span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #ffffff;
  background: #25d366;
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 800;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-image::before {
  display: none;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center center;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 900px) {
  .hero-container {
    min-height: auto;
    padding: 54px 28px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1,
  .hero p,
  .hero-benefits {
    max-width: none;
  }

  .hero-image {
    position: relative;
    inset: auto;
    z-index: 0;
    max-width: 820px;
    justify-self: center;
    overflow: visible;
  }

  .hero-doctor-img,
  .hero-visual img,
  .hero-image img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 600px) {
  .hero-container {
    padding: 36px 18px 34px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 0.92rem;
  }

  .hero-benefits,
  .hero-benefits-img,
  .hero-benefits img {
    max-width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 42px;
  }

  .hero-image {
    max-width: 100%;
  }
}

/* Post-hero reference sections */
.home-highlight-grid {
  display: none;
}

#servicios.section,
.about-band {
  position: relative;
  left: 50%;
  width: min(1380px, 100vw);
  margin-left: 0;
  margin-right: 0;
  transform: translateX(-50%);
}

#servicios.section {
  padding: 0 22px 18px;
  background: #dedede;
}

#servicios .section-heading {
  display: flex;
  justify-content: center;
  margin: 0 0 8px;
  padding: 12px 0 4px;
  text-align: center;
}

#servicios .section-tag,
.about-title-bar {
  display: block;
  color: #050505;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2vw, 2.05rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: center;
}

#servicios .service-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 34px;
  max-width: 1240px;
  margin: 0 auto;
}

#servicios .service-card {
  min-height: 136px;
  padding: 16px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 4px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: 0 4px 12px rgba(18, 51, 51, 0.08);
  text-align: center;
}

#servicios .service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  color: #1597a0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
}

#servicios .service-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#servicios .service-card:first-child {
  border: 2px solid #1e9eff;
}

#servicios .service-card h3 {
  margin: 0;
  color: #1d2f31;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: stretch;
  background: #f7f7f7;
}

.about-title-bar {
  grid-column: 1 / -1;
  padding: 12px 0;
  background: #dedede;
}

.clinic-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0;
  overflow: hidden;
  background: #eef3f3;
}

.clinic-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.about-copy {
  padding: 28px 48px;
  background: #f7f7f7;
}

.about-kicker {
  display: block;
  margin: 0 0 4px;
  color: #5e9da4;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.about-copy h2 {
  margin: 0 0 14px;
  color: #050505;
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
}

.about-copy p {
  max-width: 760px;
  margin: 0 0 14px;
  color: #2f3f42;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.35;
}

.about-copy .btn {
  display: none;
}

@media (max-width: 980px) {
  #servicios .service-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .about-band {
    grid-template-columns: 1fr;
  }

  .clinic-photo {
    width: min(420px, 100%);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  #servicios.section {
    padding: 0 14px 16px;
  }

  #servicios .service-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #servicios .section-tag,
  .about-title-bar {
    font-size: 1.42rem;
  }

  .about-copy {
    padding: 24px 18px;
  }
}

/* Lower reference layout */
[hidden] {
  display: none !important;
}

#blog,
.reservation-section,
.bottom-benefits {
  display: none !important;
}

.main-column > .compact-section,
.site-footer {
  position: relative;
  left: 50%;
  width: min(1380px, 100vw);
  margin: 0;
  transform: translateX(-50%);
}

.main-column > .compact-section {
  padding: 0 12px 18px;
  background: #dedede;
}

.main-column > .compact-section .section-heading {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 14px 0 10px;
  text-align: center;
}

.main-column > .compact-section .section-tag {
  color: #050505;
  font-family: var(--display);
  font-size: clamp(1.65rem, 1.85vw, 1.95rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.main-column > .compact-section .text-link,
.main-column > .compact-section .center-actions,
.main-column > .compact-section .small-note {
  display: none;
}

.featured-treatment-grid,
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1348px;
  margin: 0 auto;
}

.featured-treatment-grid .card,
.result-tile {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(18, 51, 51, 0.12);
}

.featured-treatment-grid .card:nth-child(n + 5),
.result-grid .result-tile:nth-child(n + 5),
.product-strip .product-card:nth-child(n + 6) {
  display: none;
}

.featured-treatment-grid .card:first-child {
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.featured-treatment-grid .card-media,
.featured-treatment-grid .card-media img {
  height: 142px;
  min-height: 142px;
}

.featured-treatment-grid .card-media img {
  width: 100%;
  object-fit: cover;
}

.featured-treatment-grid .card-body {
  position: relative;
  padding: 20px 14px 12px;
  text-align: center;
}

.featured-treatment-grid .card-body::before {
  display: none;
  content: none;
}

.featured-treatment-grid .card h3 {
  margin: 0 0 7px;
  color: #123333;
  font-family: var(--display);
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.08;
}

.featured-treatment-grid .card p {
  margin: 0 auto;
  max-width: 230px;
  color: #6b7474;
  font-size: 0.6rem;
  line-height: 1.28;
}

.featured-treatment-grid .benefit,
.featured-treatment-grid .eyebrow {
  display: none;
}

.featured-treatment-grid .btn {
  min-height: 22px;
  margin-top: 9px;
  padding: 0 18px;
  color: #ffffff;
  background: #1d8388;
  border: 0;
  font-size: 0.58rem;
  box-shadow: none;
}

.result-grid .result-tile {
  padding: 0 0 15px;
}

.result-visual,
.result-visual img {
  width: 100%;
  height: 180px;
  min-height: 180px;
}

.result-visual img {
  object-fit: cover;
}

.result-tile p {
  margin: 0;
  padding: 12px 10px 4px;
  color: #123333;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.result-tile::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  margin: 2px auto 0;
  background: #d19a49;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 86px;
  max-width: 1250px;
  margin: 0 auto;
}

.product-strip .product-card {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(18, 51, 51, 0.12);
}

.product-strip .card-media,
.product-strip .card-media img {
  height: 104px;
  min-height: 104px;
}

.product-strip .card-media img {
  object-fit: contain;
  padding: 10px 16px 4px;
}

.product-strip .card-body {
  padding: 8px 8px 10px;
  text-align: center;
}

.product-strip .card h3 {
  min-height: 0;
  margin: 0 0 4px;
  color: #123333;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.05;
}

.product-strip .card p,
.product-strip .eyebrow,
.product-strip .btn,
.product-strip .meta-row span {
  display: none;
}

.product-strip .meta-row {
  display: block;
  margin: 0;
}

.product-strip .meta-row strong {
  color: #123333;
  font-size: 0.68rem;
  font-weight: 500;
}

.product-strip.is-product-carousel .product-card {
  animation: productCarouselIn 480ms ease both;
}

@keyframes productCarouselIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.promo-admin-section {
  display: block !important;
}

.promo-admin-section .promo-band {
  max-width: 1180px;
  margin: 0 auto 16px;
  background:
    linear-gradient(135deg, rgba(94, 157, 164, 0.96), rgba(71, 127, 133, 0.92)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.18), transparent);
  box-shadow: 0 18px 42px rgba(94, 157, 164, 0.18);
}

.promo-admin-section .promo-copy {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.promo-admin-section .promo-copy h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 2.7vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
}

.promo-admin-section .promo-copy p {
  max-width: 560px;
  margin: 0 0 22px;
  font-size: 1.15rem;
  line-height: 1.55;
}

.promo-admin-section .promo-price {
  align-items: center;
  min-height: 44px;
  margin-top: 0;
  margin-right: 8px;
  padding: 0 18px;
  font-size: 1.05rem;
  font-weight: 800;
}

.promo-admin-section .promo-copy .btn {
  min-height: 44px;
  margin-top: 0;
  padding: 0 22px;
  font-size: 0.92rem;
}

.promo-admin-section .promo-month-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.section-subtitle {
  max-width: 760px;
  margin: 8px auto 0;
  color: #477f85;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  padding: 26px 18px 0;
  color: #ffffff;
  background: #65a8ad;
}

.footer-grid {
  width: min(1320px, 100%);
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 0.78fr 1.55fr;
  gap: 22px;
  margin: 0 auto;
  align-items: start;
}

.footer-grid > div {
  min-height: 142px;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-grid > div:first-child {
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 0;
}

.footer-brand {
  gap: 14px;
}

.footer-brand .brand-logo {
  width: 74px;
  height: 74px;
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-grid > div:first-child p {
  display: none;
}

.site-footer h4 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 2px;
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer-links a[href="admin/login.html"] {
  display: none;
}

.social-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-row span,
.social-row a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  border-radius: 50%;
  background: #123333;
  font-weight: 800;
}

.social-row span:nth-child(2),
.social-row a:nth-child(2) {
  background: #2374df;
}

.social-row span:nth-child(3),
.social-row a:nth-child(3) {
  background: linear-gradient(135deg, #f8c13f, #d7327c 55%, #6c4bd8);
}

.site-footer p {
  margin: 0;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.35;
}

.footer-contact-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1.25;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: start;
  gap: 6px;
}

.footer-contact-list li > span:first-child {
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: #2bbf69;
}

.footer-contact-list li > span:last-child {
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-map {
  display: grid;
  place-items: center;
  width: 190px;
  height: 88px;
  margin-top: 8px;
  color: #34636a;
  background:
    linear-gradient(90deg, rgba(34, 101, 111, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(34, 101, 111, 0.14) 1px, transparent 1px),
    #e8efef;
  background-size: 18px 18px;
  font-size: 0.7rem;
  font-weight: 700;
}

.copyright {
  width: min(1320px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 12px auto 0;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  font-size: 0.78rem;
}

.copyright span:nth-child(2) {
  text-align: center;
}

.copyright span:last-child {
  text-align: right;
}

@media (max-width: 980px) {
  .featured-treatment-grid,
  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 720px;
  }

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

@media (max-width: 620px) {
  .featured-treatment-grid,
  .result-grid,
  .product-strip,
  .footer-grid,
  .copyright {
    grid-template-columns: 1fr;
  }

  .footer-grid > div,
  .footer-grid > div:first-child {
    border-left: 0;
    padding: 0;
  }

  .copyright span,
  .copyright span:nth-child(2),
  .copyright span:last-child {
    text-align: left;
  }
}

/* Scroll reveal animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero-image.reveal-on-scroll,
.clinic-photo.reveal-on-scroll {
  transform: translateX(28px) scale(0.99);
}

.hero-image.reveal-on-scroll.is-visible,
.clinic-photo.reveal-on-scroll.is-visible {
  transform: translateX(0) scale(1);
}

.hero-copy.reveal-on-scroll,
.about-copy.reveal-on-scroll {
  transform: translateX(-26px);
}

.hero-copy.reveal-on-scroll.is-visible,
.about-copy.reveal-on-scroll.is-visible {
  transform: translateX(0);
}

.service-card.reveal-on-scroll,
.featured-treatment-grid .card.reveal-on-scroll,
.result-grid .result-tile.reveal-on-scroll,
.product-strip .product-card.reveal-on-scroll {
  transform: translateY(28px) scale(0.96);
}

.service-card.reveal-on-scroll.is-visible,
.featured-treatment-grid .card.reveal-on-scroll.is-visible,
.result-grid .result-tile.reveal-on-scroll.is-visible,
.product-strip .product-card.reveal-on-scroll.is-visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none !important;
    filter: none;
    transition: none;
  }
}

/* Footer reference polish */
.site-footer {
  padding: 30px 0 0;
  background: #65a8ad;
}

.site-footer .footer-grid {
  width: min(1320px, calc(100% - 28px));
  grid-template-columns: 1.25fr 0.95fr 1.05fr 1.35fr;
  gap: 0;
  align-items: center;
}

.site-footer .footer-grid > div {
  min-height: 172px;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.62);
}

.site-footer .footer-grid > div:first-child {
  justify-content: center;
  border-left: 0;
}

.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer .footer-brand .brand-logo {
  width: 104px;
  height: 104px;
  border: 3px solid #ffffff;
  background: rgba(18, 51, 51, 0.12);
}

.site-footer .footer-brand h3 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1;
}

.site-footer .footer-brand + p {
  display: block;
  margin: 6px 0 0 122px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 0.9rem;
  line-height: 1.1;
}

.site-footer h4 {
  margin: 0 0 18px;
  font-size: 1.52rem;
  line-height: 1;
}

.site-footer .footer-links {
  gap: 4px;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.05;
}

.site-footer .social-row {
  gap: 22px;
  padding-top: 26px;
}

.site-footer .social-row a {
  width: 64px;
  height: 64px;
  color: #ffffff;
  box-shadow: none;
}

.site-footer .social-row svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.site-footer .social-tiktok {
  background: #03070a;
}

.site-footer .social-facebook {
  background: #2374df;
}

.site-footer .social-instagram {
  background: radial-gradient(circle at 30% 105%, #feda75 0 22%, #fa7e1e 36%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.site-footer .footer-contact-list {
  gap: 5px;
  font-family: var(--display);
  font-size: 0.92rem;
  line-height: 1.1;
}

.site-footer .footer-contact-list li {
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 6px;
}

.site-footer .footer-contact-list li > span:first-child {
  width: 14px;
  height: 14px;
  margin-top: 0;
  border: 2px solid #ffffff;
  background: #2bbf69;
}

.site-footer .footer-map {
  position: relative;
  display: block;
  width: 190px;
  height: 100px;
  margin-top: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 0;
  background: #e8efef;
}

.site-footer .footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.site-footer .footer-map a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.site-footer .footer-map:hover {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

/* Bigger product cards on home */
.main-column .product-strip {
  max-width: 1320px;
  gap: 72px;
}

.main-column .product-strip .product-card {
  min-height: 190px;
  border-radius: 8px;
}

.main-column .product-strip .card-media,
.main-column .product-strip .card-media img {
  height: 128px;
  min-height: 128px;
}

.main-column .product-strip .card-media img {
  padding: 10px 18px 6px;
}

.main-column .product-strip .card-body {
  padding: 10px 10px 14px;
}

.main-column .product-strip .card h3 {
  font-size: 0.82rem;
  line-height: 1.12;
}

.main-column .product-strip .meta-row strong {
  font-size: 0.76rem;
}

.site-footer .copyright {
  width: 100%;
  max-width: none;
  margin-top: 16px;
  padding: 10px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .site-footer .footer-grid > div {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding-top: 24px;
  }

  .site-footer .footer-grid,
  .site-footer .copyright {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-grid > div {
    padding: 18px 4px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }

  .site-footer .footer-grid > div:first-child {
    border-top: 0;
  }

  .site-footer .footer-brand + p {
    margin-left: 0;
    text-align: center;
  }

  .site-footer .social-row {
    padding-top: 6px;
  }

  .site-footer .copyright {
    padding: 12px 18px;
    gap: 6px;
  }
}

/* Treatment cards cleanup */
.featured-treatment-grid .card:first-child {
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
}

.featured-treatment-grid .card-body::before {
  display: none !important;
  content: none !important;
}

/* WhatsApp hero button polish */
.hero-actions .hero-whatsapp {
  align-items: center;
  justify-content: center;
  gap: 14px;
  line-height: 1;
}

.hero-actions .hero-whatsapp .whatsapp-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  color: #ffffff;
  background: #25d366;
  border-radius: 50%;
  line-height: 0;
}

.hero-actions .hero-whatsapp .whatsapp-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

/* Hero benefits without image background */
.hero-benefits {
  width: 100%;
  max-width: 620px;
  margin: 20px 0 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  background: transparent !important;
  perspective: 1000px;
}

.hero-benefit {
  min-width: 0;
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  gap: 9px;
  min-height: 132px;
  padding: 18px 12px 16px;
  color: #123333;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 250, 0.76)),
    radial-gradient(circle at 50% 0%, rgba(94, 157, 164, 0.18), transparent 62%);
  box-shadow:
    0 18px 36px rgba(18, 51, 51, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-family: var(--display);
  font-size: clamp(0.9rem, 1vw, 1.04rem);
  font-weight: 500;
  line-height: 1.14;
  text-align: center;
  transform: translateY(12px) rotateX(8deg);
  transform-style: preserve-3d;
  animation: benefitFloatIn 0.72s ease forwards;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-benefit:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-benefit:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-benefit:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), transparent 48%);
  opacity: 0.9;
}

.hero-benefit::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -10px;
  height: 18px;
  z-index: -2;
  border-radius: 999px;
  background: rgba(18, 51, 51, 0.18);
  filter: blur(14px);
  opacity: 0.5;
}

.hero-benefit:hover {
  border-color: rgba(94, 157, 164, 0.42);
  box-shadow:
    0 24px 48px rgba(18, 51, 51, 0.15),
    0 8px 18px rgba(94, 157, 164, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-5px) rotateX(0deg);
}

.hero-benefit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #168c94;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, rgba(94, 157, 164, 0.14), rgba(94, 157, 164, 0.05));
  box-shadow:
    0 10px 22px rgba(94, 157, 164, 0.18),
    inset 0 0 0 1px rgba(94, 157, 164, 0.16);
  transform: translateZ(18px);
}

.hero-benefit-icon svg {
  width: 38px;
  height: 38px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefit span:last-child {
  transform: translateZ(12px);
}

@keyframes benefitFloatIn {
  from {
    opacity: 0;
    transform: translateY(18px) rotateX(12deg) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}

@media (max-width: 700px) {
  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .hero-benefit {
    min-height: 124px;
    padding: 16px 10px 14px;
  }
}

/* Responsive final para presentacion: celular y tablet */
html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

img,
video,
iframe {
  max-width: 100%;
}

.site-header,
.hero,
.main-column,
.section,
.site-footer,
.page-hero,
.products-page,
.contact-page {
  max-width: 100%;
}

@media (max-width: 1180px) {
  .container,
  .header-inner,
  .footer-grid,
  .footer-legal-bar {
    width: min(100% - 32px, 1120px) !important;
  }

  .hero-copy {
    max-width: min(680px, 58vw) !important;
    padding-left: clamp(28px, 5vw, 72px) !important;
  }

  .hero-copy h1 {
    font-size: clamp(4.2rem, 7vw, 6.6rem) !important;
    line-height: 0.98 !important;
  }

  .hero-copy p[data-hero-text],
  .hero-copy p {
    max-width: 680px !important;
  }

  .grid.grid-3,
  .products-grid,
  [data-products-grid],
  [data-treatments-grid] {
    gap: 22px !important;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 62px !important;
    padding: 8px 0 !important;
    gap: 12px !important;
  }

  .brand {
    min-width: 0 !important;
  }

  .brand-logo {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }

  .brand-name {
    font-size: 1.05rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .brand-subtitle {
    font-size: 0.58rem !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .nav-toggle {
    display: inline-grid !important;
    place-items: center !important;
    width: 42px !important;
    height: 42px !important;
    margin-left: auto !important;
  }

  .main-nav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-height: calc(100vh - 88px) !important;
    overflow-y: auto !important;
    padding: 14px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(94, 157, 164, 0.22) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 22px 54px rgba(18, 51, 51, 0.14) !important;
  }

  .main-nav.is-open {
    display: flex !important;
  }

  .nav-links,
  .header-actions {
    width: 100% !important;
    gap: 8px !important;
  }

  .nav-links a,
  .main-nav .btn,
  .main-nav .btn-header,
  .main-nav .nav-whatsapp {
    width: 100% !important;
    min-height: 42px !important;
    justify-content: center !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
  }

  .hero {
    min-height: auto !important;
    padding: 38px 0 48px !important;
    background-size: cover !important;
    background-position: center right !important;
  }

  .hero-copy {
    width: min(100% - 32px, 700px) !important;
    max-width: min(100% - 32px, 700px) !important;
    padding: 54px 18px 48px !important;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 9vw, 5.2rem) !important;
    line-height: 0.98 !important;
  }

  .hero-copy p[data-hero-text],
  .hero-copy p {
    font-size: clamp(1rem, 2.4vw, 1.18rem) !important;
    line-height: 1.55 !important;
  }

  .hero .hero-actions {
    gap: 14px !important;
    flex-wrap: wrap !important;
  }

  .hero-actions .btn.hero-primary,
  .hero-actions a.hero-primary,
  .hero-actions .btn.hero-whatsapp,
  .hero-actions a.hero-whatsapp {
    min-height: 52px !important;
    padding: 0 28px !important;
    font-size: 0.98rem !important;
  }

  .section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .grid.grid-3,
  .products-grid,
  [data-products-grid],
  [data-treatments-grid] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .product-toolbar,
  .toolbar.product-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr) !important;
    width: min(100% - 32px, 980px) !important;
    gap: 14px !important;
  }

  #sobre-mi.about-band,
  section#sobre-mi.about-band,
  .main-column > section#sobre-mi.about-band {
    min-height: 620px !important;
    overflow: hidden !important;
  }

  #sobre-mi .clinic-photo img {
    object-fit: cover !important;
    object-position: left center !important;
  }

  #sobre-mi .about-copy {
    width: min(100%, 680px) !important;
    max-width: 680px !important;
    margin-left: clamp(280px, 39vw, 430px) !important;
    padding: 70px 24px !important;
  }

  #sobre-mi .about-copy h2 {
    font-size: clamp(4rem, 7vw, 6rem) !important;
  }

  #sobre-mi .about-copy p {
    font-size: clamp(1.04rem, 2vw, 1.22rem) !important;
    line-height: 1.58 !important;
  }

  .site-footer .footer-grid,
  footer.site-footer .footer-grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr !important;
    gap: 28px !important;
  }
}

@media (max-width: 760px) {
  .container,
  .header-inner,
  .footer-grid,
  .footer-legal-bar {
    width: min(100% - 24px, 100%) !important;
  }

  .brand-name {
    font-size: 0.95rem !important;
  }

  .brand-subtitle {
    max-width: 150px !important;
    white-space: normal !important;
  }

  .hero {
    padding-top: 20px !important;
    padding-bottom: 34px !important;
    background-position: 63% center !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding: 44px 22px 420px !important;
  }

  .hero-copy h1 {
    font-size: clamp(3.05rem, 13vw, 4.4rem) !important;
    max-width: 11ch !important;
  }

  .hero-copy p[data-hero-text],
  .hero-copy p {
    max-width: 34rem !important;
    font-size: 1rem !important;
  }

  .hero .hero-actions {
    width: 100% !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .hero-actions .btn.hero-primary,
  .hero-actions a.hero-primary,
  .hero-actions .btn.hero-whatsapp,
  .hero-actions a.hero-whatsapp {
    width: 100% !important;
    min-height: 52px !important;
    justify-content: center !important;
  }

  .section-title,
  .section-title.clean-title,
  .page-section-title {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    line-height: 1.05 !important;
  }

  .grid.grid-3,
  .products-grid,
  [data-products-grid],
  [data-treatments-grid] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .treatment-card,
  .product-card,
  .service-card {
    width: 100% !important;
    min-width: 0 !important;
  }

  .treatment-card .card-body,
  .product-card .card-body {
    min-height: auto !important;
    padding: 22px !important;
  }

  .treatment-card .service-whatsapp-cta,
  .treatment-card .btn.btn-outline,
  .product-card .product-whatsapp-cta,
  .product-card .btn.btn-outline {
    width: 100% !important;
    margin-top: 20px !important;
    justify-content: center !important;
  }

  .product-toolbar,
  .toolbar.product-toolbar {
    grid-template-columns: 1fr !important;
    width: min(100% - 24px, 100%) !important;
  }

  .product-toolbar .product-search-input,
  .product-toolbar select {
    width: 100% !important;
    min-height: 48px !important;
  }

  #sobre-mi.about-band,
  section#sobre-mi.about-band,
  .main-column > section#sobre-mi.about-band {
    min-height: 720px !important;
  }

  #sobre-mi .clinic-photo img {
    object-position: 22% center !important;
    opacity: 0.32 !important;
  }

  #sobre-mi .about-copy {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 720px !important;
    margin-left: 0 !important;
    padding: 82px 24px 52px !important;
    background: linear-gradient(90deg, rgba(255,255,255,0.84), rgba(255,255,255,0.66), rgba(255,255,255,0.46)) !important;
  }

  #sobre-mi .about-kicker {
    font-size: 1.25rem !important;
  }

  #sobre-mi .about-copy h2 {
    font-size: clamp(3.4rem, 13vw, 4.8rem) !important;
  }

  #sobre-mi .about-copy p {
    max-width: 100% !important;
    font-size: 1rem !important;
  }

  .site-footer,
  footer.site-footer {
    padding-top: 32px !important;
  }

  .site-footer .footer-grid,
  footer.site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: center !important;
  }

  .site-footer .footer-brand,
  .site-footer .social-row,
  .site-footer .footer-contact-list {
    justify-content: center !important;
  }

  .site-footer .footer-contact-list li {
    justify-content: center !important;
  }

  .site-footer .footer-legal-bar,
  footer.site-footer .footer-legal-bar,
  .site-footer .copyright,
  footer.site-footer .container.copyright {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
  }

  .brand-logo {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }

  .brand-name {
    font-size: 0.82rem !important;
  }

  .brand-subtitle {
    font-size: 0.5rem !important;
    max-width: 132px !important;
  }

  .hero-copy {
    padding: 34px 18px 360px !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.45rem) !important;
    line-height: 1 !important;
  }

  .hero-copy p[data-hero-text],
  .hero-copy p {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
  }

  .hero-actions .btn.hero-primary,
  .hero-actions a.hero-primary,
  .hero-actions .btn.hero-whatsapp,
  .hero-actions a.hero-whatsapp {
    min-height: 50px !important;
    padding: 0 18px !important;
    font-size: 0.9rem !important;
  }

  .hero-actions .btn.hero-whatsapp .whatsapp-icon,
  .hero-actions a.hero-whatsapp .whatsapp-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
  }

  .section {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }

  #sobre-mi.about-band,
  section#sobre-mi.about-band,
  .main-column > section#sobre-mi.about-band,
  #sobre-mi .about-copy {
    min-height: 760px !important;
  }

  #sobre-mi .about-copy {
    padding: 68px 18px 46px !important;
  }

  #sobre-mi .about-kicker {
    font-size: 1.15rem !important;
  }

  #sobre-mi .about-copy h2 {
    font-size: clamp(3rem, 15vw, 4rem) !important;
  }

  .treatment-card h3,
  .product-card h3 {
    font-size: 1.45rem !important;
  }

  body a.whatsapp-float,
  .whatsapp-float {
    right: 14px !important;
    bottom: 16px !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
  }

  body a.whatsapp-float svg,
  .whatsapp-float svg {
    width: 25px !important;
    height: 25px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-benefit {
    animation: none;
    transform: none;
  }

  .hero-benefit:hover {
    transform: none;
  }
}

/* Promo section refined reset */
.promo-admin-section .promo-copy {
  min-height: auto !important;
  display: block !important;
  padding: 34px 44px !important;
}

.promo-admin-section .promo-copy h2 {
  margin: 0 0 18px !important;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.25vw, 2.45rem) !important;
  font-weight: 600;
  line-height: 1.08;
}

.promo-admin-section .promo-copy p {
  max-width: 560px;
  margin: 0 0 20px !important;
  font-size: 1.08rem !important;
  line-height: 1.55;
}

.promo-admin-section .promo-price {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center;
  margin: 0 10px 0 0 !important;
  padding: 0 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-size: 1rem !important;
  font-weight: 800;
}

.promo-admin-section .promo-copy .btn {
  min-height: 38px !important;
  display: inline-flex !important;
  margin: 0 !important;
  padding: 0 22px !important;
  color: #ffffff !important;
  border-color: #5E9DA4 !important;
  background: #5E9DA4 !important;
  font-size: 0.88rem !important;
  box-shadow: none !important;
}

.promo-admin-section .side-promo-card .btn,
.promo-month-grid .side-promo-card .btn {
  color: #ffffff !important;
  border-color: #5E9DA4 !important;
  background: #5E9DA4 !important;
  box-shadow: none !important;
}

/* Promotion carousel refinement */
.promo-admin-section .promo-band.is-promo-rotating,
.promo-admin-section .promo-month-grid.is-promo-rotating .side-promo-card {
  animation: promoCarouselIn 560ms ease both;
}

@keyframes promoCarouselIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.promo-admin-section .promo-copy {
  min-height: auto !important;
  display: block !important;
  padding: 32px 44px !important;
}

.promo-admin-section .promo-copy h2 {
  margin-bottom: 14px !important;
  font-size: clamp(1.7rem, 2vw, 2.25rem) !important;
}

.promo-admin-section .promo-copy p {
  margin-bottom: 18px !important;
  font-size: 1.06rem !important;
}

.promo-admin-section .promo-price,
.promo-admin-section .promo-copy .btn {
  vertical-align: middle;
}

/* Bigger services and featured treatments */
#servicios.section {
  padding-bottom: 24px;
}

#servicios .service-row {
  max-width: 1280px;
  gap: 34px;
}

#servicios .service-card {
  min-height: 158px;
  padding: 20px 14px 16px;
}

#servicios .service-icon,
#servicios .service-icon svg {
  width: 70px;
  height: 70px;
}

#servicios .service-card h3 {
  font-size: 0.82rem;
}

.featured-treatment-grid {
  max-width: 1360px;
  gap: 18px;
}

.featured-treatment-grid .card {
  min-height: 282px;
}

.featured-treatment-grid .card-media,
.featured-treatment-grid .card-media img {
  height: 164px;
  min-height: 164px;
}

.featured-treatment-grid .card-body {
  padding: 22px 16px 14px;
}

.featured-treatment-grid .card h3 {
  font-size: 1.16rem;
}

.featured-treatment-grid .card p {
  max-width: 260px;
  font-size: 0.68rem;
}

.featured-treatment-grid .btn {
  min-height: 25px;
  padding: 0 20px;
  font-size: 0.64rem;
}

/* Site-wide premium motion and depth */
:root {
  --premium-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --premium-shadow: 0 22px 52px rgba(18, 51, 51, 0.14);
  --premium-shadow-strong: 0 34px 76px rgba(18, 51, 51, 0.2);
}

.site-main {
  background:
    radial-gradient(circle at 8% 18%, rgba(94, 157, 164, 0.08), transparent 30%),
    radial-gradient(circle at 94% 42%, rgba(94, 157, 164, 0.1), transparent 34%),
    linear-gradient(180deg, #f5f8f8 0%, #eef3f3 46%, #f5f8f8 100%);
}

.btn,
.text-link,
.whatsapp-float {
  transition:
    transform 220ms var(--premium-ease),
    box-shadow 220ms var(--premium-ease),
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.btn:hover,
.text-link:hover,
.whatsapp-float:hover {
  transform: translateY(-3px);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(94, 157, 164, 0.34);
}

.main-column > .compact-section,
#servicios.section,
.about-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    #dedede;
}

.main-column > .compact-section .section-heading,
#servicios .section-heading {
  position: relative;
}

.main-column > .compact-section .section-tag,
#servicios .section-tag,
.about-title-bar {
  text-shadow: 0 10px 24px rgba(18, 51, 51, 0.08);
}

.main-column > .compact-section .section-tag::after,
#servicios .section-tag::after,
.about-title-bar::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #5e9da4, transparent);
  opacity: 0.72;
}

#servicios .service-card,
.featured-treatment-grid .card,
.result-grid .result-tile,
.product-strip .product-card,
.promo-month-grid .side-promo-card,
.promo-admin-section .promo-band,
.clinic-photo,
.about-copy {
  position: relative;
  transform-style: preserve-3d;
  transition:
    transform 320ms var(--premium-ease),
    box-shadow 320ms var(--premium-ease),
    border-color 320ms ease,
    filter 320ms ease;
  will-change: transform;
}

#servicios .service-card,
.featured-treatment-grid .card,
.result-grid .result-tile,
.product-strip .product-card,
.promo-month-grid .side-promo-card {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.86) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 250, 0.92)) !important;
  box-shadow:
    0 16px 34px rgba(18, 51, 51, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

#servicios .service-card::after,
.featured-treatment-grid .card::after,
.result-grid .result-tile::after,
.product-strip .product-card::after,
.promo-month-grid .side-promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 0%), rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 54%);
  opacity: 0;
  transition: opacity 260ms ease;
}

#servicios .service-card:hover,
.featured-treatment-grid .card:hover,
.result-grid .result-tile:hover,
.product-strip .product-card:hover,
.promo-month-grid .side-promo-card:hover,
.clinic-photo:hover {
  transform:
    perspective(900px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(-8px);
  box-shadow: var(--premium-shadow-strong) !important;
  filter: saturate(1.04);
}

#servicios .service-card:hover::after,
.featured-treatment-grid .card:hover::after,
.result-grid .result-tile:hover::after,
.product-strip .product-card:hover::after,
.promo-month-grid .side-promo-card:hover::after {
  opacity: 1;
}

#servicios .service-icon,
.hero-benefit-icon {
  transition: transform 280ms var(--premium-ease), color 220ms ease;
}

#servicios .service-card:hover .service-icon,
.hero-benefit:hover .hero-benefit-icon {
  transform: translateZ(22px) scale(1.08);
  color: #5e9da4;
}

.featured-treatment-grid .card-media img,
.result-grid .result-tile img,
.product-strip .card-media img,
.promo-month-grid .side-promo-card img,
.promo-admin-section .promo-media img,
.clinic-photo img {
  transition: transform 520ms var(--premium-ease), filter 520ms ease;
}

.featured-treatment-grid .card:hover .card-media img,
.result-grid .result-tile:hover img,
.product-strip .product-card:hover .card-media img,
.promo-month-grid .side-promo-card:hover img,
.promo-admin-section .promo-band:hover .promo-media img,
.clinic-photo:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.about-copy {
  box-shadow: inset 18px 0 34px rgba(255, 255, 255, 0.58);
}

.promo-admin-section .promo-band {
  overflow: hidden;
  box-shadow: var(--premium-shadow);
  transition:
    transform 320ms var(--premium-ease),
    box-shadow 320ms var(--premium-ease);
}

.promo-admin-section .promo-band:hover {
  transform: translateY(-6px);
  box-shadow: var(--premium-shadow-strong);
}

.promo-admin-section .promo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.26), transparent 36%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 45%, transparent 62%);
  opacity: 0.9;
}

.promo-admin-section .promo-copy,
.promo-admin-section .promo-media {
  position: relative;
  z-index: 1;
}

.site-footer {
  box-shadow: 0 -22px 54px rgba(18, 51, 51, 0.12);
}

.reveal-on-scroll {
  transform: translateY(42px) scale(0.965);
  filter: blur(8px);
  transition:
    opacity 860ms ease,
    transform 860ms var(--premium-ease),
    filter 860ms ease;
}

.service-card.reveal-on-scroll,
.featured-treatment-grid .card.reveal-on-scroll,
.result-grid .result-tile.reveal-on-scroll,
.product-strip .product-card.reveal-on-scroll {
  transform: translateY(34px) rotateX(10deg) scale(0.94);
}

.service-card.reveal-on-scroll.is-visible,
.featured-treatment-grid .card.reveal-on-scroll.is-visible,
.result-grid .result-tile.reveal-on-scroll.is-visible,
.product-strip .product-card.reveal-on-scroll.is-visible {
  transform: translateY(0) rotateX(0deg) scale(1);
}

@media (max-width: 700px) {
  #servicios .service-card:hover,
  .featured-treatment-grid .card:hover,
  .result-grid .result-tile:hover,
  .product-strip .product-card:hover,
  .promo-month-grid .side-promo-card:hover,
  .clinic-photo:hover {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #servicios .service-card,
  .featured-treatment-grid .card,
  .result-grid .result-tile,
  .product-strip .product-card,
  .promo-month-grid .side-promo-card,
  .promo-admin-section .promo-band,
  .clinic-photo,
  .about-copy,
  .btn,
  .text-link,
  .whatsapp-float {
    transition: none !important;
    transform: none !important;
  }
}

/* Footer left/reference layout */
.site-footer .footer-grid {
  grid-template-columns: 1.68fr 1.18fr 1.2fr 1.45fr;
}

.site-footer .footer-grid > div:first-child {
  justify-content: flex-start;
  padding-left: 18px;
  padding-right: 34px;
}

.site-footer .footer-grid > div:nth-child(2) {
  padding-left: 32px;
}

.site-footer .footer-brand {
  gap: 22px;
}

.site-footer .footer-brand .brand-logo {
  width: 108px;
  height: 108px;
  border: 3px solid #ffffff;
}

.site-footer .footer-brand h3 {
  color: #ffffff;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer .footer-brand + p {
  display: block !important;
  margin: -28px 0 0 158px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 0.94rem;
  line-height: 1;
  white-space: nowrap;
}

.site-footer .footer-links {
  gap: 4px;
  font-family: var(--display);
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.08;
  text-transform: uppercase;
}

.site-footer .footer-grid > div:nth-child(2) h4 {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: 1.56rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Footer brand subtitle fix */
.site-footer .footer-grid {
  grid-template-columns: 1.25fr 0.95fr 1.05fr 1.35fr !important;
}

.site-footer .footer-grid > div:first-child {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-left: 18px !important;
  padding-right: 28px !important;
}

.site-footer .footer-brand {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
}

.site-footer .footer-brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.site-footer .footer-brand-copy h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer .footer-brand-copy p {
  display: block !important;
  margin: 0 !important;
  color: #ffffff;
  font-family: var(--display);
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
}

.site-footer .footer-brand + p {
  display: none !important;
}

/* Hero breathing room expansion */
.hero {
  width: min(1380px, 100vw) !important;
  overflow: hidden;
}

.hero-container {
  min-height: 770px !important;
  padding: 66px 58px 60px !important;
}

.hero-copy {
  max-width: 735px !important;
}

.hero h1 {
  max-width: 730px !important;
  margin-bottom: 26px !important;
  font-size: clamp(3.25rem, 4.35vw, 4.9rem) !important;
  line-height: 1.04 !important;
}

.hero p {
  max-width: 620px !important;
  margin-bottom: 0 !important;
  font-size: 1.12rem !important;
  line-height: 1.82 !important;
}

.hero-benefits {
  max-width: 660px !important;
  margin: 24px 0 34px !important;
  gap: 16px !important;
}

.hero-benefit {
  min-height: 146px !important;
  padding: 20px 14px 18px !important;
}

.hero-actions {
  gap: 44px !important;
}

.hero-actions .btn {
  min-height: 48px !important;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  object-position: center right !important;
}

@media (max-width: 1100px) {
  .hero {
    width: min(100vw, 100%) !important;
  }

  .hero-container {
    min-height: auto !important;
    padding: 54px 28px !important;
  }

  .hero-copy,
  .hero h1,
  .hero p,
  .hero-benefits {
    max-width: none !important;
  }
}

@media (max-width: 700px) {
  .hero {
    width: 100vw !important;
  }

  .hero-container {
    padding: 36px 18px 34px !important;
  }

  .hero h1 {
    font-size: 2.25rem !important;
  }

  .hero p {
    font-size: 0.94rem !important;
  }

  .hero-benefits {
    margin: 20px 0 26px !important;
  }

  .hero-actions {
    gap: 12px !important;
  }
}

/* Full-width balanced hero */
.hero {
  width: 100vw !important;
  background: #f6f8f8 !important;
}

.hero-container {
  min-height: clamp(660px, 72vh, 760px) !important;
  padding: clamp(46px, 5vw, 70px) clamp(34px, 7vw, 104px) clamp(46px, 5vw, 64px) !important;
}

.hero-copy {
  max-width: min(660px, 48vw) !important;
}

.hero h1 {
  max-width: 660px !important;
  margin-bottom: 22px !important;
  font-size: clamp(3rem, 3.55vw, 4.35rem) !important;
  line-height: 1.045 !important;
}

.hero p {
  max-width: 570px !important;
  font-size: 1.02rem !important;
  line-height: 1.75 !important;
}

.hero-benefits {
  max-width: 610px !important;
  margin: 22px 0 28px !important;
  gap: 14px !important;
}

.hero-benefit {
  min-height: 126px !important;
  padding: 16px 12px 14px !important;
  font-size: clamp(0.86rem, 0.88vw, 1rem) !important;
}

.hero-benefit-icon {
  width: 50px !important;
  height: 50px !important;
}

.hero-benefit-icon svg {
  width: 32px !important;
  height: 32px !important;
}

.hero-actions {
  gap: 26px !important;
}

.hero-actions .btn {
  min-height: 44px !important;
  padding-inline: 26px !important;
  font-size: 0.92rem !important;
}

.hero-actions .hero-primary {
  min-width: 176px !important;
}

.hero-actions .hero-whatsapp {
  min-width: 286px !important;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  object-position: 72% center !important;
}

@media (min-width: 1500px) {
  .hero-copy {
    max-width: 700px !important;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 3.3vw, 4.55rem) !important;
  }
}

@media (max-width: 1100px) {
  .hero-copy {
    max-width: none !important;
  }
}

@media (max-width: 700px) {
  .hero-container {
    min-height: auto !important;
    padding: 36px 18px 34px !important;
  }

  .hero h1 {
    font-size: 2.25rem !important;
  }

  .hero-benefits {
    max-width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero-actions .btn,
  .hero-actions .hero-primary,
  .hero-actions .hero-whatsapp {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* Full home layout alignment */
:root {
  --home-wide: min(1680px, calc(100vw - clamp(32px, 6vw, 128px)));
  --home-pad: clamp(18px, 4vw, 72px);
}

.hero,
#servicios.section,
.about-band,
.main-column > .compact-section,
.site-footer {
  left: 50% !important;
  width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: translateX(-50%) !important;
}

.hero {
  min-height: auto !important;
}

.hero-container {
  width: var(--home-wide) !important;
  max-width: var(--home-wide) !important;
  min-height: clamp(640px, 68vh, 740px) !important;
  margin: 0 auto !important;
  padding: clamp(44px, 4.8vw, 68px) 0 clamp(44px, 4.5vw, 62px) !important;
}

.hero-copy {
  max-width: min(650px, 47%) !important;
}

.hero h1 {
  max-width: 650px !important;
  font-size: clamp(2.85rem, 3.35vw, 4.15rem) !important;
}

.hero-benefits {
  max-width: 600px !important;
}

.hero-image {
  inset: 0 !important;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  object-fit: contain !important;
  object-position: right center !important;
}

#servicios.section,
.main-column > .compact-section {
  padding-left: var(--home-pad) !important;
  padding-right: var(--home-pad) !important;
}

#servicios .service-row,
.featured-treatment-grid,
.result-grid,
.product-strip,
.promo-admin-section .promo-band,
.promo-admin-section .promo-month-grid,
.footer-grid,
.site-footer .copyright {
  width: min(100%, var(--home-wide)) !important;
  max-width: var(--home-wide) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#servicios .service-row {
  grid-template-columns: repeat(6, minmax(150px, 1fr)) !important;
}

.about-band {
  grid-template-columns: minmax(320px, 430px) minmax(0, 980px) !important;
  justify-content: center !important;
  padding-left: var(--home-pad) !important;
  padding-right: var(--home-pad) !important;
}

.about-title-bar {
  margin-left: calc(var(--home-pad) * -1) !important;
  margin-right: calc(var(--home-pad) * -1) !important;
}

.featured-treatment-grid,
.result-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr)) !important;
}

.product-strip {
  grid-template-columns: repeat(5, minmax(190px, 1fr)) !important;
  justify-items: stretch !important;
}

.promo-admin-section .promo-band {
  min-height: 330px !important;
}

.site-footer .footer-grid {
  grid-template-columns: 1.25fr 0.95fr 1.05fr 1.35fr !important;
}

@media (max-width: 1100px) {
  :root {
    --home-wide: min(100%, calc(100vw - 36px));
    --home-pad: 18px;
  }

  .hero-container {
    min-height: auto !important;
    padding: 44px 0 !important;
  }

  .hero-copy {
    max-width: none !important;
  }

  .hero-doctor-img,
  .hero-visual img,
  .hero-image img {
    object-fit: contain !important;
  }

  #servicios .service-row,
  .featured-treatment-grid,
  .result-grid,
  .product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .about-band {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  :root {
    --home-wide: min(100%, calc(100vw - 28px));
    --home-pad: 14px;
  }

  .hero-container {
    padding: 36px 0 34px !important;
  }

  #servicios .service-row,
  .featured-treatment-grid,
  .result-grid,
  .product-strip {
    grid-template-columns: 1fr !important;
  }
}

/* Premium 2026 final experience layer */
:root {
  --lux-ink: #0f2e31;
  --lux-muted: #667b7e;
  --lux-primary: #5e9da4;
  --lux-primary-strong: #22656f;
  --lux-surface: rgba(255, 255, 255, 0.74);
  --lux-surface-solid: #ffffff;
  --lux-border: rgba(255, 255, 255, 0.72);
  --lux-line: rgba(94, 157, 164, 0.18);
  --lux-band: #eef4f4;
  --lux-band-2: #e3ebeb;
  --lux-shadow: 0 24px 70px rgba(15, 46, 49, 0.14);
  --lux-shadow-soft: 0 14px 38px rgba(15, 46, 49, 0.1);
  --lux-radius: 18px;
  --lux-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --home-wide: min(1540px, calc(100vw - clamp(28px, 5vw, 96px)));
  --home-pad: clamp(18px, 4vw, 64px);
}

html {
  scroll-padding-top: 78px;
}

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(94, 157, 164, 0.16), transparent 28%),
    radial-gradient(circle at 86% 40%, rgba(34, 101, 111, 0.11), transparent 32%),
    linear-gradient(180deg, #f8fbfb 0%, #edf4f4 45%, #f7faf9 100%) !important;
}

.site-main {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 20%), rgba(94, 157, 164, 0.13), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0)) !important;
}

.site-main::before,
.site-main::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(54px);
  opacity: 0.32;
  transform: translate3d(0, calc(var(--scroll-y, 0px) * -0.04), 0);
}

.site-main::before {
  top: 12vh;
  left: -14vw;
  background: rgba(94, 157, 164, 0.42);
}

.site-main::after {
  right: -16vw;
  bottom: 12vh;
  background: rgba(159, 207, 210, 0.46);
}

.site-header {
  background: rgba(255, 255, 255, 0.78) !important;
  border-bottom: 1px solid rgba(94, 157, 164, 0.16) !important;
  box-shadow: 0 18px 44px rgba(15, 46, 49, 0.06) !important;
  backdrop-filter: blur(22px) saturate(1.25);
}

.header-inner {
  width: min(1220px, calc(100vw - 32px)) !important;
}

.main-nav a {
  transition: color 180ms ease, transform 180ms var(--lux-ease);
}

.main-nav a:hover {
  color: var(--lux-primary-strong);
  transform: translateY(-1px);
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px !important;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.46) 44%, transparent 72%);
  opacity: 0;
  transform: translateX(-65%);
  transition: opacity 220ms ease, transform 520ms var(--lux-ease);
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(70%);
}

.hero,
#servicios.section,
.about-band,
.main-column > .compact-section,
.site-footer {
  left: 50% !important;
  width: 100vw !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
}

.hero {
  min-height: auto !important;
  background:
    radial-gradient(circle at 74% 32%, rgba(94, 157, 164, 0.13), transparent 34%),
    linear-gradient(90deg, #ffffff 0%, #f8fbfb 48%, #edf5f5 100%) !important;
}

.hero-container {
  width: var(--home-wide) !important;
  max-width: var(--home-wide) !important;
  min-height: clamp(620px, 66vh, 720px) !important;
  margin: 0 auto !important;
  padding: clamp(46px, 4.8vw, 70px) 0 clamp(44px, 4vw, 58px) !important;
}

.hero-copy {
  max-width: min(640px, 46vw) !important;
  transform: translate3d(0, calc(var(--scroll-y, 0px) * 0.018), 0);
}

.hero h1 {
  max-width: 640px !important;
  margin-bottom: 20px !important;
  color: var(--lux-primary) !important;
  font-size: clamp(2.82rem, 3.25vw, 4.05rem) !important;
  line-height: 1.035 !important;
  text-wrap: balance;
}

.hero-strong {
  color: #050505 !important;
}

.hero p {
  max-width: 550px !important;
  color: rgba(15, 46, 49, 0.82) !important;
  font-size: clamp(0.94rem, 0.96vw, 1.06rem) !important;
  line-height: 1.76 !important;
}

.hero-image {
  pointer-events: none;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 76% center !important;
  transform: translate3d(calc(var(--parallax-x, 0) * -1px), calc(var(--scroll-y, 0px) * -0.018), 0) scale(1.01);
}

.hero-benefits {
  max-width: 590px !important;
  margin: 22px 0 26px !important;
  gap: 14px !important;
}

.hero-benefit {
  min-height: 124px !important;
  padding: 15px 12px 14px !important;
  border: 1px solid var(--lux-border) !important;
  border-radius: 14px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.54)),
    radial-gradient(circle at 50% 0%, rgba(94, 157, 164, 0.2), transparent 58%) !important;
  box-shadow: 0 16px 42px rgba(15, 46, 49, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(18px) saturate(1.18);
}

.hero-actions {
  gap: 24px !important;
}

.hero-actions .btn {
  min-height: 44px !important;
  padding-inline: 24px !important;
  font-size: 0.9rem !important;
}

#servicios.section,
.main-column > .compact-section {
  padding: clamp(22px, 2.8vw, 42px) var(--home-pad) clamp(28px, 3vw, 50px) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
    var(--lux-band) !important;
}

#servicios .section-heading,
.main-column > .compact-section .section-heading {
  padding: 0 0 clamp(16px, 2vw, 24px) !important;
}

#servicios .section-tag,
.main-column > .compact-section .section-tag,
.about-title-bar {
  color: #080f10 !important;
  font-size: clamp(1.7rem, 2.05vw, 2.45rem) !important;
  letter-spacing: 0 !important;
}

#servicios .service-row,
.featured-treatment-grid,
.result-grid,
.product-strip,
.promo-admin-section .promo-band,
.promo-admin-section .promo-month-grid,
.footer-grid,
.site-footer .copyright {
  width: min(100%, var(--home-wide)) !important;
  max-width: var(--home-wide) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#servicios .service-row {
  grid-template-columns: repeat(6, minmax(142px, 1fr)) !important;
  gap: clamp(14px, 1.4vw, 24px) !important;
}

#servicios .service-card,
.featured-treatment-grid .card,
.result-grid .result-tile,
.product-strip .product-card,
.promo-month-grid .side-promo-card {
  border: 1px solid var(--lux-border) !important;
  border-radius: var(--lux-radius) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66)),
    radial-gradient(circle at 50% 0%, rgba(94, 157, 164, 0.13), transparent 64%) !important;
  box-shadow: var(--lux-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(18px) saturate(1.12);
}

#servicios .service-card {
  min-height: 166px !important;
}

#servicios .service-card:first-child {
  border-color: rgba(94, 157, 164, 0.38) !important;
}

.about-band {
  display: grid !important;
  grid-template-columns: minmax(300px, 420px) minmax(0, 940px) !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 0 var(--home-pad) clamp(34px, 3.5vw, 58px) !important;
  background:
    linear-gradient(180deg, var(--lux-band) 0%, #f7faf9 100%) !important;
}

.about-title-bar {
  grid-column: 1 / -1 !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 18px 0 !important;
  background: rgba(255, 255, 255, 0.34) !important;
}

.clinic-photo {
  min-height: 420px !important;
  aspect-ratio: auto !important;
  border-radius: 22px 0 0 22px !important;
  box-shadow: var(--lux-shadow) !important;
}

.clinic-photo img {
  object-fit: cover !important;
}

.about-copy {
  display: grid !important;
  align-content: center !important;
  padding: clamp(34px, 4vw, 62px) !important;
  border: 1px solid var(--lux-border) !important;
  border-left: 0 !important;
  border-radius: 0 22px 22px 0 !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: var(--lux-shadow-soft) !important;
  backdrop-filter: blur(20px) saturate(1.16);
}

.featured-treatment-grid,
.result-grid {
  grid-template-columns: repeat(4, minmax(210px, 1fr)) !important;
  gap: clamp(16px, 1.55vw, 26px) !important;
}

.featured-treatment-grid .card,
.result-grid .result-tile {
  min-height: 300px !important;
}

.featured-treatment-grid .card-media,
.featured-treatment-grid .card-media img {
  height: 170px !important;
  min-height: 170px !important;
}

.promo-admin-section {
  background:
    radial-gradient(circle at 22% 18%, rgba(94, 157, 164, 0.18), transparent 32%),
    linear-gradient(180deg, #edf5f5, #e3ecec) !important;
}

.promo-admin-section .promo-band {
  min-height: 360px !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #5e9da4 0%, #4e8d94 52%, #22656f 100%) !important;
  box-shadow: 0 34px 90px rgba(34, 101, 111, 0.24) !important;
}

.promo-admin-section .promo-media img {
  border-radius: 18px !important;
}

.promo-admin-section .promo-month-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(16px, 1.4vw, 24px) !important;
}

.product-strip {
  grid-template-columns: repeat(5, minmax(180px, 1fr)) !important;
  gap: clamp(16px, 1.6vw, 28px) !important;
}

.main-column .product-strip .product-card {
  min-height: 220px !important;
}

.site-footer {
  padding-top: 40px !important;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #5e9da4 0%, #477f85 52%, #22656f 100%) !important;
}

.site-footer .footer-grid {
  grid-template-columns: 1.28fr 0.92fr 0.98fr 1.32fr !important;
  gap: clamp(20px, 2vw, 36px) !important;
}

.reveal-on-scroll {
  transform: translateY(46px) scale(0.96) !important;
}

.reveal-on-scroll.is-visible {
  transform: translateY(0) scale(1) !important;
}

@media (max-width: 1180px) {
  :root {
    --home-wide: min(100%, calc(100vw - 36px));
    --home-pad: 18px;
  }

  .hero-container {
    min-height: auto !important;
  }

  .hero-copy {
    max-width: none !important;
  }

  .hero-image {
    position: relative !important;
    height: auto !important;
    margin-top: 24px !important;
  }

  .hero-doctor-img,
  .hero-visual img,
  .hero-image img {
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
  }

  #servicios .service-row,
  .featured-treatment-grid,
  .result-grid,
  .product-strip,
  .promo-admin-section .promo-month-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .about-band {
    grid-template-columns: 1fr !important;
  }

  .clinic-photo,
  .about-copy {
    border-radius: 22px !important;
    border-left: 1px solid var(--lux-border) !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  :root {
    --home-wide: min(100%, calc(100vw - 28px));
    --home-pad: 14px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 12vw, 3rem) !important;
  }

  .hero-benefits,
  #servicios .service-row,
  .featured-treatment-grid,
  .result-grid,
  .product-strip,
  .promo-admin-section .promo-month-grid,
  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .promo-admin-section .promo-band {
    min-height: auto !important;
    border-radius: 18px !important;
  }

  .about-copy {
    padding: 26px 18px !important;
  }
}

/* Futuristic editorial direction */
:root {
  --future-bg: #071314;
  --future-bg-2: #0b2022;
  --future-surface: rgba(11, 32, 34, 0.72);
  --future-glass: rgba(255, 255, 255, 0.075);
  --future-line: rgba(151, 234, 229, 0.24);
  --future-teal: #5e9da4;
  --future-mint: #78f2df;
  --future-white: #f6fffd;
  --future-ink: #081112;
  --future-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  --home-wide: min(1620px, calc(100vw - clamp(24px, 4vw, 86px)));
}

body {
  color: var(--future-white) !important;
  background:
    radial-gradient(circle at var(--cursor-x, 18%) var(--cursor-y, 22%), rgba(120, 242, 223, 0.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(94, 157, 164, 0.26), transparent 28%),
    linear-gradient(180deg, #071314 0%, #0d2021 42%, #071314 100%) !important;
}

.site-header {
  background: rgba(7, 19, 20, 0.72) !important;
  border-bottom: 1px solid rgba(120, 242, 223, 0.16) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26) !important;
  backdrop-filter: blur(22px) saturate(1.35);
}

.brand-text,
.brand-text small,
.main-nav a {
  color: rgba(246, 255, 253, 0.92) !important;
}

.main-nav a:hover {
  color: var(--future-mint) !important;
}

.btn-header,
.hero-primary,
.promo-admin-section .promo-copy .btn,
.promo-admin-section .side-promo-card .btn,
.promo-month-grid .side-promo-card .btn {
  color: #061212 !important;
  border-color: var(--future-mint) !important;
  background: linear-gradient(135deg, var(--future-mint), var(--future-teal)) !important;
  box-shadow: 0 18px 46px rgba(120, 242, 223, 0.24) !important;
}

.site-main {
  background:
    linear-gradient(90deg, rgba(120, 242, 223, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(120, 242, 223, 0.045) 1px, transparent 1px),
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 20%), rgba(120, 242, 223, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(7, 19, 20, 0), rgba(7, 19, 20, 0.86)) !important;
  background-size: 72px 72px, 72px 72px, auto, auto !important;
}

.hero[data-style="futuristic-editorial"] {
  min-height: calc(100vh - 66px) !important;
  background:
    linear-gradient(90deg, rgba(7, 19, 20, 0.94) 0%, rgba(7, 19, 20, 0.76) 36%, rgba(7, 19, 20, 0.12) 70%),
    radial-gradient(circle at 16% 70%, rgba(120, 242, 223, 0.2), transparent 26%),
    #071314 !important;
  overflow: hidden;
}

.hero[data-style="futuristic-editorial"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(120, 242, 223, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(120, 242, 223, 0.08) 1px, transparent 1px);
  background-size: 8vw 8vw;
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
  opacity: 0.28;
}

.hero[data-style="futuristic-editorial"]::after {
  content: "DRA. ARRIETA";
  position: absolute;
  right: -2vw;
  bottom: -2.6vw;
  z-index: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(120, 242, 223, 0.22);
  font-family: var(--font);
  font-size: clamp(4.8rem, 13vw, 16rem);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.hero-container {
  min-height: calc(100vh - 66px) !important;
  display: grid !important;
  align-items: center !important;
  padding-block: clamp(42px, 5vw, 86px) !important;
}

.hero-meta {
  position: absolute;
  top: clamp(20px, 3vw, 44px);
  left: 0;
  right: 0;
  z-index: 4;
  width: var(--home-wide);
  max-width: var(--home-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(246, 255, 253, 0.58);
  font-family: var(--font);
  font-size: clamp(0.58rem, 0.7vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-grid {
  position: relative !important;
  z-index: 3 !important;
}

.hero-copy {
  max-width: min(860px, 56vw) !important;
  padding-top: clamp(22px, 3vw, 56px) !important;
}

.hero h1 {
  max-width: 900px !important;
  margin-bottom: clamp(18px, 2vw, 30px) !important;
  color: var(--future-white) !important;
  font-family: var(--font) !important;
  font-size: clamp(3.8rem, 7.8vw, 9.6rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.085em !important;
  line-height: 0.82 !important;
  text-transform: uppercase !important;
  text-wrap: balance;
}

.hero-accent {
  color: transparent !important;
  -webkit-text-stroke: clamp(1px, 0.12vw, 2px) var(--future-mint);
  font-family: inherit !important;
  font-weight: 900 !important;
}

.hero-strong {
  color: var(--future-white) !important;
}

.hero p {
  max-width: 520px !important;
  margin-left: 0 !important;
  color: rgba(246, 255, 253, 0.74) !important;
  font-size: clamp(0.86rem, 0.9vw, 1rem) !important;
  font-weight: 500 !important;
  line-height: 1.75 !important;
}

.hero-image {
  z-index: 0 !important;
  opacity: 0.88;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  object-fit: cover !important;
  object-position: 84% center !important;
  filter: contrast(1.06) saturate(0.92);
  transform: translate3d(calc(var(--parallax-x, 0) * -1px), calc(var(--scroll-y, 0px) * -0.018), 0) scale(1.04) !important;
}

.hero-benefits {
  max-width: 690px !important;
  margin: clamp(22px, 2.4vw, 38px) 0 clamp(22px, 2.2vw, 34px) !important;
  grid-template-columns: repeat(4, minmax(118px, 1fr)) !important;
}

.hero-benefit {
  min-height: 126px !important;
  border: 1px solid rgba(120, 242, 223, 0.2) !important;
  border-radius: 0 !important;
  color: rgba(246, 255, 253, 0.9) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 50% 0%, rgba(120, 242, 223, 0.24), transparent 58%) !important;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(18px) saturate(1.28);
}

.hero-benefit-icon {
  color: var(--future-mint) !important;
  background: rgba(120, 242, 223, 0.08) !important;
  box-shadow: inset 0 0 0 1px rgba(120, 242, 223, 0.22), 0 0 28px rgba(120, 242, 223, 0.14) !important;
}

.hero-whatsapp {
  color: var(--future-white) !important;
  border-color: rgba(246, 255, 253, 0.46) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 18px 46px rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(14px);
}

#servicios.section,
.main-column > .compact-section,
.about-band {
  background:
    radial-gradient(circle at 20% 0%, rgba(120, 242, 223, 0.11), transparent 34%),
    linear-gradient(180deg, #071314 0%, #0b2022 100%) !important;
}

#servicios .section-tag,
.main-column > .compact-section .section-tag,
.about-title-bar {
  color: var(--future-white) !important;
  font-family: var(--font) !important;
  font-size: clamp(2.1rem, 4.4vw, 5rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.07em !important;
  line-height: 0.88 !important;
  text-transform: uppercase !important;
}

#servicios .section-tag::after,
.main-column > .compact-section .section-tag::after,
.about-title-bar::after {
  width: min(280px, 38vw) !important;
  height: 4px !important;
  margin-top: 18px !important;
  background: linear-gradient(90deg, var(--future-mint), transparent) !important;
  opacity: 1 !important;
}

#servicios .service-card,
.featured-treatment-grid .card,
.result-grid .result-tile,
.product-strip .product-card,
.promo-month-grid .side-promo-card,
.about-copy {
  border-color: rgba(120, 242, 223, 0.18) !important;
  border-radius: 0 !important;
  color: var(--future-white) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 0%), rgba(120, 242, 223, 0.15), transparent 34%) !important;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
}

#servicios .service-card h3,
.featured-treatment-grid .card h3,
.product-strip .card h3,
.result-grid .result-tile p,
.about-copy h2,
.about-copy p {
  color: var(--future-white) !important;
}

#servicios .service-icon,
#servicios .service-icon svg {
  color: var(--future-mint) !important;
}

.about-title-bar {
  background: rgba(7, 19, 20, 0.72) !important;
}

.clinic-photo {
  border-radius: 0 !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32) !important;
}

.about-kicker,
.eyebrow {
  color: var(--future-mint) !important;
}

.promo-admin-section .promo-band {
  border-radius: 0 !important;
  background:
    linear-gradient(90deg, rgba(7, 19, 20, 0.12), rgba(7, 19, 20, 0.54)),
    radial-gradient(circle at 16% 20%, rgba(120, 242, 223, 0.28), transparent 34%),
    linear-gradient(135deg, #5e9da4 0%, #153b40 100%) !important;
}

.promo-admin-section .promo-copy h2 {
  font-family: var(--font) !important;
  font-size: clamp(2.3rem, 5.4vw, 6.4rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.08em !important;
  line-height: 0.86 !important;
  text-transform: uppercase !important;
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(120, 242, 223, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, #0b2022 0%, #071314 100%) !important;
  background-size: 72px 72px, auto !important;
}

@media (max-width: 1180px) {
  .hero-copy {
    max-width: none !important;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 12vw, 7rem) !important;
  }

  .hero-meta {
    display: none !important;
  }

  .hero-image {
    opacity: 1;
  }

  .hero-doctor-img,
  .hero-visual img,
  .hero-image img {
    object-fit: contain !important;
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.55rem, 16vw, 4rem) !important;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #servicios .section-tag,
  .main-column > .compact-section .section-tag,
  .about-title-bar {
    font-size: clamp(2rem, 13vw, 3.4rem) !important;
    line-height: 0.92 !important;
  }
}

/* Final format, readability and image fitting pass */
:root {
  --format-radius: 22px;
  --format-radius-sm: 16px;
  --format-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  --format-card-border: rgba(120, 242, 223, 0.2);
  --format-text: rgba(246, 255, 253, 0.92);
  --format-muted: rgba(246, 255, 253, 0.68);
}

.main-column {
  overflow: visible !important;
}

#servicios.section,
.main-column > .compact-section {
  padding-top: clamp(34px, 4vw, 70px) !important;
  padding-bottom: clamp(40px, 4.5vw, 76px) !important;
}

#servicios .section-heading,
.main-column > .compact-section .section-heading {
  margin-bottom: clamp(18px, 2vw, 32px) !important;
}

#servicios .section-tag,
.main-column > .compact-section .section-tag,
.about-title-bar {
  max-width: min(100%, 1100px);
  margin-inline: auto;
  text-wrap: balance;
}

#servicios .service-row,
.featured-treatment-grid,
.result-grid,
.product-strip,
.promo-admin-section .promo-month-grid {
  align-items: stretch !important;
}

#servicios .service-card,
.featured-treatment-grid .card,
.result-grid .result-tile,
.product-strip .product-card,
.promo-month-grid .side-promo-card,
.about-copy,
.clinic-photo,
.promo-admin-section .promo-band {
  border-radius: var(--format-radius) !important;
  border: 1px solid var(--format-card-border) !important;
  background: var(--format-card-bg) !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  overflow: hidden !important;
}

#servicios .service-card,
.featured-treatment-grid .card,
.product-strip .product-card,
.promo-month-grid .side-promo-card {
  display: grid !important;
  grid-template-rows: auto 1fr;
}

#servicios .service-card {
  place-items: center !important;
  min-height: clamp(154px, 10vw, 190px) !important;
  padding: clamp(18px, 1.8vw, 28px) 14px !important;
}

#servicios .service-icon,
#servicios .service-icon svg {
  width: clamp(58px, 4.4vw, 78px) !important;
  height: clamp(58px, 4.4vw, 78px) !important;
}

#servicios .service-card h3 {
  max-width: 150px;
  color: var(--format-text) !important;
  font-family: var(--font) !important;
  font-size: clamp(0.78rem, 0.82vw, 0.95rem) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  text-align: center !important;
}

.card-media,
.featured-treatment-grid .card-media,
.product-strip .card-media,
.side-promo-media,
.result-visual,
.promo-media {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 20%, rgba(120, 242, 223, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.06) !important;
}

.featured-treatment-grid .card-media,
.featured-treatment-grid .card-media img {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
}

.product-strip .card-media,
.product-strip .card-media img {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3 !important;
}

.result-visual,
.result-visual img {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 10 !important;
}

.side-promo-media,
.side-promo-media img {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 10 !important;
}

.promo-media {
  min-height: 100% !important;
}

.promo-media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 320px !important;
  object-fit: cover !important;
  object-position: center !important;
}

.card-media img,
.featured-treatment-grid .card-media img,
.result-visual img,
.side-promo-media img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
}

.product-strip .card-media img,
.product-card .card-media img {
  width: 100% !important;
  height: 100% !important;
  padding: 10px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

.featured-treatment-grid .card-body,
.product-strip .card-body,
.promo-month-grid .side-promo-card {
  padding: clamp(16px, 1.4vw, 24px) !important;
}

.featured-treatment-grid .card-body,
.product-strip .card-body {
  min-height: 0 !important;
  display: grid !important;
  align-content: start !important;
  gap: 8px !important;
}

.featured-treatment-grid .card h3,
.product-strip .card h3,
.promo-month-grid .side-promo-card h4 {
  color: var(--format-text) !important;
  font-family: var(--display) !important;
  font-size: clamp(1.05rem, 1.15vw, 1.35rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.08 !important;
  text-align: center !important;
}

.featured-treatment-grid .card p,
.product-strip .card p,
.promo-month-grid .side-promo-card p,
.featured-treatment-grid .benefit,
.featured-treatment-grid .eyebrow,
.product-strip .eyebrow,
.product-strip .meta-row span,
.small-note,
.section-subtitle {
  color: var(--format-muted) !important;
  font-family: var(--font) !important;
  font-size: clamp(0.72rem, 0.78vw, 0.88rem) !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

.product-strip .meta-row {
  justify-content: center !important;
  gap: 10px !important;
  color: var(--format-text) !important;
}

.product-strip .meta-row strong,
.promo-price,
.side-promo-card strong {
  color: var(--future-mint) !important;
  font-family: var(--font) !important;
  font-weight: 900 !important;
}

.featured-treatment-grid .btn,
.product-strip .btn,
.promo-month-grid .btn {
  width: fit-content !important;
  min-width: 120px !important;
  margin: 4px auto 0 !important;
  color: #061212 !important;
  border-color: var(--future-mint) !important;
  background: linear-gradient(135deg, var(--future-mint), var(--future-teal)) !important;
}

.featured-treatment-grid .card,
.result-grid .result-tile {
  min-height: auto !important;
}

.result-grid .result-tile {
  display: grid !important;
  gap: 12px !important;
  padding: 12px !important;
}

.result-grid .result-tile p {
  margin: 0 !important;
  color: var(--format-text) !important;
  font-family: var(--display) !important;
  font-size: clamp(0.98rem, 1vw, 1.18rem) !important;
  font-weight: 600 !important;
}

.about-band {
  gap: clamp(16px, 1.6vw, 26px) !important;
  align-items: stretch !important;
}

.clinic-photo {
  min-height: clamp(360px, 28vw, 520px) !important;
}

.clinic-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.about-copy {
  border-left: 1px solid var(--format-card-border) !important;
  color: var(--format-text) !important;
}

.about-copy h2 {
  color: var(--format-text) !important;
  font-size: clamp(2rem, 3vw, 3.65rem) !important;
}

.about-copy p {
  max-width: 820px !important;
  color: var(--format-muted) !important;
  font-size: clamp(0.96rem, 1vw, 1.1rem) !important;
  line-height: 1.72 !important;
}

.promo-admin-section .promo-band {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr) !important;
  align-items: stretch !important;
  min-height: clamp(340px, 30vw, 480px) !important;
}

.promo-copy {
  display: grid !important;
  align-content: center !important;
  gap: 14px !important;
  padding: clamp(28px, 4vw, 70px) !important;
}

.promo-admin-section .promo-copy h2 {
  color: var(--format-text) !important;
  font-size: clamp(2.3rem, 4.6vw, 5.7rem) !important;
  line-height: 0.9 !important;
  max-width: 760px !important;
}

.promo-admin-section .promo-copy p {
  max-width: 620px !important;
  color: rgba(246, 255, 253, 0.76) !important;
  font-size: clamp(0.95rem, 1vw, 1.16rem) !important;
  line-height: 1.65 !important;
}

.promo-admin-section .promo-month-grid {
  margin-top: clamp(18px, 2vw, 30px) !important;
}

.promo-month-grid .side-promo-card {
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 18px !important;
  min-height: 190px !important;
}

.promo-month-grid .side-promo-card h4,
.promo-month-grid .side-promo-card p,
.promo-month-grid .side-promo-card strong {
  text-align: left !important;
}

.site-footer,
.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a,
.footer-contact-list {
  color: var(--format-text) !important;
}

@media (max-width: 1180px) {
  .promo-admin-section .promo-band,
  .promo-month-grid .side-promo-card {
    grid-template-columns: 1fr !important;
  }

  .promo-media img {
    min-height: 260px !important;
  }

  .promo-month-grid .side-promo-card h4,
  .promo-month-grid .side-promo-card p,
  .promo-month-grid .side-promo-card strong {
    text-align: center !important;
  }
}

@media (max-width: 640px) {
  #servicios .service-row,
  .featured-treatment-grid,
  .result-grid,
  .product-strip,
  .promo-admin-section .promo-month-grid {
    gap: 16px !important;
  }

  .hero-benefit {
    min-height: 112px !important;
  }

  .promo-copy {
    padding: 24px !important;
  }

  .promo-media img {
    min-height: 220px !important;
  }
}

/* Block ordering and hero contrast pass */
.hero[data-style="futuristic-editorial"] {
  background:
    linear-gradient(90deg, rgba(7, 19, 20, 0.98) 0%, rgba(7, 19, 20, 0.86) 34%, rgba(7, 19, 20, 0.5) 58%, rgba(7, 19, 20, 0.18) 100%),
    radial-gradient(circle at 18% 65%, rgba(120, 242, 223, 0.18), transparent 28%),
    #071314 !important;
}

.hero-copy {
  padding: clamp(22px, 2.4vw, 36px) !important;
  border: 1px solid rgba(120, 242, 223, 0.18) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, rgba(7, 19, 20, 0.72), rgba(7, 19, 20, 0.42)),
    radial-gradient(circle at 0% 0%, rgba(120, 242, 223, 0.14), transparent 42%) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(16px) saturate(1.18);
}

.hero h1,
.hero-strong {
  color: #f7fffd !important;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.32) !important;
}

.hero p {
  color: rgba(247, 255, 253, 0.84) !important;
}

#servicios .section-heading,
.main-column > .compact-section .section-heading {
  width: min(100%, var(--home-wide)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-align: center !important;
}

#servicios .section-heading > div,
.main-column > .compact-section .section-heading > div {
  width: 100% !important;
  display: grid !important;
  justify-items: center !important;
}

#servicios .section-tag,
.main-column > .compact-section .section-tag,
.about-title-bar {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

.main-column > .compact-section .text-link {
  position: static !important;
  display: inline-flex !important;
  margin: 6px auto 0 !important;
  justify-content: center !important;
  color: var(--future-mint) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.section-subtitle,
.small-note {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

#servicios.section,
.about-band,
.main-column > .compact-section {
  position: relative !important;
  isolation: isolate;
}

#servicios.section::before,
.about-band::before,
.main-column > .compact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(120, 242, 223, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%);
}

#servicios .service-row,
.featured-treatment-grid,
.result-grid,
.product-strip,
.promo-admin-section .promo-month-grid {
  margin-top: 0 !important;
}

.about-title-bar {
  align-content: center !important;
  min-height: 110px !important;
  padding-left: var(--home-pad) !important;
  padding-right: var(--home-pad) !important;
}

.about-band {
  padding-top: 0 !important;
}

.about-copy {
  justify-items: start !important;
}

.about-copy .about-kicker,
.about-copy h2,
.about-copy p {
  text-align: left !important;
}

@media (max-width: 1180px) {
  .hero-copy {
    border-radius: 20px !important;
    background: rgba(7, 19, 20, 0.78) !important;
  }

  .about-copy {
    justify-items: center !important;
  }

  .about-copy .about-kicker,
  .about-copy h2,
  .about-copy p {
    text-align: center !important;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding: 20px 16px !important;
  }

  .about-title-bar {
    min-height: 86px !important;
  }
}

/* About section title centering fix */
.about-band > .about-title-bar {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
}

.about-band > .about-title-bar::after {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Restore premium clinical palette with ordered modern format */
:root {
  --home-wide: min(1320px, calc(100vw - 28px));
  --home-pad: clamp(14px, 3vw, 42px);
  --clinical-bg: #eef4f4;
  --clinical-band: #dedede;
  --clinical-card: #ffffff;
  --clinical-ink: #123333;
  --clinical-muted: #5d6c6f;
  --clinical-teal: #5e9da4;
  --clinical-teal-dark: #22656f;
  --clinical-line: rgba(18, 51, 51, 0.12);
  --clinical-shadow: 0 14px 34px rgba(18, 51, 51, 0.12);
}

body {
  color: var(--clinical-ink) !important;
  background: linear-gradient(180deg, #f8fbfb 0%, #eef4f4 48%, #f7fafa 100%) !important;
}

.site-main {
  background: linear-gradient(180deg, #f7fbfb 0%, #edf3f3 100%) !important;
  background-size: auto !important;
}

.site-main::before,
.site-main::after,
.hero[data-style="futuristic-editorial"]::before,
.hero[data-style="futuristic-editorial"]::after {
  display: none !important;
  content: none !important;
}

.site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(18, 51, 51, 0.1) !important;
  box-shadow: 0 10px 30px rgba(18, 51, 51, 0.06) !important;
}

.brand-text,
.brand-text small,
.main-nav a {
  color: var(--clinical-ink) !important;
}

.main-nav a:hover {
  color: var(--clinical-teal-dark) !important;
}

.hero-meta {
  display: none !important;
}

.hero,
.hero[data-style="futuristic-editorial"] {
  left: 50% !important;
  width: min(1320px, 100vw) !important;
  min-height: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
  transform: translateX(-50%) !important;
  background:
    radial-gradient(circle at 72% 20%, rgba(94, 157, 164, 0.12), transparent 32%),
    linear-gradient(90deg, #ffffff 0%, #fbfafa 48%, #edf5f5 100%) !important;
}

.hero-container {
  width: 100% !important;
  max-width: none !important;
  min-height: clamp(520px, 68vh, 680px) !important;
  display: grid !important;
  align-items: center !important;
  margin: 0 auto !important;
  padding: clamp(38px, 5vw, 70px) clamp(24px, 4vw, 62px) clamp(30px, 4vw, 54px) !important;
}

.hero-grid {
  display: block !important;
  position: static !important;
}

.hero-copy {
  max-width: min(620px, 48vw) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero h1 {
  max-width: 640px !important;
  margin: 0 0 18px !important;
  color: var(--clinical-teal) !important;
  font-family: var(--display) !important;
  font-size: clamp(2.85rem, 5.2vw, 5.35rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.03 !important;
  text-transform: none !important;
  text-shadow: none !important;
}

.hero-accent {
  color: var(--clinical-teal) !important;
  -webkit-text-stroke: 0 transparent !important;
  font-family: var(--display) !important;
  font-weight: 600 !important;
}

.hero-strong {
  color: #050505 !important;
  text-shadow: none !important;
}

.hero p {
  max-width: 560px !important;
  margin: 0 !important;
  color: var(--clinical-ink) !important;
  font-family: var(--font) !important;
  font-size: clamp(0.95rem, 1vw, 1.06rem) !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
}

.hero-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: right center !important;
  filter: none !important;
  transform: none !important;
}

.hero-benefits {
  max-width: 620px !important;
  margin: 20px 0 24px !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  perspective: 1000px !important;
}

.hero-benefit {
  min-height: 112px !important;
  padding: 14px 10px 12px !important;
  color: var(--clinical-ink) !important;
  border: 1px solid rgba(94, 157, 164, 0.16) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.74) !important;
  box-shadow: 0 12px 28px rgba(18, 51, 51, 0.08) !important;
  backdrop-filter: blur(10px) !important;
}

.hero-benefit-icon {
  width: 46px !important;
  height: 46px !important;
  color: #1597a0 !important;
  background: rgba(94, 157, 164, 0.08) !important;
  box-shadow: inset 0 0 0 1px rgba(94, 157, 164, 0.14) !important;
}

.hero-benefit-icon svg {
  width: 30px !important;
  height: 30px !important;
}

.hero-actions {
  gap: 16px !important;
}

.hero-actions .btn,
.btn-header,
.hero-primary,
.promo-admin-section .promo-copy .btn,
.promo-admin-section .side-promo-card .btn,
.promo-month-grid .side-promo-card .btn {
  color: #ffffff !important;
  border-color: var(--clinical-teal) !important;
  background: var(--clinical-teal) !important;
  box-shadow: 0 14px 26px rgba(94, 157, 164, 0.22) !important;
}

.hero-whatsapp {
  color: var(--clinical-ink) !important;
  border-color: rgba(18, 51, 51, 0.26) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: none !important;
}

#servicios.section,
.main-column > .compact-section,
.about-band {
  left: 50% !important;
  width: min(1320px, 100vw) !important;
  margin: 0 !important;
  padding-left: var(--home-pad) !important;
  padding-right: var(--home-pad) !important;
  transform: translateX(-50%) !important;
  background: var(--clinical-band) !important;
}

#servicios.section,
.main-column > .compact-section {
  padding-top: 18px !important;
  padding-bottom: 28px !important;
}

#servicios .section-heading,
.main-column > .compact-section .section-heading {
  width: 100% !important;
  margin: 0 auto 16px !important;
  padding: 0 !important;
  text-align: center !important;
}

#servicios .section-tag,
.main-column > .compact-section .section-tag,
.about-title-bar {
  color: #050505 !important;
  font-family: var(--display) !important;
  font-size: clamp(1.8rem, 2.3vw, 2.55rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.05 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

#servicios .section-tag::after,
.main-column > .compact-section .section-tag::after,
.about-title-bar::after {
  width: 86px !important;
  height: 2px !important;
  margin: 8px auto 0 !important;
  background: linear-gradient(90deg, transparent, var(--clinical-teal), transparent) !important;
}

#servicios .service-row,
.featured-treatment-grid,
.result-grid,
.product-strip,
.promo-admin-section .promo-band,
.promo-admin-section .promo-month-grid,
.footer-grid,
.site-footer .copyright {
  width: min(100%, var(--home-wide)) !important;
  max-width: var(--home-wide) !important;
}

#servicios .service-card,
.featured-treatment-grid .card,
.result-grid .result-tile,
.product-strip .product-card,
.promo-month-grid .side-promo-card,
.about-copy,
.clinic-photo {
  color: var(--clinical-ink) !important;
  border: 1px solid rgba(18, 51, 51, 0.1) !important;
  border-radius: 10px !important;
  background: var(--clinical-card) !important;
  box-shadow: var(--clinical-shadow) !important;
  backdrop-filter: none !important;
}

#servicios .service-card h3,
.featured-treatment-grid .card h3,
.product-strip .card h3,
.result-grid .result-tile p,
.about-copy h2,
.about-copy p,
.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a,
.footer-contact-list {
  color: var(--clinical-ink) !important;
}

.featured-treatment-grid .card p,
.product-strip .card p,
.promo-month-grid .side-promo-card p,
.featured-treatment-grid .benefit,
.featured-treatment-grid .eyebrow,
.product-strip .eyebrow,
.product-strip .meta-row span,
.small-note,
.section-subtitle {
  color: var(--clinical-muted) !important;
}

#servicios .service-icon,
#servicios .service-icon svg,
.about-kicker,
.eyebrow {
  color: #1597a0 !important;
}

.about-band {
  display: grid !important;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr) !important;
  gap: 18px !important;
  padding-top: 0 !important;
  padding-bottom: 28px !important;
}

.about-band > .about-title-bar {
  width: calc(100% + (var(--home-pad) * 2)) !important;
  min-height: auto !important;
  margin-left: calc(var(--home-pad) * -1) !important;
  margin-right: calc(var(--home-pad) * -1) !important;
  padding: 14px 0 8px !important;
  background: var(--clinical-band) !important;
}

.clinic-photo {
  min-height: 360px !important;
}

.about-copy {
  align-content: center !important;
  padding: clamp(24px, 3vw, 44px) !important;
}

.about-copy h2 {
  color: #050505 !important;
}

.promo-admin-section {
  background: var(--clinical-band) !important;
}

.promo-admin-section .promo-band {
  border-radius: 10px !important;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.25), transparent 34%),
    linear-gradient(135deg, #5e9da4 0%, #477f85 52%, #22656f 100%) !important;
  box-shadow: var(--clinical-shadow) !important;
}

.promo-admin-section .promo-copy h2,
.promo-admin-section .promo-copy p {
  color: #ffffff !important;
}

.promo-admin-section .promo-copy h2 {
  font-family: var(--display) !important;
  font-size: clamp(2rem, 3.2vw, 3.4rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: none !important;
}

.product-strip .card-media img,
.product-card .card-media img {
  background: #ffffff !important;
}

.site-footer {
  color: #ffffff !important;
  background: linear-gradient(135deg, #5e9da4 0%, #477f85 54%, #22656f 100%) !important;
}

.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a,
.site-footer .footer-contact-list {
  color: #ffffff !important;
}

@media (max-width: 1180px) {
  .hero-copy {
    max-width: none !important;
  }

  .hero-image {
    position: relative !important;
    height: auto !important;
    margin-top: 22px !important;
  }

  .hero-doctor-img,
  .hero-visual img,
  .hero-image img {
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .about-band {
    grid-template-columns: 1fr !important;
  }

  .about-copy .about-kicker,
  .about-copy h2,
  .about-copy p {
    text-align: center !important;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem) !important;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #servicios .section-tag,
  .main-column > .compact-section .section-tag,
  .about-title-bar {
    font-size: clamp(1.5rem, 8vw, 2.15rem) !important;
  }
}

/* Requested block refinements: hero, services photos, about, cards and promos */
.hero,
.hero[data-style="futuristic-editorial"] {
  width: min(1480px, calc(100vw - 24px)) !important;
}

.hero-container {
  min-height: clamp(610px, 76vh, 780px) !important;
  padding: clamp(48px, 5vw, 78px) clamp(32px, 5vw, 78px) clamp(40px, 4vw, 62px) !important;
}

.hero-copy {
  max-width: min(720px, 50vw) !important;
}

.hero h1 {
  max-width: 720px !important;
  font-size: clamp(3.35rem, 5.7vw, 6rem) !important;
}

.hero-benefits {
  max-width: 680px !important;
}

.hero-benefit {
  min-height: 124px !important;
}

#servicios .service-row {
  gap: clamp(18px, 1.8vw, 30px) !important;
}

#servicios .service-card {
  min-height: 190px !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-rows: auto 1fr auto !important;
  align-items: center !important;
  overflow: hidden !important;
}

#servicios .service-card .service-photo {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  border-bottom: 1px solid rgba(18, 51, 51, 0.08) !important;
}

#servicios .service-card .service-icon {
  margin: 18px auto 10px !important;
}

#servicios .service-card .service-photo + .service-icon {
  margin-top: 12px !important;
}

#servicios .service-card h3 {
  min-height: 34px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 12px 18px !important;
}

.about-band {
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.clinic-photo {
  height: 315px !important;
  min-height: 315px !important;
  max-height: 315px !important;
}

.clinic-photo img {
  object-fit: cover !important;
  object-position: center top !important;
}

.about-copy {
  min-height: 315px !important;
  padding: 32px 46px !important;
}

.about-copy h2 {
  margin-bottom: 10px !important;
  font-size: clamp(2rem, 3.4vw, 3.4rem) !important;
}

.about-copy p {
  margin-bottom: 12px !important;
  font-size: clamp(0.94rem, 1vw, 1.08rem) !important;
  line-height: 1.56 !important;
}

.featured-treatment-grid {
  align-items: stretch !important;
}

.featured-treatment-grid .card {
  height: 100% !important;
  min-height: 360px !important;
  display: grid !important;
  grid-template-rows: 170px 1fr !important;
}

.featured-treatment-grid .card-media,
.featured-treatment-grid .card-media img {
  height: 170px !important;
  min-height: 170px !important;
  aspect-ratio: auto !important;
}

.featured-treatment-grid .card-body {
  min-height: 190px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 22px 18px 18px !important;
}

.featured-treatment-grid .card h3 {
  min-height: 52px !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 0 8px !important;
}

.featured-treatment-grid .card p {
  min-height: 42px !important;
  margin: 0 0 12px !important;
}

.featured-treatment-grid .btn {
  margin-top: auto !important;
  min-width: 122px !important;
  min-height: 28px !important;
}

.promo-admin-section .section-subtitle,
[data-promo-main] {
  display: none !important;
}

.promo-admin-section .promo-month-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.promo-month-grid .side-promo-card {
  min-height: 300px !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto 1fr auto auto !important;
  align-items: start !important;
  gap: 10px !important;
  padding: 14px !important;
}

.promo-month-grid .side-promo-card h4,
.promo-month-grid .side-promo-card p,
.promo-month-grid .side-promo-card strong {
  text-align: center !important;
}

.promo-month-grid .side-promo-media,
.promo-month-grid .side-promo-media img {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
}

.promo-month-grid .side-promo-card .btn {
  width: 100% !important;
  margin-top: auto !important;
}

@media (max-width: 1180px) {
  .hero,
  .hero[data-style="futuristic-editorial"] {
    width: 100vw !important;
  }

  .hero-copy {
    max-width: none !important;
  }

  .about-band {
    grid-template-columns: 1fr !important;
  }

  .clinic-photo,
  .about-copy {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .clinic-photo {
    aspect-ratio: 4 / 3 !important;
  }

  .promo-admin-section .promo-month-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem) !important;
  }

  #servicios .service-card {
    min-height: 170px !important;
  }

  .featured-treatment-grid .card {
    min-height: 330px !important;
  }

  .promo-admin-section .promo-month-grid {
    grid-template-columns: 1fr !important;
  }
}

/* About photo correction: keep the doctor image complete and aligned */
.about-band {
  grid-template-columns: minmax(300px, 395px) minmax(0, 1fr) !important;
  gap: 22px !important;
}

.clinic-photo {
  height: 385px !important;
  min-height: 385px !important;
  max-height: 385px !important;
  border-radius: 10px !important;
}

.clinic-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center bottom !important;
}

.about-copy {
  min-height: 385px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

@media (max-width: 1180px) {
  .about-band {
    grid-template-columns: 1fr !important;
  }

  .clinic-photo {
    width: min(100%, 520px) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 347 / 379 !important;
    justify-self: center !important;
  }

  .about-copy {
    min-height: 0 !important;
  }
}

/* Width alignment correction: match lower sections with the expanded hero */
:root {
  --home-wide: min(1480px, calc(100vw - 24px));
  --home-pad: clamp(18px, 4vw, 72px);
}

.page-layout,
.main-column {
  width: 100% !important;
  max-width: none !important;
}

.main-column {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#servicios.section,
.main-column > .compact-section,
.about-band {
  left: 50% !important;
  width: var(--home-wide) !important;
  max-width: var(--home-wide) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: translateX(-50%) !important;
}

#servicios .service-row,
.featured-treatment-grid,
.promo-admin-section .promo-band,
.promo-admin-section .promo-month-grid,
.result-grid,
.product-strip {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 1180px) {
  #servicios.section,
  .main-column > .compact-section,
  .about-band {
    width: min(100%, calc(100vw - 24px)) !important;
    max-width: min(100%, calc(100vw - 24px)) !important;
  }
}

/* Full-screen home flow: hero and every lower block use the full viewport */
:root {
  --home-wide: min(1580px, calc(100vw - clamp(28px, 5vw, 96px)));
  --home-pad: clamp(18px, 4vw, 72px);
}

.site-main {
  width: 100vw !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

.container.page-layout {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.main-column {
  width: 100vw !important;
  max-width: 100vw !important;
  overflow: visible !important;
}

.hero,
.hero[data-style="futuristic-editorial"],
#servicios.section,
.about-band,
.main-column > .compact-section {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: none !important;
}

.hero-container,
#servicios .section-heading,
#servicios .service-row,
.about-band > .about-title-bar,
.featured-treatment-grid,
.promo-admin-section .promo-band,
.promo-admin-section .promo-month-grid,
.result-grid,
.product-strip,
.main-column > .compact-section .section-heading,
.main-column > .compact-section .center-actions,
.main-column > .compact-section .small-note {
  width: var(--home-wide) !important;
  max-width: var(--home-wide) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#servicios.section,
.main-column > .compact-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.about-band {
  grid-template-columns:
    minmax(300px, 395px)
    minmax(0, calc(var(--home-wide) - 417px)) !important;
  justify-content: center !important;
  padding-left: max(18px, calc((100vw - var(--home-wide)) / 2)) !important;
  padding-right: max(18px, calc((100vw - var(--home-wide)) / 2)) !important;
}

.about-band > .about-title-bar {
  grid-column: 1 / -1 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 1180px) {
  :root {
    --home-wide: min(100%, calc(100vw - 24px));
  }

  .about-band {
    grid-template-columns: 1fr !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* Footer bottom legal bar: always visible and full width */
.site-footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-bottom: 0 !important;
  overflow: hidden !important;
}

.site-footer .footer-grid {
  width: var(--home-wide) !important;
  max-width: var(--home-wide) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.site-footer .copyright,
footer.site-footer .container.copyright {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 24px 0 0 !important;
  padding: 11px max(24px, calc((100vw - var(--home-wide)) / 2)) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.55) !important;
  background: rgba(18, 51, 51, 0.08) !important;
  color: #ffffff !important;
  font-family: var(--font) !important;
  font-size: clamp(0.84rem, 1vw, 1rem) !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  text-align: center !important;
}

.site-footer .copyright span:first-child {
  text-align: left !important;
}

.site-footer .copyright span:last-child {
  text-align: right !important;
}

@media (max-width: 760px) {
  .site-footer .copyright,
  footer.site-footer .container.copyright {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    padding: 12px 18px !important;
  }

  .site-footer .copyright span,
  .site-footer .copyright span:first-child,
  .site-footer .copyright span:last-child {
    text-align: center !important;
  }
}

/* Hero touches the header: remove the top gap under the navbar */
.site-main {
  padding-top: 0 !important;
}

.hero,
.hero[data-style="futuristic-editorial"] {
  margin-top: 0 !important;
}

.hero-container {
  padding-top: clamp(34px, 4vw, 64px) !important;
}

/* Independent footer legal bar */
.site-footer .footer-legal-bar {
  position: relative !important;
  z-index: 5 !important;
  width: 100vw !important;
  min-height: 42px !important;
  margin: 24px 0 0 !important;
  padding: 10px max(24px, calc((100vw - var(--home-wide)) / 2)) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.55) !important;
  background: #5e9da4 !important;
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-family: var(--font) !important;
  font-size: clamp(0.86rem, 1vw, 1rem) !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
}

.site-footer .footer-legal-bar span {
  display: block !important;
  color: #ffffff !important;
  opacity: 1 !important;
  white-space: nowrap !important;
}

.site-footer .footer-legal-bar span:first-child {
  text-align: left !important;
}

.site-footer .footer-legal-bar span:nth-child(2) {
  text-align: center !important;
}

.site-footer .footer-legal-bar span:last-child {
  text-align: right !important;
}

@media (max-width: 760px) {
  .site-footer .footer-legal-bar {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    padding: 12px 18px !important;
    text-align: center !important;
  }

  .site-footer .footer-legal-bar span,
  .site-footer .footer-legal-bar span:first-child,
  .site-footer .footer-legal-bar span:nth-child(2),
  .site-footer .footer-legal-bar span:last-child {
    text-align: center !important;
    white-space: normal !important;
  }
}

/* Hero full-image background: use the new blurred photo across the whole hero */
.hero,
.hero[data-style="futuristic-editorial"] {
  background: #ffffff !important;
  overflow: hidden !important;
}

.hero-container {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.hero-grid {
  position: static !important;
  display: block !important;
  min-height: inherit !important;
}

.hero-image,
.hero-visual {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

.hero-image::before,
.hero-image::after,
.hero-visual::before,
.hero-visual::after {
  display: none !important;
  content: none !important;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.hero-copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(720px, 52vw) !important;
  max-width: min(720px, 52vw) !important;
}

@media (max-width: 900px) {
  .hero-copy {
    width: min(100%, 680px) !important;
    max-width: min(100%, 680px) !important;
  }

  .hero-doctor-img,
  .hero-visual img,
  .hero-image img {
    object-position: center top !important;
  }
}

/* Match the final hero photo ratio so the blurred sides are preserved */
.hero-container {
  aspect-ratio: 1672 / 941 !important;
  min-height: auto !important;
  height: auto !important;
  max-height: none !important;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  object-fit: cover !important;
  object-position: center center !important;
}

/* Hero edge-to-edge image: remove the side cut and fill the whole screen */
.hero,
.hero[data-style="futuristic-editorial"] {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background-image: none !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero-container {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: max(28px, calc((100vw - var(--home-wide)) / 2)) !important;
  padding-right: max(28px, calc((100vw - var(--home-wide)) / 2)) !important;
  background: transparent !important;
}

.hero-image,
.hero-visual {
  opacity: 0 !important;
}

/* Hero headline composition: match the clean three-line reference */
.hero-copy {
  width: min(850px, 58vw) !important;
  max-width: min(850px, 58vw) !important;
  padding-top: clamp(16px, 2vw, 34px) !important;
}

.hero h1 {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  max-width: 850px !important;
  margin: 0 0 clamp(16px, 1.7vw, 24px) !important;
  color: #5e9da4 !important;
  font-family: var(--display) !important;
  font-size: clamp(3.2rem, 5vw, 5.45rem) !important;
  font-weight: 500 !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

.hero h1 > span {
  display: block !important;
  white-space: nowrap !important;
}

.hero h1 .hero-accent {
  color: #5e9da4 !important;
}

.hero h1 .hero-strong {
  color: #050505 !important;
}

.hero-copy p {
  max-width: 600px !important;
  margin-bottom: clamp(22px, 2vw, 30px) !important;
  color: #123333 !important;
  font-size: clamp(1rem, 1.05vw, 1.18rem) !important;
  line-height: 1.75 !important;
}

@media (max-width: 980px) {
  .hero-copy {
    width: min(100%, 720px) !important;
    max-width: min(100%, 720px) !important;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 8vw, 4.2rem) !important;
  }
}

@media (max-width: 640px) {
  .hero h1 > span {
    white-space: normal !important;
  }
}

/* Hero proportion: keep the full-width image natural, not overly stretched */
.hero-container {
  aspect-ratio: auto !important;
  min-height: clamp(620px, 48vw, 820px) !important;
  height: auto !important;
}

.hero,
.hero[data-style="futuristic-editorial"] {
  background-size: cover !important;
  background-position: center center !important;
}

@media (max-width: 900px) {
  .hero-container {
    min-height: clamp(640px, 105vw, 780px) !important;
  }
}

/* Tighten hero headline lines: keep the phrase visually together */
.hero h1,
.hero[data-style="futuristic-editorial"] h1 {
  gap: 0 !important;
  row-gap: 0 !important;
  line-height: 0.92 !important;
}

.hero h1 > span,
.hero[data-style="futuristic-editorial"] h1 > span,
.hero h1 .hero-accent,
.hero h1 .hero-strong {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0.98 !important;
}

.hero h1 .hero-strong {
  margin-top: -0.04em !important;
}

/* Final hero title lock: JS-generated spans stay as three tight lines */
.hero-copy {
  width: min(960px, 60vw) !important;
  max-width: min(960px, 60vw) !important;
}

.hero h1,
.hero[data-style="futuristic-editorial"] h1 {
  max-width: 960px !important;
  font-size: clamp(3rem, 4.15vw, 4.95rem) !important;
  line-height: 1.02 !important;
}

.hero h1 > span {
  display: block !important;
  white-space: nowrap !important;
}

.hero h1 .hero-strong {
  margin-top: 0 !important;
}

/* Hard title fix: no old flex gaps, no broken lines, tighter editorial rhythm */
.hero h1,
.hero[data-style="futuristic-editorial"] h1 {
  display: block !important;
  width: max-content !important;
  max-width: min(1040px, 62vw) !important;
  margin: 0 0 clamp(16px, 1.6vw, 24px) !important;
  padding: 0 !important;
  font-size: clamp(3rem, 3.7vw, 4.45rem) !important;
  line-height: 0.9 !important;
}

.hero h1 .hero-line,
.hero h1 > span {
  display: block !important;
  width: max-content !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0.93 !important;
  white-space: nowrap !important;
}

.hero h1 .hero-line + .hero-line,
.hero h1 > span + span {
  margin-top: -0.03em !important;
}

.hero h1 .hero-strong {
  margin-top: -0.02em !important;
}

@media (max-width: 980px) {
  .hero h1,
  .hero[data-style="futuristic-editorial"] h1 {
    width: auto !important;
    max-width: 100% !important;
    font-size: clamp(2.45rem, 7.3vw, 4rem) !important;
  }
}

@media (max-width: 640px) {
  .hero h1 .hero-line,
  .hero h1 > span {
    width: auto !important;
    white-space: normal !important;
  }
}

/* Brand content connection polish */
.treatment-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 4px auto 10px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #123333;
  background: rgba(94, 157, 164, 0.14);
  border: 1px solid rgba(94, 157, 164, 0.26);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-map {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-map iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(18, 51, 51, 0.12);
}

.contact-map a,
.contact-panel a {
  color: #22656f;
  font-weight: 700;
  text-decoration: none;
}

.contact-panel .map-placeholder {
  display: none !important;
}

.page-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(94, 157, 164, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(246, 248, 248, 0.98), rgba(255, 255, 255, 0.96));
}

.page-hero h1,
.page-hero p {
  color: #123333;
}

.footer-legal-bar {
  width: min(100%, var(--home-wide, 1440px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 14px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--sans);
  font-size: clamp(0.86rem, 1vw, 1rem);
  text-align: center;
}

.footer-legal-bar span:first-child {
  text-align: left;
}

.footer-legal-bar span:last-child {
  text-align: right;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  width: min(100%, var(--home-wide, 1440px));
  max-width: calc(100vw - 48px);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 1.4vw, 18px);
  padding-right: clamp(10px, 1.4vw, 18px);
}

.faq-item {
  min-height: 100%;
  padding: clamp(18px, 2vw, 26px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(94, 157, 164, 0.16);
  box-shadow: 0 18px 40px rgba(18, 51, 51, 0.08);
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #123333;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  font-weight: 500;
}

.faq-item p {
  margin: 0;
  color: rgba(18, 51, 51, 0.74);
  line-height: 1.65;
}

.card-media img,
.side-promo-media img,
.promo-media img,
.result-visual img,
.clinic-photo img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card,
.service-card,
.side-promo-card,
.result-tile,
.faq-item {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover,
.service-card:hover,
.side-promo-card:hover,
.result-tile:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(18, 51, 51, 0.14);
  border-color: rgba(94, 157, 164, 0.36);
}

@media (max-width: 900px) {
  .faq-list,
  .footer-legal-bar {
    grid-template-columns: 1fr;
  }

  .faq-list {
    max-width: calc(100vw - 28px);
    padding-left: 0;
    padding-right: 0;
  }

  .footer-legal-bar,
  .footer-legal-bar span:first-child,
  .footer-legal-bar span:last-child {
    text-align: center;
  }
}

/* Hero balance: reduce empty lower space and give CTAs more presence */
@media (min-width: 981px) {
  .hero-container {
    min-height: clamp(560px, 44vw, 760px) !important;
    padding-top: clamp(34px, 3.4vw, 58px) !important;
    padding-bottom: clamp(24px, 2.8vw, 42px) !important;
    align-items: center !important;
  }

  .hero-copy {
    transform: translateY(clamp(8px, 1.15vw, 18px)) !important;
  }

  .hero h1,
  .hero[data-style="futuristic-editorial"] h1 {
    margin-bottom: clamp(20px, 1.9vw, 30px) !important;
    letter-spacing: 0.004em !important;
  }

  .hero-copy p {
    max-width: 680px !important;
    margin-bottom: clamp(26px, 2.25vw, 36px) !important;
    font-size: clamp(1.08rem, 1.08vw, 1.22rem) !important;
    line-height: 1.72 !important;
  }

  .hero-benefits {
    max-width: 720px !important;
    margin: 0 0 clamp(24px, 2.1vw, 34px) !important;
    gap: 16px !important;
  }

  .hero-benefit {
    min-height: 124px !important;
    padding: 18px 16px !important;
    border-radius: 10px !important;
  }

  .hero-benefit-icon {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 10px !important;
  }

  .hero-benefit span:last-child {
    font-size: clamp(0.98rem, 0.95vw, 1.08rem) !important;
    line-height: 1.18 !important;
  }

  .hero-actions {
    gap: clamp(20px, 2vw, 30px) !important;
    margin-top: 4px !important;
  }

  .hero-actions .btn {
    min-height: 56px !important;
    padding-inline: clamp(34px, 2.8vw, 48px) !important;
    border-radius: 999px !important;
    font-size: clamp(0.98rem, 0.98vw, 1.08rem) !important;
    font-weight: 800 !important;
  }

  .hero-actions .hero-primary {
    min-width: 220px !important;
  }

  .hero-actions .hero-whatsapp {
    min-width: 350px !important;
    background: rgba(255, 255, 255, 0.92) !important;
  }

  .hero-actions .hero-whatsapp .whatsapp-icon {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
  }
}

@media (max-width: 980px) {
  .hero-copy {
    transform: none !important;
  }
}

/* Product runway carousel */
.product-strip.is-product-carousel {
  display: block !important;
  overflow: hidden !important;
  width: min(100%, var(--home-wide, 1440px)) !important;
  max-width: calc(100vw - 36px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 10px 0 18px !important;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.product-marquee-track {
  display: flex !important;
  align-items: stretch !important;
  width: max-content !important;
  gap: clamp(22px, 2.4vw, 42px) !important;
  animation: productRunway 34s linear infinite;
  will-change: transform;
}

.product-strip.is-product-carousel:hover .product-marquee-track {
  animation-play-state: paused;
}

.product-strip.is-product-carousel .product-card {
  flex: 0 0 clamp(220px, 16.5vw, 286px) !important;
  width: clamp(220px, 16.5vw, 286px) !important;
  min-height: clamp(250px, 18vw, 320px) !important;
  display: grid !important;
  grid-template-rows: auto 1fr !important;
}

.product-strip.is-product-carousel .product-card:nth-child(n + 6) {
  display: grid !important;
}

.product-strip.is-product-carousel .card-media,
.product-strip.is-product-carousel .card-media img {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 0.78 !important;
}

.product-strip.is-product-carousel .card-body {
  display: grid !important;
  align-content: center !important;
  justify-items: center !important;
  min-height: 110px !important;
  text-align: center !important;
}

.product-strip.is-product-carousel .card h3 {
  font-size: clamp(1.15rem, 1.35vw, 1.55rem) !important;
  line-height: 1.05 !important;
}

.product-strip.is-product-carousel .meta-row strong {
  font-size: clamp(0.9rem, 0.95vw, 1.05rem) !important;
}

@keyframes productRunway {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - clamp(11px, 1.2vw, 21px)));
  }
}

@media (max-width: 700px) {
  .product-strip.is-product-carousel {
    max-width: calc(100vw - 20px) !important;
  }

  .product-marquee-track {
    gap: 16px !important;
    animation-duration: 28s;
  }

  .product-strip.is-product-carousel .product-card {
    flex-basis: 210px !important;
    width: 210px !important;
    min-height: 250px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-marquee-track {
    animation: none !important;
  }

  .product-strip.is-product-carousel {
    overflow-x: auto !important;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Testimonials edge fix: keep the last card fully rounded inside the section */
.testimonials-section .testimonial-layout {
  width: min(100%, var(--home-wide, 1440px)) !important;
  max-width: calc(100vw - 32px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
  box-sizing: border-box !important;
}

.testimonials-section [data-testimonials] {
  min-width: 0 !important;
  padding-right: 4px !important;
  box-sizing: border-box !important;
}

.testimonials-section .testimonial {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

/* Footer unified color */
.site-footer,
footer.site-footer {
  background: #5E9DA4 !important;
  background-image: none !important;
  color: #ffffff !important;
}

.site-footer .footer-legal-bar,
footer.site-footer .footer-legal-bar,
.site-footer .copyright,
footer.site-footer .container.copyright {
  background: #5E9DA4 !important;
  background-image: none !important;
  border-top-color: rgba(255, 255, 255, 0.55) !important;
}

/* Hero WhatsApp button text visibility */
.hero-actions .btn.hero-whatsapp,
.hero-actions a.hero-whatsapp {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  height: 56px !important;
  min-height: 56px !important;
  min-width: 330px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #123333 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(94, 157, 164, 0.9) !important;
  white-space: nowrap !important;
}

.hero-actions .btn.hero-primary,
.hero-actions a.hero-primary {
  height: 56px !important;
  min-height: 56px !important;
  min-width: 220px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero-actions .btn.hero-whatsapp .whatsapp-icon,
.hero-actions a.hero-whatsapp .whatsapp-icon {
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px !important;
  color: #ffffff !important;
  background: #25d366 !important;
}

.hero-actions .btn.hero-whatsapp .whatsapp-icon svg,
.hero-actions a.hero-whatsapp .whatsapp-icon svg {
  width: 24px !important;
  height: 24px !important;
  fill: currentColor !important;
}

/* Softer hero benefit icons without circular badge */
.hero-benefit-icon {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 8px !important;
  color: #1597a0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-benefit-icon svg {
  width: 34px !important;
  height: 34px !important;
  stroke-width: 1.65 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.hero-benefit-icon svg path,
.hero-benefit-icon svg circle,
.hero-benefit-icon svg rect {
  vector-effect: non-scaling-stroke;
}

.hero-benefit:hover .hero-benefit-icon {
  transform: translateY(-2px) scale(1.04) !important;
}

@media (min-width: 981px) {
  .hero-benefit-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .hero-benefit-icon svg {
    width: 35px !important;
    height: 35px !important;
  }
}

/* Smaller, calmer promotions hero card */
.promo-admin-section .promo-band {
  min-height: clamp(260px, 23vw, 350px) !important;
  max-width: min(1180px, calc(100vw - 48px)) !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr) !important;
}

.promo-admin-section .promo-copy {
  padding: clamp(24px, 3vw, 44px) !important;
  gap: 10px !important;
}

.promo-admin-section .promo-copy h2 {
  font-size: clamp(1.75rem, 2.45vw, 2.8rem) !important;
  line-height: 1.02 !important;
}

.promo-admin-section .promo-copy p {
  font-size: clamp(0.92rem, 0.96vw, 1.05rem) !important;
  line-height: 1.5 !important;
  margin-bottom: 10px !important;
}

.promo-admin-section .promo-media img {
  min-height: clamp(240px, 22vw, 340px) !important;
}

@media (max-width: 900px) {
  .promo-admin-section .promo-band {
    grid-template-columns: 1fr !important;
    max-width: calc(100vw - 28px) !important;
  }

  .promo-admin-section .promo-media img {
    min-height: 220px !important;
  }
}

/* Promotions typography and color cleanup */
.promo-admin-section .promo-copy,
.promo-month-grid .side-promo-card {
  font-family: var(--font-body) !important;
}

.promo-admin-section .promo-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82) !important;
  font-family: var(--font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.promo-admin-section .promo-copy h2,
.promo-month-grid .side-promo-card h4 {
  font-family: var(--font-display) !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.promo-admin-section .promo-copy h2 {
  color: #ffffff !important;
  text-shadow: none !important;
}

.promo-admin-section .promo-copy p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
}

.promo-admin-section .promo-price {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-height: 38px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.promo-month-grid .side-promo-card {
  color: #123333 !important;
}

.promo-month-grid .side-promo-card h4 {
  color: #123333 !important;
  font-size: clamp(1.12rem, 1.35vw, 1.45rem) !important;
  line-height: 1.08 !important;
  margin: 14px 18px 8px !important;
  text-shadow: none !important;
}

.promo-month-grid .side-promo-card p {
  color: rgba(18, 51, 51, 0.72) !important;
  font-family: var(--font-body) !important;
  font-size: 0.92rem !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  margin: 0 18px 12px !important;
  text-shadow: none !important;
}

.promo-month-grid .side-promo-card strong {
  color: #5E9DA4 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

.promo-month-grid .side-promo-card .btn,
.promo-admin-section .promo-copy .btn {
  font-family: var(--font-body) !important;
  background: #5E9DA4 !important;
  border-color: #5E9DA4 !important;
  color: #ffffff !important;
  text-shadow: none !important;
  box-shadow: 0 12px 28px rgba(94, 157, 164, 0.2) !important;
}

/* Header and hero cleanup requested: remove benefit cards and rebalance CTA area */
.site-header {
  min-height: 76px !important;
}

.site-header .header-inner {
  min-height: 76px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.site-header .brand {
  gap: 12px !important;
}

.site-header .brand-logo {
  width: 50px !important;
  height: 50px !important;
}

.site-header .brand-text {
  font-size: 1.18rem !important;
  line-height: 1.04 !important;
}

.site-header .brand-text small {
  margin-top: 4px !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.03em !important;
}

.site-header .nav-links {
  gap: clamp(24px, 2vw, 34px) !important;
}

.site-header .nav-links a {
  font-size: 1rem !important;
}

.site-header .btn-header {
  min-height: 50px !important;
  padding: 0 34px !important;
  font-size: 1rem !important;
}

.hero .hero-benefits {
  display: none !important;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  max-width: 780px;
  margin: clamp(24px, 2.4vw, 34px) 0 clamp(26px, 2.6vw, 38px);
  color: #22656f;
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 600;
  line-height: 1.35;
}

.hero-trust span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 16px;
  white-space: nowrap;
}

.hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #5e9da4;
  box-shadow: 0 0 0 5px rgba(94, 157, 164, 0.12);
}

.hero .hero-actions {
  gap: clamp(18px, 2vw, 30px) !important;
  margin-top: 0 !important;
}

.hero-actions .btn.hero-primary,
.hero-actions a.hero-primary,
.hero-actions .btn.hero-whatsapp,
.hero-actions a.hero-whatsapp {
  height: 58px !important;
  min-height: 58px !important;
  border-radius: 999px !important;
}

.hero-actions .btn.hero-primary,
.hero-actions a.hero-primary {
  min-width: 230px !important;
}

.hero-actions .btn.hero-whatsapp,
.hero-actions a.hero-whatsapp {
  min-width: 360px !important;
}

@media (min-width: 981px) {
  .hero-copy {
    max-width: 850px !important;
  }

  .hero h1,
  .hero[data-style="futuristic-editorial"] h1 {
    max-width: 860px !important;
    margin-bottom: clamp(24px, 2.2vw, 34px) !important;
    line-height: 0.98 !important;
  }

  .hero-copy p {
    max-width: 760px !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px !important;
  }

  .site-header .header-inner {
    min-height: 68px !important;
  }

  .site-header .brand-logo {
    width: 44px !important;
    height: 44px !important;
  }

  .hero-trust {
    max-width: none;
    margin: 20px 0 24px;
    gap: 9px 16px;
  }

  .hero-trust span {
    white-space: normal;
  }

  .hero-actions .btn.hero-primary,
  .hero-actions a.hero-primary,
  .hero-actions .btn.hero-whatsapp,
  .hero-actions a.hero-whatsapp {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* Hero clean space: user requested no extra info between copy and buttons */
.hero-trust {
  display: none !important;
}

.hero .hero-actions {
  margin-top: clamp(32px, 3.2vw, 50px) !important;
}

/* Hero left block balance: larger type and more centered vertical placement */
@media (min-width: 981px) {
  .hero .hero-grid {
    align-items: center !important;
  }

  .hero .hero-copy {
    transform: translateY(clamp(24px, 3vw, 54px)) !important;
    padding-bottom: clamp(18px, 2vw, 34px) !important;
  }

  .hero h1,
  .hero[data-style="futuristic-editorial"] h1 {
    font-size: clamp(4.75rem, 5.35vw, 6.45rem) !important;
    max-width: 1020px !important;
    line-height: 0.95 !important;
    margin-bottom: clamp(24px, 2.4vw, 38px) !important;
  }

  .hero-copy p,
  .hero [data-hero-text] {
    max-width: 820px !important;
    font-size: clamp(1.18rem, 1.16vw, 1.34rem) !important;
    line-height: 1.7 !important;
  }

  .hero .hero-actions {
    margin-top: clamp(36px, 3.8vw, 62px) !important;
  }
}

@media (max-width: 980px) {
  .hero .hero-copy {
    transform: none !important;
  }
}

/* Hero title one step smaller */
@media (min-width: 981px) {
  .hero h1,
  .hero[data-style="futuristic-editorial"] h1 {
    font-size: clamp(4.25rem, 4.8vw, 5.75rem) !important;
    max-width: 920px !important;
    line-height: 0.98 !important;
  }
}

/* Hero description and subtle next-step note */
.hero-copy p[data-hero-text],
.hero [data-hero-text] {
  font-size: clamp(1.28rem, 1.24vw, 1.46rem) !important;
  line-height: 1.68 !important;
  max-width: 900px !important;
}

.hero-note {
  max-width: 620px !important;
  margin: 18px 0 0 !important;
  color: rgba(18, 51, 51, 0.66) !important;
  font-family: var(--sans) !important;
  font-size: clamp(0.92rem, 0.9vw, 1.02rem) !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

@media (max-width: 980px) {
.hero-copy p[data-hero-text],
.hero [data-hero-text] {
  font-size: 1.05rem !important;
  max-width: none !important;
}

  .hero-note {
    text-align: center !important;
    max-width: none !important;
  }
}

/* Services page: one public section instead of duplicated treatments menu */
.service-card {
  text-decoration: none !important;
  color: inherit !important;
}

.services-page-hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(94, 157, 164, 0.18), transparent 34%),
    linear-gradient(135deg, #f6f8f8 0%, #ffffff 100%) !important;
}

.service-detail-grid {
  display: grid;
  gap: clamp(22px, 2.2vw, 34px);
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  padding: clamp(18px, 2.2vw, 34px);
  border: 1px solid rgba(94, 157, 164, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 54px rgba(18, 51, 51, 0.1);
  scroll-margin-top: 110px;
}

.service-detail-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
}

.service-detail-card:nth-child(even) img {
  order: 2;
}

.service-detail-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  background: #eef5f5;
  box-shadow: 0 18px 36px rgba(18, 51, 51, 0.12);
}

.service-detail-card h2 {
  margin: 8px 0 12px;
  color: #123333;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 500;
  line-height: 1.03;
}

.service-detail-card p {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(18, 51, 51, 0.76);
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  line-height: 1.75;
}

@media (max-width: 860px) {
  .service-detail-card,
  .service-detail-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-detail-card:nth-child(even) img {
    order: 0;
  }
}

/* Home services now come directly from admin services */
#servicios .service-row[data-home-services] {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important;
  align-items: stretch !important;
  max-width: min(1240px, calc(100vw - 42px)) !important;
}

#servicios .service-data-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  min-height: 320px !important;
  padding: 0 !important;
  overflow: hidden !important;
  text-align: left !important;
  border-color: rgba(94, 157, 164, 0.24) !important;
}

#servicios .service-data-card .service-photo {
  display: block !important;
  width: 100% !important;
  height: 150px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
}

#servicios .service-data-card .service-kicker {
  margin: 16px 18px 7px !important;
  color: #1597a0 !important;
  font-family: var(--sans) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

#servicios .service-data-card h3 {
  display: block !important;
  min-height: 0 !important;
  max-width: none !important;
  margin: 0 18px 8px !important;
  color: #123333 !important;
  font-family: var(--display) !important;
  font-size: clamp(1.25rem, 1.35vw, 1.65rem) !important;
  font-weight: 500 !important;
  line-height: 1.08 !important;
}

#servicios .service-data-card p {
  margin: 0 18px 14px !important;
  color: rgba(18, 51, 51, 0.68) !important;
  font-family: var(--sans) !important;
  font-size: 0.9rem !important;
  line-height: 1.52 !important;
}

#servicios .service-price {
  width: fit-content !important;
  margin: auto 18px 18px !important;
  padding: 6px 13px !important;
  border-radius: 999px !important;
  color: #123333 !important;
  background: rgba(94, 157, 164, 0.14) !important;
  font-family: var(--sans) !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
}

/* Service runway: matches the approved product carousel behavior. */
#servicios .service-row.is-service-carousel {
  display: block !important;
  overflow: hidden !important;
  width: min(100%, var(--home-wide, 1440px)) !important;
  max-width: calc(100vw - 36px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 10px 0 18px !important;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.service-marquee-track {
  display: flex !important;
  align-items: stretch !important;
  width: max-content !important;
  gap: clamp(22px, 2.4vw, 42px) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  animation: productRunway 34s linear infinite;
  will-change: transform;
}

#servicios .service-row.is-service-carousel:hover .service-marquee-track {
  animation-play-state: paused;
}

#servicios .service-row.is-service-carousel .service-data-card {
  flex: 0 0 clamp(230px, 17vw, 300px) !important;
  width: clamp(230px, 17vw, 300px) !important;
  min-height: clamp(300px, 23vw, 380px) !important;
  opacity: 0.98 !important;
  transform: translateZ(0) !important;
}

.product-nav-card,
#servicios .service-data-card {
  cursor: pointer !important;
}

.product-nav-card {
  color: inherit !important;
  text-decoration: none !important;
}

.card.is-selected-target,
.treatment-card.is-selected-target,
.product-card.is-selected-target {
  outline: 3px solid rgba(94, 157, 164, 0.78) !important;
  outline-offset: 5px !important;
  box-shadow: 0 28px 70px rgba(18, 51, 51, 0.2) !important;
}

@media (max-width: 700px) {
  #servicios .service-row.is-service-carousel {
    max-width: calc(100vw - 20px) !important;
  }

  .service-marquee-track {
    gap: 16px !important;
    animation-duration: 28s;
  }

  #servicios .service-row.is-service-carousel .service-data-card {
    flex-basis: 220px !important;
    width: 220px !important;
    min-height: 310px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-marquee-track {
    animation: none !important;
  }

  #servicios .service-row.is-service-carousel {
    overflow-x: auto !important;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Cleaner section titles: no side bars, underline follows text width */
#servicios .section-tag,
.main-column > .compact-section .section-tag,
.section .section-tag {
  display: inline-block !important;
  width: auto !important;
  max-width: calc(100vw - 32px) !important;
  padding: 0 0 8px !important;
  color: #050505 !important;
  font-family: var(--display) !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.05 !important;
  text-align: center !important;
}

#servicios .section-tag::after,
.main-column > .compact-section .section-tag::after,
.section .section-tag::after {
  content: "" !important;
  display: block !important;
  width: 100% !important;
  height: 2px !important;
  margin: 9px 0 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, transparent, #5e9da4 12%, #5e9da4 88%, transparent) !important;
}

/* Final promotions text system: two fonts, calm colors */
#promociones .promo-copy .eyebrow,
#promociones .promo-copy p,
#promociones .promo-price,
#promociones .side-promo-card p,
#promociones .side-promo-card strong,
#promociones .side-promo-card .btn,
#promociones .promo-copy .btn {
  font-family: var(--font-body) !important;
  text-shadow: none !important;
}

#promociones .promo-copy h2,
#promociones .side-promo-card h4 {
  font-family: var(--font-display) !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

#promociones .promo-copy h2,
#promociones .promo-copy p,
#promociones .promo-copy .eyebrow,
#promociones .promo-price {
  color: #ffffff !important;
}

#promociones .promo-price {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  box-shadow: none !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
}

#promociones .side-promo-card h4 {
  color: #123333 !important;
}

#promociones .side-promo-card p {
  color: rgba(18, 51, 51, 0.72) !important;
  font-weight: 400 !important;
}

#promociones .side-promo-card strong {
  color: #5e9da4 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}

#promociones .side-promo-card .btn,
#promociones .promo-copy .btn {
  background: #5e9da4 !important;
  border-color: #5e9da4 !important;
  color: #ffffff !important;
}

/* Products color alignment with promotions */
#productos .text-link,
.products-home-section .text-link,
.product-strip + .text-link,
.product-strip .meta-row strong,
.product-strip.is-product-carousel .meta-row strong,
.product-card .meta-row strong {
  color: #5e9da4 !important;
  text-shadow: none !important;
}

#productos .text-link,
.products-home-section .text-link,
.section-heading .text-link {
  color: #5e9da4 !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
}

.product-strip .meta-row strong,
.product-strip.is-product-carousel .meta-row strong,
.product-card .meta-row strong {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
}

.main-column > section.products-home-section .section-heading > a.text-link[href="productos.html"],
.main-column > section.products-home-section .section-heading > a.text-link[href="productos.html"]:visited,
.main-column > section.products-home-section .section-heading > a.text-link[href="productos.html"]:hover {
  color: #5e9da4 !important;
  text-shadow: none !important;
}

/* Final WhatsApp button alignment */
.whatsapp-float {
  position: fixed !important;
  left: 24px !important;
  right: auto !important;
  bottom: 82px !important;
  z-index: 80 !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  background: #25d366 !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28) !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: none !important;
  display: none !important;
}

.whatsapp-float svg {
  display: block !important;
  width: 30px !important;
  height: 30px !important;
  fill: currentColor !important;
  transform: translateY(0) !important;
}

.hero-actions .hero-whatsapp .whatsapp-icon {
  display: grid !important;
  place-items: center !important;
  flex: 0 0 34px !important;
  width: 34px !important;
  height: 34px !important;
  line-height: 0 !important;
}

.hero-actions .hero-whatsapp .whatsapp-icon svg {
  display: block !important;
  width: 21px !important;
  height: 21px !important;
  transform: translateY(0) !important;
}

.hero-actions .btn.hero-whatsapp .whatsapp-icon,
.hero-actions a.hero-whatsapp .whatsapp-icon {
  display: grid !important;
  place-items: center !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
}

.hero-actions .btn.hero-whatsapp .whatsapp-icon svg,
.hero-actions a.hero-whatsapp .whatsapp-icon svg {
  display: block !important;
  width: 21px !important;
  height: 21px !important;
  margin: 0 !important;
  transform: translateY(0) !important;
}

@media (max-width: 700px) {
  .whatsapp-float {
    left: 18px !important;
    bottom: 72px !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
  }

  .whatsapp-float svg {
    width: 28px !important;
    height: 28px !important;
  }
}

/* Polished floating WhatsApp button - shared public pages */
body .whatsapp-float,
body a.whatsapp-float {
  position: fixed !important;
  left: 24px !important;
  right: auto !important;
  bottom: 74px !important;
  z-index: 999 !important;
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: #25d366 !important;
  border: 2px solid rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32) !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

body .whatsapp-float::before,
body .whatsapp-float::after {
  content: none !important;
  display: none !important;
}

body .whatsapp-float svg {
  display: block !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  margin: 0 !important;
  fill: currentColor !important;
  transform: none !important;
}

/* Optical centering: the WhatsApp bubble tail makes the icon look low-left. */
body .whatsapp-float > svg {
  transform: none !important;
  transform-origin: center !important;
}

body .whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 22px 44px rgba(37, 211, 102, 0.38) !important;
}

@media (max-width: 700px) {
  body .whatsapp-float,
  body a.whatsapp-float {
    left: 18px !important;
    bottom: 66px !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
  }

  body .whatsapp-float svg {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    min-height: 29px !important;
  }

  body .whatsapp-float > svg {
    transform: none !important;
  }
}

/* WhatsApp floating button final clean logo */
body a.whatsapp-float {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #25d366 !important;
  border: 0 !important;
  border-radius: 50% !important;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28) !important;
  color: #ffffff !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body a.whatsapp-float svg,
body a.whatsapp-float > svg {
  width: 31px !important;
  height: 31px !important;
  min-width: 31px !important;
  min-height: 31px !important;
  display: block !important;
  fill: #ffffff !important;
  margin: 0 !important;
  transform: none !important;
}

@media (max-width: 700px) {
  body a.whatsapp-float {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
  }

  body a.whatsapp-float svg,
  body a.whatsapp-float > svg {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    transform: none !important;
  }
}

/* Final responsive layer for public pages */
html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, 1180px) !important;
  }

  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
  }

  .header-inner {
    min-height: 66px !important;
    gap: 12px !important;
  }

  .brand {
    min-width: 0 !important;
    max-width: calc(100% - 56px) !important;
    gap: 9px !important;
  }

  .brand-logo {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
  }

  .brand-text {
    min-width: 0 !important;
    font-size: 1rem !important;
    line-height: 1.05 !important;
  }

  .brand-text small {
    display: block !important;
    max-width: 210px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 0.58rem !important;
    line-height: 1.2 !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(94, 157, 164, 0.28) !important;
    background: #ffffff !important;
  }

  .main-nav {
    position: fixed !important;
    top: 74px !important;
    left: 14px !important;
    right: 14px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    width: auto !important;
    max-height: calc(100dvh - 92px) !important;
    overflow-y: auto !important;
    padding: 18px !important;
    border: 1px solid rgba(94, 157, 164, 0.18) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 22px 60px rgba(18, 51, 51, 0.16) !important;
    backdrop-filter: blur(18px) !important;
  }

  .main-nav.is-open {
    display: flex !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 4px !important;
  }

  .nav-links a {
    width: 100% !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    color: #123333 !important;
    font-size: 0.95rem !important;
    text-align: left !important;
  }

  .nav-links a:hover {
    background: rgba(94, 157, 164, 0.1) !important;
  }

  .header-actions,
  .main-nav .header-actions {
    width: 100% !important;
  }

  .header-actions .btn,
  .main-nav .btn-header {
    width: 100% !important;
    min-height: 44px !important;
    justify-content: center !important;
  }

  .page-hero {
    padding: 46px 0 30px !important;
  }

  .page-hero h1 {
    font-size: clamp(2.1rem, 9vw, 3.2rem) !important;
    line-height: 1.02 !important;
  }

  .contact-grid,
  .booking-panel,
  .service-detail-card,
  .service-detail-card:nth-child(even) {
    grid-template-columns: 1fr !important;
  }

  .service-detail-card:nth-child(even) img {
    order: 0 !important;
  }

  .catalog-grid,
  .treatments-grid,
  .grid-3,
  .grid-4,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body {
    background: #eef5f4 !important;
  }

  .site-main {
    padding-top: 0 !important;
  }

  .container.page-layout,
  .page-layout,
  .main-column {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    overflow: hidden !important;
  }

  .hero {
    width: 100vw !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .hero-container {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: auto !important;
    aspect-ratio: auto !important;
    height: auto !important;
    padding: 30px 20px 34px !important;
    background-position: 66% top !important;
    background-size: cover !important;
  }

  .hero-container::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.5) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.72) 100%) !important;
  }

  .hero-grid {
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    transform: none !important;
  }

  .hero .eyebrow,
  .hero-meta,
  .hero-image {
    display: none !important;
  }

  .hero h1,
  .hero[data-style="futuristic-editorial"] h1 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 18px !important;
    font-size: clamp(2.5rem, 12.4vw, 3.45rem) !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
  }

  .hero h1 > span,
  .hero h1 .hero-line,
  .hero h1 .hero-accent,
  .hero h1 .hero-strong {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
  }

  .hero-copy p[data-hero-text],
  .hero [data-hero-text] {
    max-width: 96% !important;
    margin: 0 0 28px !important;
    color: #123333 !important;
    font-size: 1.02rem !important;
    line-height: 1.65 !important;
  }

  .hero-note {
    display: block !important;
    max-width: 100% !important;
    margin: 14px 0 0 !important;
    text-align: center !important;
    color: rgba(18, 51, 51, 0.72) !important;
    font-size: 0.88rem !important;
  }

  .hero .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 0 !important;
    width: 100% !important;
    max-width: 420px !important;
  }

  .hero-actions .btn.hero-primary,
  .hero-actions a.hero-primary,
  .hero-actions .btn.hero-whatsapp,
  .hero-actions a.hero-whatsapp {
    width: 100% !important;
    min-width: 0 !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 0 20px !important;
    font-size: 0.95rem !important;
  }

  .hero-actions .btn.hero-whatsapp,
  .hero-actions a.hero-whatsapp {
    justify-content: center !important;
  }

  .home-highlight-grid,
  .about-band,
  .main-column > .compact-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .about-band,
  .home-highlight-grid,
  .reservation-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .about-copy,
  .clinic-photo,
  .contact-panel,
  .service-detail-card,
  .card,
  .testimonial,
  .faq-list article {
    border-radius: 14px !important;
  }

  .clinic-photo img,
  .service-detail-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
  }

  .section-heading,
  .main-column > .compact-section .section-heading {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
  }

  .main-column > .compact-section .section-tag,
  .section .section-tag,
  .about-title-bar {
    max-width: 100% !important;
    font-size: clamp(1.85rem, 9vw, 2.45rem) !important;
    line-height: 1.05 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .featured-treatment-grid,
  .result-grid,
  .promo-admin-section .promo-month-grid,
  .catalog-grid,
  .treatments-grid,
  .grid-3,
  .grid-4,
  .faq-list {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .featured-treatment-grid .card,
  .product-strip .product-card,
  .promo-month-grid .side-promo-card,
  .result-grid .result-tile,
  .catalog-grid .card,
  .treatments-grid .card {
    width: 100% !important;
    min-width: 0 !important;
    min-height: auto !important;
  }

  .featured-treatment-grid .card-media,
  .featured-treatment-grid .card-media img,
  .card-media,
  .card-media img,
  .side-promo-media,
  .side-promo-media img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 10 !important;
    object-fit: cover !important;
  }

  .product-strip.is-product-carousel,
  #servicios .service-row.is-service-carousel {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 4px 0 10px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  .product-marquee-track,
  .service-marquee-track {
    animation: none !important;
    gap: 14px !important;
    width: max-content !important;
  }

  .product-strip.is-product-carousel .product-card,
  #servicios .service-row.is-service-carousel .service-data-card {
    flex: 0 0 76vw !important;
    width: 76vw !important;
    max-width: 310px !important;
    scroll-snap-align: center !important;
  }

  .promo-admin-section .promo-band {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    border-radius: 14px !important;
    overflow: hidden !important;
  }

  .promo-admin-section .promo-copy {
    padding: 28px 22px !important;
    text-align: left !important;
  }

  .promo-admin-section .promo-copy h2 {
    font-size: clamp(2rem, 10vw, 2.7rem) !important;
  }

  .promo-admin-section .promo-media img {
    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 10 !important;
    object-fit: cover !important;
  }

  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .contact-panel {
    padding: 22px !important;
  }

  input,
  select,
  textarea,
  button {
    max-width: 100% !important;
  }

  .site-footer,
  footer.site-footer {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 34px 0 0 !important;
  }

  .site-footer .footer-grid,
  footer.site-footer .footer-grid {
    width: min(100% - 28px, 1180px) !important;
    max-width: min(100% - 28px, 1180px) !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: center !important;
  }

  .footer-brand,
  .social-row,
  .footer-contact-list li {
    justify-content: center !important;
  }

  .footer-map {
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  .site-footer .footer-legal-bar,
  .footer-legal-bar {
    width: 100vw !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom)) !important;
    text-align: center !important;
  }

  .site-footer .footer-legal-bar span,
  .footer-legal-bar span {
    text-align: center !important;
    white-space: normal !important;
  }

  body a.whatsapp-float {
    left: 16px !important;
    bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
  }

  body a.whatsapp-float svg {
    width: 29px !important;
    height: 29px !important;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1180px) !important;
  }

  .brand-text {
    font-size: 0.92rem !important;
  }

  .brand-text small {
    max-width: 168px !important;
  }

  .hero-container {
    padding: 26px 16px 30px !important;
  }

  .hero h1,
  .hero[data-style="futuristic-editorial"] h1 {
    font-size: clamp(2.2rem, 12vw, 3rem) !important;
  }

  .hero-copy p[data-hero-text],
  .hero [data-hero-text] {
    font-size: 0.98rem !important;
  }

  .product-strip.is-product-carousel .product-card,
  #servicios .service-row.is-service-carousel .service-data-card {
    flex-basis: 82vw !important;
    width: 82vw !important;
  }
}

/* Product page filters */
.product-toolbar {
  display: grid !important;
  grid-template-columns: minmax(280px, 1fr) minmax(210px, 300px);
  align-items: center;
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto 34px;
}

.product-toolbar .product-search-input,
.product-toolbar select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(94, 157, 164, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  box-shadow: 0 14px 34px rgba(18, 51, 51, 0.07);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-toolbar .product-search-input {
  padding: 0 18px 0 46px;
  background-image:
    linear-gradient(transparent, transparent),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235E9DA4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E");
  background-position: 0 0, 16px 50%;
  background-repeat: no-repeat;
  background-size: auto, 18px 18px;
}

.product-toolbar select {
  padding: 0 42px 0 16px;
  cursor: pointer;
}

.product-toolbar .product-search-input::placeholder {
  color: rgba(18, 51, 51, 0.58);
}

.product-toolbar .product-search-input:focus,
.product-toolbar select:focus {
  border-color: #5e9da4;
  box-shadow: 0 16px 38px rgba(94, 157, 164, 0.18);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .product-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .product-toolbar .product-search-input,
  .product-toolbar select {
    min-height: 46px;
    font-size: 0.92rem;
  }
}

/* Delicate promotions carousel transition */
#promociones .promo-band {
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease,
    box-shadow 320ms ease !important;
}

#promociones .promo-band.is-promo-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

#promociones .promo-band.is-promo-changing {
  opacity: 0.72;
  transform: translate3d(0, 4px, 0) scale(0.992);
  filter: blur(2px);
}

#promociones .promo-media img {
  transition:
    opacity 680ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 680ms ease !important;
}

#promociones .promo-band.is-promo-visible .promo-media img {
  opacity: 1;
  transform: scale(1);
}

#promociones .promo-band.is-promo-changing .promo-media img {
  opacity: 0.82;
  transform: scale(1.015);
  filter: saturate(0.96);
}

#promociones .promo-month-grid.is-promo-rotating .side-promo-card {
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  #promociones .promo-band,
  #promociones .promo-media img {
    transition: none !important;
  }
}

/* About section: unified premium composition */
#sobre-mi.about-band {
  width: min(100% - 48px, 1260px) !important;
  max-width: 1260px !important;
  margin: 0 auto !important;
  padding: clamp(26px, 3.2vw, 46px) !important;
  display: grid !important;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.58fr) !important;
  grid-template-areas:
    "title title"
    "photo copy" !important;
  gap: clamp(22px, 2.4vw, 34px) !important;
  align-items: stretch !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 12% 12%, rgba(94, 157, 164, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 250, 250, 0.58)) !important;
  box-shadow: 0 28px 80px rgba(18, 51, 51, 0.12) !important;
  overflow: hidden !important;
}

#sobre-mi .about-title-bar {
  grid-area: title !important;
  width: 100% !important;
  min-height: auto !important;
  margin: 0 0 2px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#sobre-mi.about-band,
#sobre-mi.about-band::before {
  background-color: transparent !important;
}

#sobre-mi .clinic-photo {
  grid-area: photo !important;
  width: 100% !important;
  min-height: clamp(320px, 28vw, 430px) !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.78) !important;
  border-radius: 20px !important;
  background: transparent !important;
  box-shadow: 0 18px 42px rgba(18, 51, 51, 0.12) !important;
  overflow: hidden !important;
}

#sobre-mi .clinic-photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: inherit !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
}

#sobre-mi .about-copy {
  grid-area: copy !important;
  min-height: clamp(320px, 28vw, 430px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: clamp(28px, 4.4vw, 62px) !important;
  border: 1px solid rgba(94, 157, 164, 0.14) !important;
  border-radius: 20px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38)) !important;
  box-shadow: none !important;
}

#sobre-mi .about-copy h2 {
  margin-bottom: 14px !important;
}

#sobre-mi .about-copy p {
  max-width: 820px !important;
}

@media (max-width: 860px) {
  #sobre-mi.about-band {
    width: min(100% - 28px, 760px) !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "photo"
      "copy" !important;
    padding: 22px !important;
    gap: 18px !important;
  }

  #sobre-mi .clinic-photo,
  #sobre-mi .about-copy {
    min-height: auto !important;
  }

  #sobre-mi .clinic-photo {
    aspect-ratio: 4 / 3 !important;
  }

  #sobre-mi .about-copy {
    padding: 26px 20px !important;
  }
}

/* About section: editorial white banner */
#sobre-mi.about-band {
  width: min(100% - 48px, 1280px) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr) !important;
  grid-template-areas:
    "title title"
    "copy photo" !important;
  gap: 0 !important;
  align-items: stretch !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#sobre-mi .about-title-bar {
  grid-area: title !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
}

#sobre-mi .about-copy {
  grid-area: copy !important;
  min-height: clamp(360px, 30vw, 470px) !important;
  margin: 0 !important;
  padding: clamp(40px, 5vw, 76px) clamp(34px, 5vw, 76px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 34px 0 0 34px !important;
  background:
    radial-gradient(circle at 14% 18%, rgba(94, 157, 164, 0.08), transparent 36%),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 72%, rgba(255, 255, 255, 0.78) 100%) !important;
  box-shadow: none !important;
  position: relative !important;
  z-index: 2 !important;
}

#sobre-mi .about-copy h2 {
  margin-bottom: 16px !important;
}

#sobre-mi .about-copy p {
  max-width: 760px !important;
}

#sobre-mi .about-copy .btn {
  width: fit-content !important;
  margin-top: 14px !important;
}

#sobre-mi .clinic-photo {
  grid-area: photo !important;
  width: 100% !important;
  min-height: clamp(360px, 30vw, 470px) !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 34px 34px 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  overflow: hidden !important;
  position: relative !important;
  z-index: 1 !important;
}

#sobre-mi .clinic-photo::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 38% !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0) 100%) !important;
}

#sobre-mi .clinic-photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: inherit !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.01) !important;
}

@media (max-width: 860px) {
  #sobre-mi.about-band {
    width: min(100% - 28px, 760px) !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "photo"
      "copy" !important;
  }

  #sobre-mi .about-title-bar {
    margin-bottom: 18px !important;
  }

  #sobre-mi .clinic-photo {
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    border-radius: 26px 26px 0 0 !important;
  }

  #sobre-mi .clinic-photo::before {
    inset: auto 0 0 0 !important;
    width: auto !important;
    height: 34% !important;
    background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%) !important;
  }

  #sobre-mi .about-copy {
    min-height: auto !important;
    padding: 28px 22px 32px !important;
    border-radius: 0 0 26px 26px !important;
    background: #fff !important;
  }
}

/* About section background color match */
.main-column > section#sobre-mi.about-band,
section#sobre-mi.about-band,
#sobre-mi.about-band {
  background: transparent !important;
  background-color: transparent !important;
}

.main-column > section#sobre-mi.about-band::before,
.main-column > section#sobre-mi.about-band::after,
section#sobre-mi.about-band::before,
section#sobre-mi.about-band::after,
#sobre-mi.about-band::before,
#sobre-mi.about-band::after {
  content: none !important;
  display: none !important;
  background: transparent !important;
}

#sobre-mi .about-copy {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 72%, rgba(255, 255, 255, 0.84) 100%) !important;
}

/* About section final: photo and text joined as one clean block */
.main-column > section#sobre-mi.about-band,
section#sobre-mi.about-band,
#sobre-mi.about-band {
  width: min(100% - 48px, 1260px) !important;
  max-width: 1260px !important;
  margin: 0 auto !important;
  padding: 0 0 38px !important;
  display: grid !important;
  grid-template-columns: minmax(320px, 410px) minmax(0, 1fr) !important;
  grid-template-areas:
    "title title"
    "photo copy" !important;
  gap: 0 !important;
  align-items: stretch !important;
  background: #e2e2e2 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#sobre-mi .about-title-bar {
  grid-area: title !important;
  margin: 0 0 22px !important;
  padding: 0 !important;
  background: transparent !important;
}

#sobre-mi .clinic-photo,
#sobre-mi .about-copy {
  min-height: clamp(360px, 28vw, 430px) !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
  background: #ffffff !important;
}

#sobre-mi .clinic-photo {
  grid-area: photo !important;
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  border-width: 1px 0 1px 1px !important;
  border-style: solid !important;
  border-radius: 22px 0 0 22px !important;
  box-shadow: 0 24px 64px rgba(18, 51, 51, 0.12) !important;
  overflow: hidden !important;
}

#sobre-mi .clinic-photo::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 0 0 auto !important;
  width: 34% !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff 94%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

#sobre-mi .clinic-photo::after {
  content: none !important;
  display: none !important;
}

#sobre-mi .clinic-photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: inherit !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center bottom !important;
  transform: none !important;
}

#sobre-mi .about-copy {
  grid-area: copy !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: clamp(36px, 4.2vw, 68px) clamp(34px, 5vw, 78px) !important;
  border-width: 1px 1px 1px 0 !important;
  border-style: solid !important;
  border-radius: 0 22px 22px 0 !important;
  box-shadow: 20px 24px 64px rgba(18, 51, 51, 0.10) !important;
}

#sobre-mi .about-copy h2 {
  margin: 4px 0 14px !important;
  font-size: clamp(2.35rem, 3.4vw, 3.65rem) !important;
  line-height: 0.98 !important;
}

#sobre-mi .about-copy p {
  max-width: 850px !important;
  font-size: clamp(1rem, 1.02vw, 1.13rem) !important;
  line-height: 1.72 !important;
}

@media (max-width: 860px) {
  .main-column > section#sobre-mi.about-band,
  section#sobre-mi.about-band,
  #sobre-mi.about-band {
    width: min(100% - 28px, 760px) !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "photo"
      "copy" !important;
    padding-bottom: 28px !important;
  }

  #sobre-mi .clinic-photo {
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    border-width: 1px 1px 0 1px !important;
    border-radius: 22px 22px 0 0 !important;
  }

  #sobre-mi .clinic-photo::before {
    inset: auto 0 0 0 !important;
    width: auto !important;
    height: 36% !important;
    background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%) !important;
  }

  #sobre-mi .clinic-photo img {
    min-height: 0 !important;
  }

  #sobre-mi .about-copy {
    min-height: auto !important;
    padding: 26px 22px 30px !important;
    border-width: 0 1px 1px 1px !important;
    border-radius: 0 0 22px 22px !important;
  }
}

/* Final definitivo: Sobre mi como hero, imagen completa de fondo y texto encima */
.main-column > section#sobre-mi.about-band,
section#sobre-mi.about-band,
#sobre-mi.about-band {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-height: clamp(620px, 44vw, 760px) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

#sobre-mi .about-title-bar {
  display: none !important;
}

#sobre-mi .clinic-photo {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

#sobre-mi .clinic-photo::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  z-index: 1 !important;
  display: block !important;
  height: clamp(28px, 4vw, 68px) !important;
  background: linear-gradient(180deg, rgba(226, 226, 226, 0.9), rgba(226, 226, 226, 0.24), rgba(226, 226, 226, 0)) !important;
  pointer-events: none !important;
}

#sobre-mi .clinic-photo::after {
  content: none !important;
  display: none !important;
}

#sobre-mi .clinic-photo img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
}

#sobre-mi .about-copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(820px, 55vw) !important;
  max-width: min(820px, 55vw) !important;
  min-height: clamp(620px, 44vw, 760px) !important;
  margin: 0 !important;
  padding: clamp(72px, 7vw, 118px) 0 clamp(72px, 7vw, 118px) clamp(28px, 11vw, 190px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#sobre-mi .about-copy::before {
  content: "" !important;
  position: absolute !important;
  inset: clamp(44px, 5vw, 82px) auto clamp(44px, 5vw, 82px) 0 !important;
  z-index: -1 !important;
  width: min(860px, 64vw) !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)) !important;
  filter: blur(18px) !important;
  pointer-events: none !important;
}

#sobre-mi .about-kicker {
  margin: 0 0 10px !important;
  color: #0c9aa2 !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

#sobre-mi .about-copy h2 {
  max-width: 650px !important;
  margin: 0 0 22px !important;
  color: #050505 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(3.2rem, 4.5vw, 5.1rem) !important;
  font-weight: 500 !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}

#sobre-mi .about-copy p {
  max-width: 720px !important;
  margin: 0 0 18px !important;
  color: #123333 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.04rem, 1.12vw, 1.22rem) !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}

#sobre-mi .about-copy .btn {
  margin-top: 10px !important;
  min-height: 54px !important;
  padding: 0 30px !important;
  border-radius: 999px !important;
  background: #5e9da4 !important;
  border-color: #5e9da4 !important;
  color: #ffffff !important;
  box-shadow: 0 18px 36px rgba(94, 157, 164, 0.24) !important;
}

@media (max-width: 980px) {
  .main-column > section#sobre-mi.about-band,
  section#sobre-mi.about-band,
  #sobre-mi.about-band,
  #sobre-mi .about-copy {
    min-height: 680px !important;
  }

  #sobre-mi .clinic-photo img {
    object-position: 62% center !important;
    opacity: 0.42 !important;
  }

  #sobre-mi .about-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding: 72px 24px !important;
  }

  #sobre-mi .about-copy::before {
    width: 100% !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)) !important;
  }
}

@media (max-width: 560px) {
  .main-column > section#sobre-mi.about-band,
  section#sobre-mi.about-band,
  #sobre-mi.about-band,
  #sobre-mi .about-copy {
    min-height: 720px !important;
  }

  #sobre-mi .clinic-photo img {
    object-position: 70% center !important;
    opacity: 0.26 !important;
  }

  #sobre-mi .about-copy {
    padding: 56px 20px !important;
  }

  #sobre-mi .about-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.7rem) !important;
  }

#sobre-mi .about-copy p {
    font-size: 1rem !important;
    line-height: 1.68 !important;
  }
}

/* Ajuste fino: evita que la sombra de servicios parezca una linea sobre Sobre mi */
#servicios.section {
  padding-bottom: clamp(24px, 3vw, 44px) !important;
  box-shadow: none !important;
}

#servicios .service-row.is-service-carousel {
  padding-bottom: clamp(8px, 1vw, 14px) !important;
}

#servicios .service-row.is-service-carousel .service-data-card {
  box-shadow: 0 16px 34px rgba(18, 51, 51, 0.09) !important;
}

#sobre-mi.about-band {
  border-top: 0 !important;
}

/* Ajuste de composicion: texto de Sobre mi mas cerca de la doctora */
@media (min-width: 981px) {
  #sobre-mi .about-copy {
    width: min(980px, 64vw) !important;
    max-width: min(980px, 64vw) !important;
    padding: clamp(70px, 6.6vw, 112px) clamp(36px, 6.2vw, 118px) clamp(70px, 6.6vw, 112px) 0 !important;
  }

  #sobre-mi .about-kicker {
    margin-left: 0 !important;
    font-size: clamp(1rem, 1.1vw, 1.28rem) !important;
    letter-spacing: 0.14em !important;
    font-weight: 800 !important;
  }

  #sobre-mi .about-copy h2,
  #sobre-mi .about-copy p,
  #sobre-mi .about-copy .btn {
    margin-left: clamp(34px, 3.5vw, 64px) !important;
  }

  #sobre-mi .about-copy p {
    max-width: 760px !important;
  }
}

/* Ajuste final real: doctora a la izquierda, texto de Sobre mi a la derecha */
#sobre-mi.about-band,
section#sobre-mi.about-band,
.main-column > section#sobre-mi.about-band {
  min-height: clamp(600px, 42vw, 740px) !important;
}

#sobre-mi .clinic-photo img {
  object-fit: cover !important;
  object-position: center center !important;
}

#sobre-mi .about-copy {
  margin-left: auto !important;
  margin-right: 0 !important;
  padding: clamp(72px, 7vw, 116px) clamp(28px, 10vw, 180px) clamp(72px, 7vw, 116px) 0 !important;
  align-items: flex-start !important;
}

#sobre-mi .about-copy::before {
  inset: clamp(44px, 5vw, 82px) 0 clamp(44px, 5vw, 82px) auto !important;
  width: min(860px, 64vw) !important;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)) !important;
}

#sobre-mi .about-copy h2,
#sobre-mi .about-copy p {
  text-align: left !important;
}

@media (max-width: 980px) {
  #sobre-mi .clinic-photo img {
    object-position: 34% center !important;
    opacity: 0.38 !important;
  }

  #sobre-mi .about-copy {
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 72px 24px !important;
  }

  #sobre-mi .about-copy::before {
    inset: clamp(44px, 5vw, 82px) 0 clamp(44px, 5vw, 82px) 0 !important;
    width: 100% !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0)) !important;
  }
}

@media (max-width: 560px) {
  #sobre-mi .clinic-photo img {
    object-position: 30% center !important;
    opacity: 0.24 !important;
  }
}

/* Ajuste final: imagen de Sobre mi con doctora a la izquierda y texto a la derecha */
#sobre-mi.about-band,
section#sobre-mi.about-band,
.main-column > section#sobre-mi.about-band {
  min-height: clamp(600px, 42vw, 740px) !important;
}

#sobre-mi .clinic-photo img {
  object-fit: cover !important;
  object-position: center center !important;
}

#sobre-mi .about-copy {
  margin-left: auto !important;
  margin-right: 0 !important;
  padding: clamp(72px, 7vw, 116px) clamp(28px, 10vw, 180px) clamp(72px, 7vw, 116px) 0 !important;
  align-items: flex-start !important;
}

#sobre-mi .about-copy::before {
  inset: clamp(44px, 5vw, 82px) 0 clamp(44px, 5vw, 82px) auto !important;
  width: min(860px, 64vw) !important;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)) !important;
}

#sobre-mi .about-copy h2,
#sobre-mi .about-copy p {
  text-align: left !important;
}

@media (max-width: 980px) {
  #sobre-mi .clinic-photo img {
    object-position: 34% center !important;
    opacity: 0.38 !important;
  }

  #sobre-mi .about-copy {
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 72px 24px !important;
  }

  #sobre-mi .about-copy::before {
    inset: clamp(44px, 5vw, 82px) 0 clamp(44px, 5vw, 82px) 0 !important;
    width: 100% !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0)) !important;
  }
}

@media (max-width: 560px) {
  #sobre-mi .clinic-photo img {
    object-position: 30% center !important;
    opacity: 0.24 !important;
  }
}

/* DEFINITIVO - Sobre mi igual al hero: imagen completa de fondo y texto encima */
.main-column > section#sobre-mi.about-band,
section#sobre-mi.about-band,
#sobre-mi.about-band {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-height: clamp(620px, 44vw, 780px) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

#sobre-mi .about-title-bar {
  display: none !important;
}

#sobre-mi .clinic-photo {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: hidden !important;
}

#sobre-mi .clinic-photo::before,
#sobre-mi .clinic-photo::after {
  content: none !important;
  display: none !important;
}

#sobre-mi .clinic-photo img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
}

#sobre-mi .about-copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(760px, 58vw) !important;
  max-width: min(760px, 58vw) !important;
  min-height: clamp(620px, 44vw, 780px) !important;
  margin: 0 !important;
  padding: clamp(78px, 7vw, 130px) 0 clamp(70px, 6vw, 118px) clamp(28px, 12vw, 220px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#sobre-mi .about-copy::before {
  content: "" !important;
  position: absolute !important;
  inset: clamp(48px, 5vw, 92px) auto clamp(48px, 5vw, 92px) 0 !important;
  z-index: -1 !important;
  width: min(780px, 62vw) !important;
  border-radius: 0 48px 48px 0 !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)) !important;
  filter: blur(16px) !important;
  pointer-events: none !important;
}

#sobre-mi .about-kicker {
  margin: 0 0 8px !important;
  color: #0c9aa2 !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

#sobre-mi .about-copy h2 {
  max-width: 660px !important;
  margin: 0 0 22px !important;
  color: #050505 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(3.35rem, 4.8vw, 5.6rem) !important;
  font-weight: 500 !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
}

#sobre-mi .about-copy p {
  max-width: 690px !important;
  margin: 0 0 18px !important;
  color: #123333 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.05rem, 1.18vw, 1.28rem) !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}

#sobre-mi .about-copy .btn {
  margin-top: 8px !important;
  min-height: 54px !important;
  padding: 0 30px !important;
  border-radius: 999px !important;
  background: #5e9da4 !important;
  border-color: #5e9da4 !important;
  color: #ffffff !important;
  box-shadow: 0 18px 36px rgba(94, 157, 164, 0.24) !important;
}

@media (max-width: 980px) {
  #sobre-mi .clinic-photo img {
    object-position: 63% center !important;
    opacity: 0.38 !important;
  }

  #sobre-mi .about-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding: 72px 24px !important;
  }

  #sobre-mi .about-copy::before {
    width: 100% !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)) !important;
  }
}

@media (max-width: 560px) {
  .main-column > section#sobre-mi.about-band,
  section#sobre-mi.about-band,
  #sobre-mi.about-band,
  #sobre-mi .about-copy {
    min-height: 760px !important;
  }

  #sobre-mi .clinic-photo img {
    object-position: 68% center !important;
    opacity: 0.24 !important;
  }

  #sobre-mi .about-copy {
    padding: 58px 20px !important;
  }

  #sobre-mi .about-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4rem) !important;
  }

  #sobre-mi .about-copy p {
    font-size: 1rem !important;
  }
}

/* Sobre mi: editorial image background with copy over the soft side */
.main-column > section#sobre-mi.about-band,
section#sobre-mi.about-band,
#sobre-mi.about-band {
  width: min(100% - 48px, 1380px) !important;
  max-width: 1380px !important;
  margin: 0 auto !important;
  padding: 0 0 42px !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-areas:
    "title"
    "stage" !important;
  gap: 22px !important;
  background: #e2e2e2 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#sobre-mi .about-title-bar {
  grid-area: title !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: center !important;
  background: transparent !important;
}

#sobre-mi .clinic-photo,
#sobre-mi .about-copy {
  grid-area: stage !important;
}

#sobre-mi .clinic-photo {
  position: relative !important;
  z-index: 0 !important;
  width: 100% !important;
  min-height: clamp(480px, 32vw, 600px) !important;
  height: auto !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 28px !important;
  background: #f7f7f5 !important;
  box-shadow: 0 30px 80px rgba(18, 51, 51, 0.13) !important;
  overflow: hidden !important;
}

#sobre-mi .clinic-photo::before,
#sobre-mi .clinic-photo::after {
  content: none !important;
  display: none !important;
}

#sobre-mi .clinic-photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(480px, 32vw, 600px) !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
  transform: none !important;
}

#sobre-mi .about-copy {
  position: relative !important;
  z-index: 2 !important;
  align-self: center !important;
  width: min(56%, 720px) !important;
  min-height: auto !important;
  margin: 0 !important;
  padding: clamp(48px, 5vw, 78px) clamp(34px, 5vw, 74px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#sobre-mi .about-kicker {
  color: #0c9aa2 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.05rem, 1.18vw, 1.35rem) !important;
  letter-spacing: 0 !important;
}

#sobre-mi .about-copy h2 {
  max-width: 620px !important;
  margin: 8px 0 18px !important;
  color: #050505 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(2.8rem, 4vw, 4.65rem) !important;
  font-weight: 500 !important;
  line-height: 0.96 !important;
}

#sobre-mi .about-copy p {
  max-width: 700px !important;
  color: #123333 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 1.05vw, 1.16rem) !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}

#sobre-mi .about-copy .btn {
  width: fit-content !important;
  margin-top: 10px !important;
  background: #5e9da4 !important;
  border-color: #5e9da4 !important;
  color: #ffffff !important;
}

@media (max-width: 980px) {
  .main-column > section#sobre-mi.about-band,
  section#sobre-mi.about-band,
  #sobre-mi.about-band {
    width: min(100% - 28px, 760px) !important;
  }

  #sobre-mi .clinic-photo {
    min-height: 620px !important;
  }

  #sobre-mi .clinic-photo img {
    min-height: 620px !important;
    object-position: 64% center !important;
    opacity: 0.45 !important;
  }

  #sobre-mi .about-copy {
    width: 100% !important;
    padding: 44px 24px !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0)) !important;
  }
}

@media (max-width: 560px) {
  #sobre-mi .clinic-photo {
    min-height: 680px !important;
    border-radius: 22px !important;
  }

  #sobre-mi .clinic-photo img {
    min-height: 680px !important;
    object-position: 68% center !important;
    opacity: 0.28 !important;
  }

  #sobre-mi .about-copy {
    padding: 38px 20px !important;
    background: rgba(255, 255, 255, 0.46) !important;
  }

  #sobre-mi .about-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem) !important;
  }
}

/* Sobre mi final: full hero-style section, no cards */
.main-column > section#sobre-mi.about-band,
section#sobre-mi.about-band,
#sobre-mi.about-band {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-height: clamp(620px, 44vw, 780px) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

#sobre-mi .about-title-bar {
  display: none !important;
}

#sobre-mi .clinic-photo {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: hidden !important;
}

#sobre-mi .clinic-photo::before,
#sobre-mi .clinic-photo::after {
  content: none !important;
  display: none !important;
}

#sobre-mi .clinic-photo img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
}

#sobre-mi .about-copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(760px, 58vw) !important;
  max-width: min(760px, 58vw) !important;
  min-height: clamp(620px, 44vw, 780px) !important;
  margin: 0 !important;
  padding: clamp(78px, 7vw, 130px) 0 clamp(70px, 6vw, 118px) clamp(28px, 12vw, 220px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#sobre-mi .about-copy::before {
  content: "" !important;
  position: absolute !important;
  inset: clamp(48px, 5vw, 92px) auto clamp(48px, 5vw, 92px) 0 !important;
  z-index: -1 !important;
  width: min(780px, 62vw) !important;
  border-radius: 0 48px 48px 0 !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)) !important;
  filter: blur(16px) !important;
  pointer-events: none !important;
}

#sobre-mi .about-kicker {
  margin: 0 0 8px !important;
  color: #0c9aa2 !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

#sobre-mi .about-copy h2 {
  max-width: 660px !important;
  margin: 0 0 22px !important;
  color: #050505 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(3.35rem, 4.8vw, 5.6rem) !important;
  font-weight: 500 !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
}

#sobre-mi .about-copy p {
  max-width: 690px !important;
  margin: 0 0 18px !important;
  color: #123333 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.05rem, 1.18vw, 1.28rem) !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}

#sobre-mi .about-copy .btn {
  margin-top: 8px !important;
  min-height: 54px !important;
  padding: 0 30px !important;
  border-radius: 999px !important;
  background: #5e9da4 !important;
  border-color: #5e9da4 !important;
  color: #ffffff !important;
  box-shadow: 0 18px 36px rgba(94, 157, 164, 0.24) !important;
}

@media (max-width: 980px) {
  #sobre-mi .clinic-photo img {
    object-position: 63% center !important;
    opacity: 0.38 !important;
  }

  #sobre-mi .about-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding: 72px 24px !important;
  }

  #sobre-mi .about-copy::before {
    width: 100% !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)) !important;
  }
}

@media (max-width: 560px) {
  .main-column > section#sobre-mi.about-band,
  section#sobre-mi.about-band,
  #sobre-mi.about-band,
  #sobre-mi .about-copy {
    min-height: 760px !important;
  }

  #sobre-mi .clinic-photo img {
    object-position: 68% center !important;
    opacity: 0.24 !important;
  }

  #sobre-mi .about-copy {
    padding: 58px 20px !important;
  }

  #sobre-mi .about-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4rem) !important;
  }

  #sobre-mi .about-copy p {
    font-size: 1rem !important;
  }
}

/* Absolute final hero correction: full PNG background under the copy */
.hero[data-style="futuristic-editorial"] {
  background: #ffffff !important;
  overflow: hidden !important;
}

.hero-container {
  position: relative !important;
  overflow: hidden !important;
  min-height: clamp(610px, 46vw, 760px) !important;
}

.hero-grid {
  position: static !important;
  display: block !important;
}

.hero-image,
.hero-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 0 !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  pointer-events: none !important;
}

.hero-image::before,
.hero-image::after,
.hero-visual::before,
.hero-visual::after,
.hero-container::before,
.hero-container::after {
  content: none !important;
  display: none !important;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  visibility: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.hero-copy {
  position: relative !important;
  z-index: 3 !important;
  width: min(820px, 54vw) !important;
  max-width: min(820px, 54vw) !important;
}

@media (max-width: 900px) {
  .hero-container {
    min-height: auto !important;
  }

  .hero-grid {
    display: grid !important;
  }

  .hero-image,
  .hero-visual {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1719 / 915 !important;
    margin-top: 20px !important;
    border-radius: 22px !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Final hero PNG layout: image spans the full hero so the left fade sits under the copy */
.hero[data-style="futuristic-editorial"] {
  background: #ffffff !important;
  overflow: hidden !important;
}

.hero-container {
  position: relative !important;
  overflow: hidden !important;
  min-height: clamp(610px, 46vw, 760px) !important;
}

.hero-grid {
  position: static !important;
  display: block !important;
}

.hero-image,
.hero-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 0 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  pointer-events: none !important;
}

.hero-image::before,
.hero-image::after,
.hero-visual::before,
.hero-visual::after,
.hero-container::before,
.hero-container::after {
  content: none !important;
  display: none !important;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.hero-copy {
  position: relative !important;
  z-index: 3 !important;
  width: min(820px, 54vw) !important;
  max-width: min(820px, 54vw) !important;
}

@media (max-width: 900px) {
  .hero-container {
    min-height: auto !important;
  }

  .hero-grid {
    display: grid !important;
  }

  .hero-image,
  .hero-visual {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1719 / 915 !important;
    margin-top: 20px !important;
    border-radius: 22px !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Photo refresh fit: keep newly replaced images clean and intentional */
.hero-doctor-img,
.hero-visual img,
.hero-image img {
  object-fit: cover !important;
  object-position: center center !important;
}

#sobre-mi .clinic-photo {
  min-height: clamp(380px, 31vw, 480px) !important;
}

#sobre-mi .about-copy {
  min-height: clamp(380px, 31vw, 480px) !important;
}

#sobre-mi .clinic-photo::before {
  width: 15% !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92) 100%) !important;
}

#sobre-mi .clinic-photo img {
  object-fit: cover !important;
  object-position: center top !important;
}

@media (max-width: 860px) {
  #sobre-mi .clinic-photo,
  #sobre-mi .about-copy {
    min-height: 0 !important;
  }

  #sobre-mi .clinic-photo img {
    object-position: center top !important;
  }
}

/* Hero image visibility fix: keep the new doctor photo visible */
.hero-container::before,
.hero-container::after {
  content: none !important;
  display: none !important;
}

.hero-image,
.hero-visual {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1 !important;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.hero-copy {
  z-index: 3 !important;
}

/* Hero vertical photo fit: supports the newly replaced portrait image */
.hero[data-style="futuristic-editorial"] {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 46%, rgba(255, 255, 255, 0.82) 57%, rgba(255, 255, 255, 0) 76%),
    #f6f8f8 !important;
}

.hero-container {
  min-height: clamp(610px, 47vw, 760px) !important;
}

.hero-image,
.hero-visual {
  inset: 0 0 0 auto !important;
  width: min(58vw, 920px) !important;
  height: 100% !important;
  overflow: hidden !important;
}

.hero-image::before,
.hero-visual::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 38% !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.78) 45%, rgba(255, 255, 255, 0) 100%) !important;
}

.hero-doctor-img,
.hero-visual img,
.hero-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 42% !important;
}

.hero-copy {
  width: min(820px, 54vw) !important;
  max-width: min(820px, 54vw) !important;
}

@media (max-width: 900px) {
  .hero[data-style="futuristic-editorial"] {
    background: #ffffff !important;
  }

  .hero-container {
    min-height: auto !important;
  }

  .hero-image,
  .hero-visual {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    margin-top: 24px !important;
    border-radius: 26px !important;
  }

  .hero-image::before,
  .hero-visual::before {
    display: none !important;
    content: none !important;
  }

  .hero-doctor-img,
  .hero-visual img,
  .hero-image img {
    object-position: center top !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* About section: calmer single editorial block */
.main-column > section#sobre-mi.about-band,
section#sobre-mi.about-band,
#sobre-mi.about-band {
  width: min(100% - 48px, 1260px) !important;
  max-width: 1260px !important;
  margin: 0 auto !important;
  padding: clamp(24px, 3vw, 38px) !important;
  display: grid !important;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr) !important;
  grid-template-areas:
    "title title"
    "photo copy" !important;
  gap: clamp(18px, 2.4vw, 34px) !important;
  align-items: center !important;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(246, 248, 248, 0.92) 100%) !important;
  border: 1px solid rgba(94, 157, 164, 0.14) !important;
  border-radius: 28px !important;
  box-shadow: 0 24px 70px rgba(18, 51, 51, 0.10) !important;
  overflow: hidden !important;
}

#sobre-mi .about-title-bar {
  grid-area: title !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  background: transparent !important;
}

#sobre-mi .clinic-photo {
  grid-area: photo !important;
  width: 100% !important;
  height: clamp(330px, 28vw, 410px) !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 22px !important;
  box-shadow: 0 20px 52px rgba(18, 51, 51, 0.13) !important;
  overflow: hidden !important;
}

#sobre-mi .clinic-photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center bottom !important;
}

#sobre-mi .about-copy {
  grid-area: copy !important;
  min-height: auto !important;
  height: auto !important;
  padding: clamp(16px, 2.6vw, 34px) clamp(10px, 2vw, 24px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#sobre-mi .about-copy h2 {
  margin: 4px 0 14px !important;
  font-size: clamp(2.4rem, 4vw, 4rem) !important;
  line-height: 0.95 !important;
}

#sobre-mi .about-copy p {
  max-width: 880px !important;
  margin-bottom: 14px !important;
  font-size: clamp(1rem, 1.05vw, 1.16rem) !important;
  line-height: 1.72 !important;
}

@media (max-width: 860px) {
  .main-column > section#sobre-mi.about-band,
  section#sobre-mi.about-band,
  #sobre-mi.about-band {
    width: min(100% - 28px, 760px) !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "photo"
      "copy" !important;
    padding: 18px !important;
    border-radius: 24px !important;
  }

  #sobre-mi .clinic-photo {
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
  }

  #sobre-mi .about-copy {
    padding: 10px 4px 4px !important;
  }
}

/* About section restored to card layout */
.main-column > section#sobre-mi.about-band,
section#sobre-mi.about-band,
#sobre-mi.about-band {
  width: min(100% - 48px, 1280px) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 0 34px !important;
  display: grid !important;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 2.08fr) !important;
  grid-template-areas:
    "title title"
    "photo copy" !important;
  gap: 28px !important;
  align-items: stretch !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #e2e2e2 !important;
  background-color: #e2e2e2 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#sobre-mi .about-title-bar {
  grid-area: title !important;
  width: 100% !important;
  margin: 0 0 20px !important;
  padding: 0 !important;
  text-align: center !important;
  background: transparent !important;
  box-shadow: none !important;
}

#sobre-mi .clinic-photo {
  grid-area: photo !important;
  width: 100% !important;
  min-height: 360px !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 42px rgba(18, 51, 51, 0.12) !important;
  overflow: hidden !important;
}

#sobre-mi .clinic-photo::before,
#sobre-mi .clinic-photo::after {
  content: none !important;
  display: none !important;
}

#sobre-mi .clinic-photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: 360px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
}

#sobre-mi .about-copy {
  grid-area: copy !important;
  min-height: 360px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: clamp(34px, 4vw, 58px) !important;
  border: 1px solid rgba(255, 255, 255, 0.78) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 42px rgba(18, 51, 51, 0.1) !important;
}

#sobre-mi .about-copy h2 {
  margin-bottom: 12px !important;
}

#sobre-mi .about-copy p {
  max-width: 920px !important;
}

@media (max-width: 860px) {
  .main-column > section#sobre-mi.about-band,
  section#sobre-mi.about-band,
  #sobre-mi.about-band {
    width: min(100% - 28px, 760px) !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "photo"
      "copy" !important;
    gap: 16px !important;
    padding-bottom: 26px !important;
  }

  #sobre-mi .clinic-photo {
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
  }

  #sobre-mi .clinic-photo img {
    min-height: 0 !important;
  }

  #sobre-mi .about-copy {
    min-height: auto !important;
    padding: 26px 22px !important;
  }
}

#sobre-mi .clinic-photo {
  background: #ffffff !important;
}

/* Unified neutral background for the home content flow */
body,
.site-main,
.main-column,
#servicios.section,
.main-column > .compact-section,
.main-column > section#sobre-mi.about-band,
section#sobre-mi.about-band,
#sobre-mi.about-band {
  background: #e2e2e2 !important;
  background-color: #e2e2e2 !important;
}

#sobre-mi .about-copy,
#sobre-mi .clinic-photo {
  background-color: #ffffff !important;
}

#sobre-mi .about-copy {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 72%, rgba(255, 255, 255, 0.84) 100%) !important;
}

/* Final definitivo: Sobre mi como hero, imagen completa de fondo y texto encima */
.main-column > section#sobre-mi.about-band,
section#sobre-mi.about-band,
#sobre-mi.about-band {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-height: clamp(620px, 44vw, 760px) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

#sobre-mi .about-title-bar {
  display: none !important;
}

#sobre-mi .clinic-photo {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

#sobre-mi .clinic-photo::before {
  content: none !important;
  display: none !important;
}

#sobre-mi .clinic-photo::after {
  content: none !important;
  display: none !important;
}

#sobre-mi .clinic-photo img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
}

#sobre-mi .about-copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(820px, 55vw) !important;
  max-width: min(820px, 55vw) !important;
  min-height: clamp(620px, 44vw, 760px) !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  padding: clamp(72px, 7vw, 116px) clamp(28px, 10vw, 180px) clamp(72px, 7vw, 116px) 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#sobre-mi .about-copy::before {
  content: "" !important;
  position: absolute !important;
  inset: clamp(44px, 5vw, 82px) 0 clamp(44px, 5vw, 82px) auto !important;
  z-index: -1 !important;
  width: min(860px, 64vw) !important;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)) !important;
  filter: blur(18px) !important;
  pointer-events: none !important;
}

#sobre-mi .about-kicker {
  margin: 0 0 10px !important;
  color: #0c9aa2 !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

#sobre-mi .about-copy h2 {
  max-width: 650px !important;
  margin: 0 0 22px !important;
  color: #050505 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(3.2rem, 4.5vw, 5.1rem) !important;
  font-weight: 500 !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}

#sobre-mi .about-copy p {
  max-width: 720px !important;
  margin: 0 0 18px !important;
  color: #123333 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.04rem, 1.12vw, 1.22rem) !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}

#sobre-mi .about-copy .btn {
  margin-top: 10px !important;
  min-height: 54px !important;
  padding: 0 30px !important;
  border-radius: 999px !important;
  background: #5e9da4 !important;
  border-color: #5e9da4 !important;
  color: #ffffff !important;
  box-shadow: 0 18px 36px rgba(94, 157, 164, 0.24) !important;
}

@media (max-width: 980px) {
  .main-column > section#sobre-mi.about-band,
  section#sobre-mi.about-band,
  #sobre-mi.about-band,
  #sobre-mi .about-copy {
    min-height: 680px !important;
  }

  #sobre-mi .clinic-photo img {
    object-position: 62% center !important;
    opacity: 0.42 !important;
  }

  #sobre-mi .about-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding: 72px 24px !important;
  }

  #sobre-mi .about-copy::before {
    width: 100% !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)) !important;
  }
}

@media (max-width: 560px) {
  .main-column > section#sobre-mi.about-band,
  section#sobre-mi.about-band,
  #sobre-mi.about-band,
  #sobre-mi .about-copy {
    min-height: 720px !important;
  }

  #sobre-mi .clinic-photo img {
    object-position: 70% center !important;
    opacity: 0.26 !important;
  }

  #sobre-mi .about-copy {
    padding: 56px 20px !important;
  }

  #sobre-mi .about-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.7rem) !important;
  }

  #sobre-mi .about-copy p {
    font-size: 1rem !important;
    line-height: 1.68 !important;
  }
}



/* Ajuste final visible: suaviza el cierre de servicios antes de Sobre mi */
#servicios.section {
  padding-bottom: clamp(24px, 3vw, 44px) !important;
  box-shadow: none !important;
}

#servicios .service-row.is-service-carousel {
  padding-bottom: clamp(8px, 1vw, 14px) !important;
}

#servicios .service-row.is-service-carousel .service-data-card {
  box-shadow: 0 16px 34px rgba(18, 51, 51, 0.09) !important;
}

#sobre-mi.about-band {
  border-top: 0 !important;
}

/* Ajuste final real: texto de Sobre mi mas cerca de la doctora */
@media (min-width: 981px) {
  #sobre-mi .about-copy {
    width: min(1180px, 72vw) !important;
    max-width: min(1180px, 72vw) !important;
    padding: clamp(70px, 6.6vw, 112px) clamp(34px, 5.8vw, 104px) clamp(70px, 6.6vw, 112px) 0 !important;
  }

  #sobre-mi .about-kicker {
    margin-left: 0 !important;
  }

  #sobre-mi .about-copy h2,
  #sobre-mi .about-copy p,
  #sobre-mi .about-copy .btn {
    margin-left: 0 !important;
  }

  #sobre-mi .about-copy p {
    max-width: 760px !important;
  }
}

/* Ajuste final real: Sobre mi destacado */
@media (min-width: 981px) {
  #sobre-mi .about-kicker {
    font-size: clamp(1rem, 1.1vw, 1.28rem) !important;
    letter-spacing: 0.14em !important;
    font-weight: 800 !important;
  }
}

/* Ajuste final real: posicion del texto Sobre mi como referencia */
@media (min-width: 981px) {
  #sobre-mi .about-copy {
    width: min(1120px, 70vw) !important;
    max-width: min(1120px, 70vw) !important;
    padding: clamp(70px, 6.4vw, 108px) clamp(34px, 5.8vw, 104px) clamp(70px, 6.4vw, 108px) 0 !important;
  }

  #sobre-mi .about-kicker {
    margin-left: 0 !important;
    margin-bottom: 8px !important;
    font-size: clamp(1.42rem, 1.65vw, 1.86rem) !important;
    letter-spacing: 0.02em !important;
    font-weight: 500 !important;
    font-family: var(--font-display) !important;
    color: #5e9da4 !important;
  }

  #sobre-mi .about-copy h2 {
    margin-left: clamp(34px, 2.6vw, 52px) !important;
    margin-top: 0 !important;
  }

  #sobre-mi .about-copy p {
    margin-left: clamp(66px, 4.4vw, 92px) !important;
    max-width: 780px !important;
  }

  #sobre-mi .about-copy .btn {
    margin-left: clamp(66px, 4.4vw, 92px) !important;
  }
}

/* Servicios: encabezado premium de la pagina publica */
.services-page-hero {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  padding: clamp(58px, 6.8vw, 104px) 0 clamp(36px, 4.4vw, 62px) !important;
  background:
    radial-gradient(circle at 20% 14%, rgba(94, 157, 164, 0.18), transparent 26%),
    radial-gradient(circle at 76% 26%, rgba(255, 255, 255, 0.92), transparent 35%),
    linear-gradient(135deg, #f4f8f7 0%, #ffffff 48%, #f7f5f1 100%) !important;
}

.services-page-hero::before,
.services-page-hero::after {
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

.services-page-hero::before {
  width: clamp(210px, 28vw, 440px) !important;
  height: clamp(210px, 28vw, 440px) !important;
  left: -8% !important;
  top: -26% !important;
  border-radius: 999px !important;
  background: rgba(94, 157, 164, 0.12) !important;
  filter: blur(32px) !important;
}

.services-page-hero::after {
  inset: auto 0 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(94, 157, 164, 0.24), transparent) !important;
}

.services-hero-shell {
  width: min(1180px, calc(100% - 40px)) !important;
}

.services-hero-content {
  max-width: 1020px !important;
  margin: 0 auto !important;
  text-align: center !important;
  animation: servicesFadeUp 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
}

.services-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: auto !important;
  margin: 0 0 clamp(14px, 1.4vw, 20px) !important;
  padding: 9px 16px !important;
  border: 1px solid rgba(94, 157, 164, 0.28) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 12px 30px rgba(18, 51, 51, 0.06) !important;
  color: #0c9aa2 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(0.72rem, 0.82vw, 0.86rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.services-eyebrow > span {
  width: 7px !important;
  height: 7px !important;
  border-radius: 999px !important;
  background: #5e9da4 !important;
  box-shadow: 0 0 0 5px rgba(94, 157, 164, 0.12) !important;
}

.services-page-hero h1 {
  max-width: 1060px !important;
  margin: 0 auto clamp(16px, 1.8vw, 24px) !important;
  color: #123333 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.9rem, 3.1vw, 3.35rem) !important;
  font-weight: 600 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

.services-page-hero p {
  max-width: 900px !important;
  margin: 0 auto !important;
  color: rgba(18, 51, 51, 0.84) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.02rem, 1.12vw, 1.22rem) !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}

.services-list-section,
.product-list-section,
.contact-list-section {
  padding-top: clamp(24px, 3.4vw, 44px) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(226, 226, 226, 1) 100%) !important;
}

.services-list-section .section-heading.centered,
.product-list-section .section-heading.centered,
.contact-list-section .section-heading.centered {
  margin: 0 0 clamp(22px, 2.8vw, 34px) !important;
}

.services-list-title,
.product-list-title,
.contact-list-title {
  display: inline-block !important;
  color: #050505 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.35rem, 2.1vw, 2.12rem) !important;
  font-weight: 500 !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.services-list-title::after,
.product-list-title::after,
.contact-list-title::after {
  width: 100% !important;
  max-width: none !important;
  height: 2px !important;
  margin: 10px 0 0 !important;
  background: linear-gradient(90deg, transparent, #5e9da4 12%, #5e9da4 88%, transparent) !important;
}

.contact-heading-subtitle {
  margin: 12px auto 0 !important;
  max-width: 720px !important;
  color: rgba(18, 51, 51, 0.72) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 1.15vw, 1.18rem) !important;
  font-weight: 400 !important;
  line-height: 1.58 !important;
  text-align: center !important;
}

.contact-list-section .contact-grid {
  margin-top: 0 !important;
}

/* Promociones: tarjeta destacada sin etiqueta y descripcion mas legible */
.promo-admin-section .promo-copy p {
  font-size: clamp(1.08rem, 1.18vw, 1.3rem) !important;
  line-height: 1.58 !important;
  margin-bottom: 20px !important;
}

@keyframes servicesFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .services-list-section .section-heading {
    animation: servicesFadeUp both !important;
    animation-timeline: view() !important;
    animation-range: entry 0% cover 26% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-hero-content,
  .services-list-section .section-heading {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .services-page-hero {
    padding: 46px 0 32px !important;
  }

  .services-hero-shell {
    width: min(calc(100% - 28px), 640px) !important;
  }

  .services-page-hero h1 {
    font-size: clamp(1.75rem, 7.4vw, 2.45rem) !important;
    line-height: 1.08 !important;
  }

  .services-page-hero p {
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
  }

  .services-list-section {
    padding-top: 24px !important;
  }
}

/* Ajuste pedido: titulo de Servicios mas pequeno y bloque menos pesado */
.services-page-hero {
  padding: clamp(38px, 4.2vw, 70px) 0 clamp(28px, 3.2vw, 44px) !important;
}

.services-page-hero h1,
.page-hero.services-page-hero h1 {
  max-width: 880px !important;
  font-size: clamp(1.72rem, 2.55vw, 2.85rem) !important;
  line-height: 1.12 !important;
  font-weight: 600 !important;
}

.services-page-hero p,
.page-hero.services-page-hero p {
  max-width: 780px !important;
  font-size: clamp(0.92rem, 0.95vw, 1.05rem) !important;
  line-height: 1.65 !important;
}

@media (max-width: 768px) {
  .services-page-hero {
    padding: 34px 0 26px !important;
  }

  .services-page-hero h1,
  .page-hero.services-page-hero h1 {
    font-size: clamp(1.55rem, 6.8vw, 2.12rem) !important;
    line-height: 1.12 !important;
  }
}

/* Servicios: bloque superior mas compacto */
.services-page-hero,
.page-hero.services-page-hero {
  padding: clamp(28px, 3.2vw, 46px) 0 clamp(20px, 2.4vw, 32px) !important;
}

.services-page-hero h1,
.page-hero.services-page-hero h1 {
  margin-bottom: clamp(10px, 1vw, 14px) !important;
  font-size: clamp(1.62rem, 2.35vw, 2.65rem) !important;
  line-height: 1.1 !important;
}

.services-page-hero p,
.page-hero.services-page-hero p {
  max-width: 760px !important;
  font-size: clamp(0.9rem, 0.9vw, 1rem) !important;
  line-height: 1.58 !important;
}

@media (max-width: 768px) {
  .services-page-hero,
  .page-hero.services-page-hero {
    padding: 28px 0 20px !important;
  }

  .services-page-hero h1,
  .page-hero.services-page-hero h1 {
    font-size: clamp(1.45rem, 6vw, 1.95rem) !important;
  }
}

/* Resultados editables: bloque antes/despues */
.result-grid .result-before-after-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.result-grid .result-before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  width: 100%;
  min-height: clamp(170px, 14vw, 230px);
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: #f8fbfb;
}

.result-grid .result-before-after figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.result-grid .result-before-after figure + figure {
  border-left: 1px solid rgba(94, 157, 164, 0.28);
}

.result-grid .result-before-after img {
  width: 100%;
  height: 100%;
  min-height: clamp(170px, 14vw, 230px);
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.result-grid .result-before-after-card:hover img {
  transform: scale(1.035);
}

.result-grid .result-before-after span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(18, 51, 51, 0.68);
  color: #ffffff;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  backdrop-filter: blur(12px);
}

@media (max-width: 640px) {
  .result-grid .result-before-after {
    min-height: 150px;
  }

  .result-grid .result-before-after img {
    min-height: 150px;
  }
}

/* Sobre mi: maqueta con nueva foto panoramica */
#sobre-mi.about-band,
section#sobre-mi.about-band,
.main-column > section#sobre-mi.about-band {
  min-height: clamp(560px, 40vw, 720px) !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

#sobre-mi .clinic-photo img {
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
}

#sobre-mi .about-copy {
  width: min(760px, 47vw) !important;
  max-width: min(760px, 47vw) !important;
  min-height: clamp(560px, 40vw, 720px) !important;
  margin-left: clamp(620px, 43vw, 840px) !important;
  padding: clamp(62px, 5.5vw, 96px) clamp(32px, 5vw, 88px) clamp(62px, 5.5vw, 96px) 0 !important;
  justify-content: center !important;
  background: transparent !important;
}

#sobre-mi .about-copy::before {
  content: "" !important;
  position: absolute !important;
  inset: clamp(36px, 4vw, 72px) 0 clamp(36px, 4vw, 72px) -120px !important;
  z-index: -1 !important;
  width: min(900px, 58vw) !important;
  border-radius: 42px !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.1)) !important;
  filter: blur(18px) !important;
  pointer-events: none !important;
}

#sobre-mi .about-kicker {
  margin-bottom: 10px !important;
  color: #5e9da4 !important;
  font-size: clamp(1rem, 1.1vw, 1.25rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  font-family: var(--font-display) !important;
  text-transform: uppercase !important;
}

#sobre-mi .about-copy h2 {
  margin: 0 0 20px !important;
  font-size: clamp(3.1rem, 4.4vw, 5rem) !important;
  line-height: 1 !important;
}

#sobre-mi .about-copy p {
  max-width: 720px !important;
  font-size: clamp(1.03rem, 1.05vw, 1.2rem) !important;
  line-height: 1.68 !important;
}

@media (max-width: 1180px) {
  #sobre-mi .about-copy {
    width: min(720px, 54vw) !important;
    max-width: min(720px, 54vw) !important;
    margin-left: clamp(420px, 39vw, 620px) !important;
    padding-right: 28px !important;
  }
}

@media (max-width: 860px) {
  #sobre-mi.about-band,
  section#sobre-mi.about-band,
  .main-column > section#sobre-mi.about-band,
  #sobre-mi .about-copy {
    min-height: 680px !important;
  }

  #sobre-mi .clinic-photo img {
    object-position: 31% center !important;
    opacity: 0.28 !important;
  }

  #sobre-mi .about-copy {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding: 64px 22px !important;
    background: rgba(255, 255, 255, 0.5) !important;
  }

  #sobre-mi .about-copy::before {
    inset: 32px 12px !important;
    width: auto !important;
    background: rgba(255, 255, 255, 0.28) !important;
  }
}

/* Sobre mi: ajuste final con la nueva imagen PNG panoramica */
.main-column > section#sobre-mi.about-band,
section#sobre-mi.about-band,
#sobre-mi.about-band {
  min-height: clamp(580px, 41vw, 760px) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

#sobre-mi .about-title-bar {
  display: none !important;
}

#sobre-mi .clinic-photo {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: hidden !important;
}

#sobre-mi .clinic-photo::before,
#sobre-mi .clinic-photo::after {
  display: none !important;
}

#sobre-mi .clinic-photo img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
}

#sobre-mi .about-copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(800px, 49vw) !important;
  max-width: min(800px, 49vw) !important;
  min-height: clamp(580px, 41vw, 760px) !important;
  margin-left: clamp(560px, 39.5vw, 780px) !important;
  padding: clamp(76px, 6vw, 112px) clamp(34px, 5vw, 92px) clamp(76px, 6vw, 112px) 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  text-align: left !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

#sobre-mi .about-copy::before {
  content: "" !important;
  position: absolute !important;
  inset: clamp(48px, 4vw, 82px) 0 clamp(48px, 4vw, 82px) -140px !important;
  z-index: -1 !important;
  width: min(900px, 58vw) !important;
  border-radius: 44px !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12)) !important;
  filter: blur(18px) !important;
  pointer-events: none !important;
}

#sobre-mi .about-kicker {
  margin: 0 0 10px !important;
  color: #5e9da4 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.18rem, 1.35vw, 1.55rem) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

#sobre-mi .about-copy h2 {
  margin: 0 0 20px !important;
  font-size: clamp(3.15rem, 4.4vw, 5rem) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}

#sobre-mi .about-copy p {
  max-width: 780px !important;
  margin: 0 0 20px !important;
  color: #123333 !important;
  font-size: clamp(1.03rem, 1.07vw, 1.22rem) !important;
  line-height: 1.68 !important;
}

#sobre-mi .about-copy .btn {
  margin-top: 6px !important;
}

@media (max-width: 1180px) {
  #sobre-mi .about-copy {
    width: min(720px, 55vw) !important;
    max-width: min(720px, 55vw) !important;
    margin-left: clamp(400px, 38vw, 560px) !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 860px) {
  .main-column > section#sobre-mi.about-band,
  section#sobre-mi.about-band,
  #sobre-mi.about-band,
  #sobre-mi .about-copy {
    min-height: 660px !important;
  }

  #sobre-mi .clinic-photo img {
    object-position: 24% center !important;
    opacity: 0.26 !important;
  }

  #sobre-mi .about-copy {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding: 62px 22px !important;
    background: rgba(255, 255, 255, 0.46) !important;
  }

  #sobre-mi .about-copy::before {
    inset: 34px 12px !important;
    width: auto !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.32) !important;
    filter: blur(14px) !important;
  }

  #sobre-mi .about-copy h2 {
    font-size: clamp(2.55rem, 13vw, 3.8rem) !important;
  }
}

/* Sobre mi: quitar velo que marcaba corte vertical */
#sobre-mi .about-copy::before,
#sobre-mi .about-copy::after {
  display: none !important;
  content: none !important;
}

#sobre-mi .about-copy {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

@media (max-width: 860px) {
  #sobre-mi .about-copy {
    background: rgba(255, 255, 255, 0.34) !important;
  }
}

/* Sobre mi: composicion editorial del texto */
#sobre-mi .about-copy {
  gap: 0 !important;
}

#sobre-mi .about-kicker {
  margin-left: 0 !important;
  margin-bottom: 6px !important;
  font-size: clamp(1.35rem, 1.55vw, 1.9rem) !important;
  line-height: 1.1 !important;
}

#sobre-mi .about-copy h2 {
  margin-left: clamp(34px, 3vw, 58px) !important;
  margin-bottom: 16px !important;
  font-size: clamp(2.35rem, 3.2vw, 3.75rem) !important;
  line-height: 1.02 !important;
}

#sobre-mi .about-copy p {
  margin-left: clamp(52px, 4.2vw, 82px) !important;
  max-width: min(720px, 42vw) !important;
  font-size: clamp(1.02rem, 1.02vw, 1.16rem) !important;
  line-height: 1.48 !important;
}

#sobre-mi .about-copy .btn {
  margin-left: clamp(52px, 4.2vw, 82px) !important;
}

@media (max-width: 860px) {
  #sobre-mi .about-copy h2,
  #sobre-mi .about-copy p,
  #sobre-mi .about-copy .btn {
    margin-left: 0 !important;
    max-width: 100% !important;
  }
}

/* Ajustes doctora: tarjetas limpias, CTA de WhatsApp y responsive */
.treatment-card,
#servicios .service-card,
#servicios .service-row.is-service-carousel .service-data-card,
.product-card,
.product-strip .product-card,
.product-strip.is-product-carousel .product-card {
  font-family: var(--font-body) !important;
  color: #123333 !important;
}

.treatment-card h3,
#servicios .service-card h3,
#servicios .service-row.is-service-carousel .service-data-card h3,
.product-card h3,
.product-strip .product-card h3,
.product-strip.is-product-carousel .card h3 {
  font-family: var(--font-display) !important;
  color: #123333 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.08 !important;
}

.treatment-card p,
.treatment-card .benefit,
.treatment-card .eyebrow,
#servicios .service-card p,
#servicios .service-card .service-kicker,
#servicios .service-row.is-service-carousel .service-data-card p,
#servicios .service-row.is-service-carousel .service-data-card .service-kicker,
.product-card p,
.product-card .eyebrow,
.product-card .meta-row,
.product-card .meta-row strong,
.product-card .btn,
.product-strip .product-card .eyebrow,
.product-strip .product-card .meta-row,
.product-strip.is-product-carousel .meta-row strong {
  font-family: var(--font-body) !important;
  letter-spacing: 0 !important;
}

.treatment-card .eyebrow,
#servicios .service-card .service-kicker,
#servicios .service-row.is-service-carousel .service-data-card .service-kicker,
.product-card .eyebrow {
  color: #5e9da4 !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.treatment-card p,
#servicios .service-card p,
#servicios .service-row.is-service-carousel .service-data-card p,
.product-card p {
  color: rgba(18, 51, 51, 0.68) !important;
  font-size: 0.98rem !important;
  line-height: 1.55 !important;
}

.treatment-card .card-body,
.product-card .card-body {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.treatment-card .service-whatsapp-cta,
.treatment-card .btn.btn-outline {
  margin-top: 34px !important;
  min-height: 42px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  border-color: #5e9da4 !important;
  background: #5e9da4 !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.treatment-card .benefit {
  margin-bottom: 0 !important;
}

/* Servicios: alinear el CTA en una misma altura */
.treatment-card {
  display: flex !important;
  flex-direction: column !important;
}

.treatment-card .card-body {
  flex: 1 1 auto !important;
  min-height: 310px !important;
  gap: 0 !important;
}

.treatment-card .benefit {
  min-height: 58px !important;
  margin-top: 16px !important;
}

.treatment-card .service-whatsapp-cta,
.treatment-card .btn.btn-outline {
  margin-top: auto !important;
}

.treatment-card .eyebrow {
  margin-bottom: 10px !important;
}

.treatment-card h3 {
  margin-bottom: 18px !important;
}

.treatment-card p:not(.benefit) {
  margin-bottom: 0 !important;
}

.treatment-card .service-price-row {
  margin-top: 18px !important;
  min-height: 28px !important;
}

.treatment-card .service-price-row strong {
  color: #5e9da4 !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
}

.treatment-card .meta-row strong,
.treatment-card .service-price-row strong {
  color: #5E9DA4 !important;
}

.treatment-card .service-whatsapp-cta:hover,
.treatment-card .btn.btn-outline:hover {
  background: #4f8e95 !important;
  border-color: #4f8e95 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.product-card .product-whatsapp-cta,
.product-card .btn.btn-outline {
  margin-top: 22px !important;
  min-height: 42px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  border-color: #5e9da4 !important;
  background: #5e9da4 !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.product-card .product-whatsapp-cta:hover,
.product-card .btn.btn-outline:hover {
  background: #4f8e95 !important;
  border-color: #4f8e95 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.product-card .eyebrow {
  margin-bottom: 10px !important;
}

.product-card h3 {
  margin-bottom: 18px !important;
}

.product-card p {
  margin-bottom: 18px !important;
}

.product-card .meta-row {
  width: 100% !important;
  margin-top: 4px !important;
  margin-bottom: 0 !important;
  gap: 18px !important;
  align-items: center !important;
}

body a.whatsapp-float,
.whatsapp-float {
  left: auto !important;
  right: 24px !important;
  bottom: 24px !important;
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #25d366 !important;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28) !important;
  transform: none !important;
}

body a.whatsapp-float svg,
body a.whatsapp-float > svg,
.whatsapp-float svg {
  width: 28px !important;
  height: 28px !important;
  display: block !important;
  margin: 0 !important;
  transform: none !important;
}

body a.whatsapp-float span,
.whatsapp-float span {
  display: none !important;
}

@media (max-width: 1024px) {
  .grid.grid-3,
  .products-grid,
  [data-products-grid] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .treatment-card,
  .product-card {
    min-width: 0 !important;
  }

  .treatment-card h3,
  .product-card h3 {
    font-size: clamp(1.35rem, 3vw, 1.8rem) !important;
  }
}

@media (max-width: 700px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .grid.grid-3,
  .products-grid,
  [data-products-grid],
  [data-treatments-grid] {
    grid-template-columns: 1fr !important;
  }

  .treatment-card .card-media,
  .product-card .card-media {
    aspect-ratio: 1.35 / 1 !important;
  }

  .treatment-card .card-body,
  .product-card .card-body {
    padding: 22px !important;
  }

  .treatment-card .service-whatsapp-cta,
  .treatment-card .btn.btn-outline,
  .product-card .btn.btn-outline {
    width: 100% !important;
    justify-content: center !important;
  }

  body a.whatsapp-float,
  .whatsapp-float {
    right: 16px !important;
    bottom: 18px !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
  }
}

/* Admin-connected promo pricing */
.promo-prices {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.promo-before {
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: line-through;
}

.promo-after {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.12);
}

.side-promo-card .promo-prices {
  justify-content: center;
  margin: 10px 0 14px;
}

.side-promo-card .promo-before {
  color: rgba(18, 51, 51, 0.46);
}

.side-promo-card .promo-after {
  min-height: auto;
  padding: 0;
  border: 0;
  color: #5E9DA4;
  background: transparent;
}

@media (max-width: 700px) {
  .promo-prices {
    justify-content: center;
  }
}

/* Editable home highlight: clean fixed text and optional admin-managed media. */
.testimonial-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(30px, 4vw, 52px);
  text-align: center;
}

.testimonial-feature::before,
.testimonial-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testimonial-feature::before {
  z-index: -2;
  background-image: var(--feature-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 260ms ease;
}

.testimonial-feature.has-feature-image::before {
  opacity: 0.24;
}

.testimonial-feature::after {
  z-index: -1;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(94, 157, 164, 0.96), rgba(25, 120, 120, 0.94));
}

.testimonial-feature-title {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  font-weight: 600;
  line-height: 1.28;
  text-wrap: balance;
}

.testimonial-feature-text {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.7;
}

.testimonial-feature-button {
  margin-top: 6px;
}

.testimonial-feature-text[hidden],
.testimonial-feature-button[hidden],
.testimonial-feature > .stars,
.testimonial-feature > strong {
  display: none !important;
}

@media (max-width: 700px) {
  .testimonial-feature {
    min-height: 180px;
    padding: 28px 20px;
  }
}


/* ===== R6: solo dos familias tipográficas en toda la web pública ===== */
:root {
  --font-bozon: "Josefin Sans", sans-serif;
  --font-acoustica: "Allura", cursive;
  --font: var(--font-bozon);
  --font-sans: var(--font-bozon);
  --font-serif: var(--font-bozon);
  --sans: var(--font-bozon);
  --font-body: var(--font-bozon);
  --font-display: var(--font-acoustica);
  --display: var(--font-acoustica);
  --font-script: var(--font-acoustica);
}

/* ===== R15: reseñas manuales administradas desde Supabase ===== */
.testimonial-layout.has-no-reviews {
  grid-template-columns: minmax(0, 1fr);
}

.testimonial-layout.has-no-reviews .testimonial-feature {
  width: 100%;
}

.testimonials-section [data-testimonials] {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-content: stretch;
  gap: 16px;
}

.review-card {
  display: flex;
  min-width: 0;
  min-height: 210px;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 26px 24px;
  border: 1px solid rgba(94, 157, 164, 0.22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(29, 69, 70, 0.08);
  text-align: left;
}

.review-card .review-stars {
  color: #d7a928;
  font-family: var(--font-sans);
  font-size: 1.18rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink, #173738);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.65;
}

.review-card > strong {
  margin-top: auto;
  color: var(--primary-dark, #315f5f);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-section [data-testimonials] {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    padding: 4px 4px 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .review-card {
    min-height: 190px;
    scroll-snap-align: start;
  }
}

@media (max-width: 560px) {
  .testimonials-section [data-testimonials] {
    grid-auto-columns: 92%;
  }

  .review-card {
    padding: 22px 20px;
    border-radius: 18px;
  }
}

/* ===== R20: reseñas móviles, una tarjeta completa por vez ===== */
@media (max-width: 900px) {
  .testimonials-section [data-testimonials] {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 4px 0 14px !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding-inline: 0 !important;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .testimonials-section [data-testimonials]::-webkit-scrollbar {
    display: none;
  }

  .testimonials-section [data-testimonials] .review-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    box-sizing: border-box !important;
  }
}
