:root {
  color-scheme: light;
  --color-brand-primary: #00a097;
  --color-brand-primary-dark: #008176;
  --color-brand-primary-deep: #075d57;
  --color-brand-secondary: #d46258;
  --color-brand-secondary-dark: #bf5752;
  --color-brand-secondary-deep: #a94540;
  --color-surface: #f7f4ef;
  --color-surface-soft: #eef7f4;
  --color-surface-elevated: #ffffff;
  --color-text: #173e3a;
  --color-text-muted: #4f6e69;
  --color-border: #d8e5e1;
  --color-focus: #bf5752;
  --color-whatsapp: #1e9e54;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Avenir Next", Avenir, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow-sm: 0 12px 36px rgba(23, 62, 58, .08);
  --shadow-md: 0 24px 64px rgba(23, 62, 58, .13);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --container: 1200px;
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--color-surface);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.75rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.4vw, 4.25rem);
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.18;
}

p {
  text-wrap: pretty;
}

::selection {
  background: rgba(0, 160, 151, .2);
  color: var(--color-text);
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
  border-radius: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 144px);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--color-text);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--color-brand-primary-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--color-brand-secondary);
}

.eyebrow-light {
  color: #d9fffa;
}

.eyebrow-light > span {
  background: #ffaaa1;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--color-brand-primary-deep);
  border-radius: 999px;
  background: var(--color-brand-primary-deep);
  box-shadow: 0 8px 20px rgba(0, 129, 118, .16);
  color: #fff;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button:hover {
  border-color: var(--color-brand-primary-deep);
  background: var(--color-brand-primary-deep);
  box-shadow: 0 12px 28px rgba(0, 129, 118, .24);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 46px;
  padding: 11px 20px;
  font-size: .86rem;
}

.button-ghost {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, .5);
  box-shadow: none;
  color: var(--color-text);
}

.button-ghost:hover {
  border-color: var(--color-brand-primary);
  background: var(--color-surface-elevated);
  color: var(--color-brand-primary-deep);
}

.button-light {
  border-color: #fff;
  background: #fff;
  box-shadow: none;
  color: var(--color-brand-primary-deep);
}

.button-light:hover {
  border-color: #fff;
  background: #f6fffd;
  color: var(--color-brand-primary-deep);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, .5);
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.button-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--color-brand-primary-deep);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  font-size: 1.35rem;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.light-link {
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 239, .88);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(23, 62, 58, .08);
  background: rgba(247, 244, 239, .96);
  box-shadow: 0 8px 30px rgba(23, 62, 58, .06);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 102;
  display: block;
  width: 210px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.site-nav > a:not(.button) {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #365f5a;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 99px;
  background: var(--color-brand-secondary);
  content: "";
  transition: transform .2s ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  color: var(--color-text);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: top .2s ease, transform .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 30px; }

.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

.hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding-block: clamp(48px, 7vw, 96px);
  overflow: hidden;
}

.hero-wash {
  position: absolute;
  top: -25%;
  right: -15%;
  width: min(58vw, 850px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 45%, rgba(0, 160, 151, .14), rgba(0, 160, 151, 0) 69%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
}

.hero-copy {
  max-width: 670px;
}

.hero-copy h1 {
  font-size: clamp(3.15rem, 6.1vw, 5.65rem);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--color-text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  margin-bottom: 32px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 0;
  padding: 0;
  color: #476963;
  font-size: .86rem;
  font-weight: 700;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-facts svg {
  width: 19px;
  height: 19px;
  fill: var(--color-brand-secondary);
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 18px 12px 32px 30px;
}

.hero-image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% 28px 28px;
  background: #dbece8;
  box-shadow: var(--shadow-md);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 45, 41, .24));
  content: "";
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.hero-visual:hover .hero-image-frame img {
  transform: scale(1.025);
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: -26px;
  bottom: 14%;
  display: flex;
  max-width: 250px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 12px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.hero-note-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--color-brand-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.hero-note p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: .78rem;
  line-height: 1.42;
}

.hero-note strong {
  color: var(--color-text);
  font-size: .9rem;
}

.smile-stroke {
  position: absolute;
  z-index: 2;
  bottom: -22px;
  left: -20px;
  width: 230px;
  overflow: visible;
}

.smile-stroke path {
  fill: none;
  stroke: var(--color-brand-secondary);
  stroke-linecap: round;
  stroke-width: 9;
}

.smile-stroke path + path {
  stroke: #fff;
  stroke-width: 3;
}

.trust-strip {
  border-block: 1px solid var(--color-border);
  background: rgba(255, 255, 255, .45);
}

.trust-grid {
  display: grid;
  min-height: 100px;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid p {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 16px 28px;
  border-right: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}

.trust-grid p:first-child { padding-left: 0; }
.trust-grid p:last-child { padding-right: 0; border-right: 0; }
.trust-grid span { color: var(--color-brand-secondary-deep); font-family: var(--font-display); font-weight: 700; }

.treatments {
  background: #fbfaf7;
}

.section-heading {
  margin-bottom: clamp(48px, 6vw, 76px);
}

.split-heading {
  display: grid;
  align-items: end;
  gap: clamp(32px, 6vw, 100px);
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
}

.split-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 490px;
  margin-bottom: 6px;
  color: var(--color-text-muted);
  font-size: 1.03rem;
}

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

.treatment-card {
  position: relative;
  display: grid;
  min-height: 470px;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-elevated);
  box-shadow: 0 1px 0 rgba(23, 62, 58, .03);
  grid-template-rows: auto auto auto 1fr auto;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.treatment-card::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(0, 160, 151, .06);
  content: "";
  transition: transform .35s ease;
}

.treatment-card:hover {
  border-color: rgba(0, 160, 151, .35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.treatment-card:hover::before {
  transform: scale(1.2);
}

.treatment-featured {
  border-color: rgba(0, 129, 118, .22);
  background: var(--color-surface-soft);
}

.card-number {
  position: absolute;
  top: 26px;
  right: 30px;
  color: rgba(23, 62, 58, .25);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
}

.treatment-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 20px;
  background: rgba(0, 160, 151, .1);
  color: var(--color-brand-primary-dark);
}

.treatment-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.treatment-card h3 {
  max-width: 390px;
}

.treatment-card > p {
  margin-bottom: 22px;
  color: var(--color-text-muted);
}

.treatment-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: start;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.treatment-card li {
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  color: var(--color-text-muted);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.2;
}

.treatment-card > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  color: var(--color-brand-primary-deep);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

.treatment-card > a span {
  font-size: 1.35rem;
  transition: transform .2s ease;
}

.treatment-card > a:hover span {
  transform: translateX(4px);
}

.process {
  overflow: hidden;
  background: var(--color-brand-primary-deep);
  color: rgba(255, 255, 255, .9);
}

.process-curve {
  position: absolute;
  right: -12%;
  bottom: -210px;
  width: 700px;
  height: 390px;
  transform: rotate(-8deg);
  border: 26px solid rgba(255, 255, 255, .06);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(56px, 9vw, 130px);
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
}

.process h2,
.process h3 {
  color: #fff;
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.process-intro p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 24px;
  padding-block: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  grid-template-columns: 54px 1fr;
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list > li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #ffd1cc;
  font-family: var(--font-display);
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 10px;
}

.process-list p {
  max-width: 590px;
  margin-bottom: 0;
}

.clinic {
  background: var(--color-surface);
}

.clinic-grid {
  display: grid;
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
}

.clinic-gallery {
  position: relative;
  min-height: 650px;
}

.clinic-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #dde7e4;
  box-shadow: var(--shadow-sm);
}

.clinic-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.clinic-gallery figure:hover img {
  transform: scale(1.03);
}

.gallery-main {
  position: absolute;
  inset: 0 20% 12% 0;
  border-radius: 28px 120px 28px 28px;
}

.gallery-small {
  position: absolute;
  right: 0;
  width: 37%;
  border: 8px solid var(--color-surface);
  border-radius: 22px;
}

.gallery-small-one {
  top: 18%;
  height: 34%;
}

.gallery-small-two {
  bottom: 0;
  height: 35%;
}

.clinic-copy > p:not(.eyebrow) {
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  font-weight: 700;
}

.check-list svg {
  width: 26px;
  height: 26px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(0, 160, 151, .1);
  fill: none;
  stroke: var(--color-brand-primary-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.faq {
  border-top: 1px solid var(--color-border);
  background: #fbfaf7;
}

.faq-grid {
  display: grid;
  gap: clamp(52px, 9vw, 130px);
  grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 430px;
  color: var(--color-text-muted);
}

.faq-art {
  position: relative;
  width: 250px;
  margin-top: 48px;
  color: var(--color-brand-secondary);
}

.faq-art span {
  display: block;
  transform: rotate(-5deg);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: italic;
}

.faq-art svg {
  width: 190px;
  margin-top: -12px;
}

.faq-art path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 5;
}

.accordion details {
  border-bottom: 1px solid var(--color-border);
}

.accordion details:first-child {
  border-top: 1px solid var(--color-border);
}

.accordion summary {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 52px 20px 0;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
}

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

.accordion summary > span,
.accordion summary > span::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 18px;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 99px;
  background: var(--color-brand-primary-dark);
  content: "";
  transition: transform .2s ease;
}

.accordion summary > span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.accordion details[open] summary > span::after {
  transform: rotate(0deg);
}

.accordion details > p {
  max-width: 680px;
  margin: -2px 52px 24px 0;
  color: var(--color-text-muted);
}

.accordion details > p a {
  color: var(--color-brand-primary-deep);
  font-weight: 700;
}

.contact {
  padding-bottom: 56px;
  background: var(--color-surface);
}

.contact-shell {
  position: relative;
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  padding: clamp(38px, 7vw, 84px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-brand-primary-deep);
  color: rgba(255, 255, 255, .9);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
}

.contact-shell::before {
  position: absolute;
  top: -170px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 60px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
  content: "";
}

.contact-copy,
.contact-details {
  position: relative;
  z-index: 1;
}

.contact h2 {
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 1.04rem;
}

.contact-details {
  display: grid;
  gap: 2px;
  align-content: center;
  margin: 0;
  font-style: normal;
}

.contact-details > a,
.contact-details > div {
  display: flex;
  min-height: 82px;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  line-height: 1.45;
  text-decoration: none;
}

.contact-details > a:hover span:not(small) {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-details svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: #ffd1cc;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-details small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .84);
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.final-cta {
  padding-block: 58px 82px;
  background: var(--color-surface);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-top: 38px;
  border-top: 1px solid var(--color-border);
}

.final-cta p {
  margin-bottom: 6px;
  color: var(--color-brand-secondary-dark);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

.site-footer {
  padding-block: 72px 24px;
  background: #113430;
  color: rgba(255, 255, 255, .72);
}

.footer-main {
  display: grid;
  align-items: start;
  gap: 36px;
  padding-bottom: 52px;
  grid-template-columns: 1.2fr 1fr .7fr auto;
}

.footer-brand {
  display: block;
  width: 230px;
  padding: 12px;
  border-radius: 15px;
  background: #fff;
}

.footer-contact p {
  margin-bottom: 14px;
  font-size: .88rem;
  line-height: 1.6;
}

.footer-contact a,
.footer-nav a,
.footer-bottom a {
  color: rgba(255, 255, 255, .82);
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  min-height: 32px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #fff;
}

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

.social-links a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #fff;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.social-links a:hover {
  border-color: var(--color-brand-primary);
  background: var(--color-brand-primary-dark);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.6;
}

.social-links rect,
.social-links circle:not(.fill-dot) {
  fill: none;
}

.fill-dot {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--color-whatsapp);
  box-shadow: 0 12px 28px rgba(17, 52, 48, .25);
  color: #fff;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.whatsapp-float:hover {
  background: #168947;
  box-shadow: 0 16px 34px rgba(17, 52, 48, .32);
  transform: translateY(-3px) scale(1.02);
}

.whatsapp-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.92);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.js [data-reveal] {
  transform: translateY(22px);
  transition: transform .65s cubic-bezier(.2, .7, .2, 1);
}

.js [data-reveal].is-visible {
  transform: translateY(0);
}

/* Páginas internas */
.internal-main {
  min-height: calc(100svh - var(--header-height));
}

.internal-hero {
  padding-block: clamp(54px, 8vw, 96px) 44px;
  text-align: center;
}

.internal-hero .eyebrow {
  justify-content: center;
}

.internal-hero h1 {
  max-width: 840px;
  margin-inline: auto;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.internal-hero > .container > p:not(.eyebrow) {
  max-width: 650px;
  margin-inline: auto;
  color: var(--color-text-muted);
  font-size: 1.08rem;
}

.links-page {
  min-height: 100svh;
  padding-block: 48px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 98, 88, .12), transparent 30%),
    radial-gradient(circle at 93% 22%, rgba(0, 160, 151, .16), transparent 34%),
    var(--color-surface);
}

.links-shell {
  width: min(calc(100% - 32px), 660px);
  margin-inline: auto;
  text-align: center;
}

.links-logo {
  width: min(340px, 78vw);
  margin: 0 auto 28px;
}

.links-heading h1 {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 9vw, 4.4rem);
}

.links-heading p {
  margin-bottom: 34px;
  color: var(--color-text-muted);
}

.links-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.link-card {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 66px;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .83);
  box-shadow: 0 6px 20px rgba(23, 62, 58, .05);
  color: var(--color-text);
  font-weight: 800;
  grid-template-columns: 40px minmax(0, 1fr) 20px;
  text-align: left;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.link-card:hover {
  border-color: rgba(0, 160, 151, .45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.link-card > span:first-child {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  background: var(--color-surface-soft);
  color: var(--color-brand-primary-dark);
}

.link-card svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.link-card .arrow {
  color: var(--color-brand-secondary);
  font-size: 1.35rem;
}

.link-label {
  min-width: 0;
}

.link-label small {
  display: block;
  color: var(--color-text-muted);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.3;
}

.link-card-primary {
  min-height: 76px;
  border-color: var(--color-brand-primary-deep);
  background: var(--color-brand-primary-deep);
  color: #fff;
}

.link-card-primary > span:first-child {
  background: rgba(255, 255, 255, .13);
  color: #fff;
}

.review-card {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 38px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  grid-template-columns: 160px 1fr;
  text-align: left;
}

.review-card img {
  width: 160px;
  height: 160px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.review-card h2 {
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.review-card p {
  margin-bottom: 14px;
  color: var(--color-text-muted);
  font-size: .9rem;
}

.review-card a {
  color: var(--color-brand-primary-deep);
  font-size: .88rem;
  font-weight: 800;
}

.links-info {
  margin-top: 32px;
  color: var(--color-text-muted);
  font-size: .83rem;
  line-height: 1.7;
}

.links-social {
  justify-content: center;
  margin-top: 22px;
}

.links-social a {
  border-color: var(--color-border);
  color: var(--color-brand-primary-deep);
}

.links-social a:hover {
  color: #fff;
}

.links-footer {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: .72rem;
}

.links-footer a {
  font-weight: 700;
}

.privacy-content {
  width: min(calc(100% - 48px), 820px);
  margin: 0 auto;
  padding-bottom: 110px;
}

.privacy-content section {
  padding-block: 28px;
  border-top: 1px solid var(--color-border);
}

.privacy-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.privacy-content p,
.privacy-content li {
  color: var(--color-text-muted);
}

.not-found {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding-block: 60px;
  text-align: center;
}

.not-found-inner {
  max-width: 760px;
}

.not-found-mark {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-brand-secondary);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .8;
}

.not-found h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.not-found p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.not-found .button-row {
  justify-content: center;
}

@media (max-width: 1080px) {
  :root { --header-height: 76px; }

  .site-nav { gap: 15px; }
  .site-nav > a:not(.button) { display: none; }
  .brand { width: 194px; }
  .hero-grid { gap: 42px; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr); }
  .hero-note { right: -10px; }
  .clinic-grid { gap: 58px; }
  .clinic-gallery { min-height: 560px; }
  .footer-main { grid-template-columns: 1fr 1fr .8fr; }
  .social-links { grid-column: 3; }
}

@media (min-width: 841px) and (max-height: 820px) {
  .hero {
    padding-block: 34px;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(3.5rem, 5.3vw, 4.7rem);
  }

  .hero-lead {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-bottom: 18px;
  }

  .hero-image-frame {
    max-height: calc(100svh - var(--header-height) - 68px);
  }
}

@media (max-width: 840px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    padding: calc(var(--header-height) + 28px) 28px 36px;
    visibility: hidden;
    background: rgba(247, 244, 239, .985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    display: flex;
    min-height: 58px;
    justify-content: center;
    border-bottom: 1px solid var(--color-border);
    font-family: var(--font-display);
    font-size: 1.5rem;
  }

  .site-nav .nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 22px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-grid,
  .clinic-grid,
  .process-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy { max-width: 740px; }
  .hero-visual { width: min(100%, 650px); margin-inline: auto; }
  .hero-image-frame { aspect-ratio: 5 / 4; border-radius: 34px 120px 34px 34px; }
  .hero-image-frame img { object-position: center 48%; }
  .hero-note { right: 8px; bottom: 9%; }
  .trust-grid { grid-template-columns: 1fr; padding-block: 10px; }
  .trust-grid p { min-height: 52px; padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--color-border); }
  .trust-grid p:last-child { border-bottom: 0; }
  .split-heading { grid-template-columns: 1fr; }
  .split-heading > p { max-width: 660px; }
  .process-intro { position: static; }
  .process-list li:first-child { padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, .16); }
  .clinic-grid { gap: 72px; }
  .clinic-gallery { min-height: 670px; }
  .clinic-copy { max-width: 650px; }
  .faq-intro { max-width: 620px; }
  .faq-art { display: none; }
  .contact-shell { gap: 38px; }
  .contact-details { max-width: 580px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .social-links { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 620px) {
  :root { --header-height: 72px; --radius-lg: 26px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding-block: 82px; }
  .brand { width: 172px; }
  h1 { font-size: clamp(2.7rem, 13vw, 3.6rem); }
  h2 { font-size: clamp(2.25rem, 10.5vw, 3.1rem); }
  .eyebrow { margin-bottom: 18px; font-size: .72rem; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }

  .hero {
    padding-block: 36px 72px;
  }

  .hero-grid { gap: 46px; }
  .hero-copy h1 { margin-bottom: 18px; font-size: clamp(2.75rem, 13vw, 3.65rem); }
  .hero-lead { margin-bottom: 24px; font-size: .99rem; line-height: 1.6; }
  .hero-actions { margin-bottom: 24px; }
  .hero-facts { display: grid; gap: 10px; }
  .hero-visual { padding: 6px 0 24px; }
  .hero-image-frame { aspect-ratio: 4 / 4.35; border-radius: 30px 90px 30px 30px; }
  .hero-image-frame img { object-position: 62% center; }
  .hero-note { right: -2px; bottom: 8px; max-width: 230px; }
  .smile-stroke { bottom: -26px; left: -26px; width: 190px; }
  .trust-strip { display: none; }
  .split-heading { gap: 24px; margin-bottom: 42px; }
  .treatment-grid { grid-template-columns: 1fr; }
  .treatment-card { min-height: auto; padding: 30px 24px; }
  .treatment-icon { margin-bottom: 26px; }
  .process-grid { gap: 48px; }
  .process-list li { grid-template-columns: 46px 1fr; gap: 16px; }
  .process-list > li > span { width: 42px; height: 42px; }
  .clinic-gallery { min-height: 440px; }
  .gallery-main { inset: 0 14% 9% 0; border-radius: 22px 74px 22px 22px; }
  .gallery-small { width: 38%; border-width: 5px; }
  .gallery-small-one { top: 15%; height: 34%; }
  .gallery-small-two { height: 34%; }
  .accordion summary { min-height: 74px; padding-right: 44px; font-size: 1.16rem; }
  .accordion details > p { margin-right: 20px; }
  .contact { padding-bottom: 36px; }
  .contact-shell { padding: 30px 22px; }
  .contact-details > a, .contact-details > div { min-height: 76px; }
  .final-cta { padding-block: 44px 68px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { width: 220px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .whatsapp-float { width: 58px; height: 58px; right: 16px; bottom: 16px; }
  .review-card { grid-template-columns: 1fr; text-align: center; }
  .review-card img { margin-inline: auto; }
  .links-page { padding-block: 32px; }
  .link-card { padding-inline: 14px; }
  .privacy-content { width: min(calc(100% - 32px), 820px); }
}

@media (max-width: 360px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero-copy h1 { font-size: 2.6rem; }
  .hero-lead { font-size: .94rem; }
  .button { padding-inline: 18px; }
  .hero-note { position: relative; right: auto; bottom: auto; margin: -46px 10px 0 auto; }
  .clinic-gallery { min-height: 390px; }
  .footer-nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  :root { --color-text: #000; --color-text-muted: #222; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .site-header, .whatsapp-float, .hero-visual, .trust-strip, .button-row, .process-curve, .faq-art, .final-cta, .social-links, .menu-toggle { display: none !important; }
  .section { padding-block: 24px; }
  .hero { min-height: auto; padding-block: 20px; }
  .hero-grid, .clinic-grid, .process-grid, .faq-grid, .contact-shell { display: block; }
  h1 { font-size: 34pt; }
  h2 { font-size: 25pt; }
  h3 { font-size: 17pt; }
  .treatment-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .treatment-card { min-height: 0; break-inside: avoid; box-shadow: none; }
  .process, .contact-shell, .site-footer { background: #fff; color: #000; }
  .process h2, .process h3, .contact h2, .contact-details > a, .contact-details > div { color: #000; }
  .clinic-gallery { display: none; }
  .contact-shell { padding: 24px 0; }
  .contact-details { margin-top: 20px; }
  .contact-details small { color: #333; }
  .site-footer { padding-block: 24px; border-top: 1px solid #999; }
  .footer-main { display: block; padding-bottom: 20px; }
  .footer-brand { padding: 0; }
  .footer-nav { display: none; }
  .footer-contact a, .footer-bottom a { color: #000; }
  .footer-bottom { display: block; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8pt; font-weight: 400; word-break: break-all; }
}
