@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --magenta: #aa0b5f;
  --cyan: #1ec4ce;
  --cyan-dark: #138e96;
  --green: #8ad000;
  --green-dark: #5f9f00;
  --orange: #ff763a;
  --ink: #253136;
  --muted: #687579;
  --line: #dfe7e9;
  --surface: #f6f8f8;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(28, 47, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Lato", Arial, sans-serif;
  background: var(--white);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(30, 196, 206, 0.96);
  backdrop-filter: blur(16px);
  transition: transform 320ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(20, 95, 101, 0.16);
}

.brand img {
  width: 126px;
}

.nav-toggle {
  display: grid;
  gap: 6px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
}

.nav-toggle span:nth-child(1) { transition: transform 200ms ease, opacity 200ms; }
.nav-toggle span:nth-child(2) { transition: transform 200ms ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: 72px 16px auto;
  display: none;
  max-height: calc(100svh - 92px);
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 12px 10px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  background: var(--surface);
  color: var(--cyan-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(18, 31, 36, 0.24), rgba(18, 31, 36, 0.88)),
    linear-gradient(90deg, rgba(18, 31, 36, 0.72), rgba(18, 31, 36, 0.1));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 76px 18px 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 9vw, 5.2rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.75rem, 7vw, 3.3rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-actions,
.booking-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
}

.button.primary:hover {
  filter: brightness(0.9);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button.secondary:hover {
  background: var(--surface);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  margin: 0 18px 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.hero-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-card strong,
.hero-card a {
  color: var(--white);
  text-decoration: none;
}

.section {
  padding: 72px 18px 28px;
}

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

.section-lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.specialists {
  display: grid;
  gap: 16px;
  padding: 16px 18px 72px;
  background: linear-gradient(180deg, var(--white), var(--surface));
}

.specialist-card {
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(28, 47, 52, 0.08);
}

.specialist-card img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: bottom;
  border-radius: 8px;
  background: var(--surface);
}

.specialist-card p {
  margin: 0 0 8px;
  font-weight: 700;
}

.specialist-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.accent-magenta p {
  color: var(--magenta);
}

.accent-cyan p {
  color: var(--cyan-dark);
}

.accent-green p {
  color: var(--green-dark);
}

.treatments {
  background: var(--surface);
}

.treatment-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.treatment-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.treatment-grid span {
  display: block;
  width: 36px;
  height: 5px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--cyan);
}

.treatment-grid article:nth-child(2) span {
  background: var(--green);
}

.treatment-grid article:nth-child(3) span {
  background: var(--orange);
}

.treatment-grid article:nth-child(4) span {
  background: var(--magenta);
}

.treatment-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.booking {
  display: grid;
  gap: 28px;
  padding: 72px 18px;
  color: var(--white);
  background: var(--ink);
}

.booking-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.booking-actions {
  display: grid;
}

.booking-actions article {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.booking-actions strong {
  font-size: 1.15rem;
}

.booking-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.contact {
  display: grid;
  gap: 30px;
  padding: 72px 18px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
}

.contact-list a {
  text-decoration: none;
}

.social-links {
  margin-top: 24px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  line-height: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms, color 160ms, border-color 160ms;
}

.social-links svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-links a:hover {
  box-shadow: 0 8px 18px rgba(37, 49, 54, 0.18);
  transform: translateY(-2px);
}

.social-links a[aria-label="Facebook"]:hover  { background: #1877F2; border-color: #1877F2; color: var(--white); }
.social-links a[aria-label="Instagram"]:hover { background: #E1306C; border-color: #E1306C; color: var(--white); }
.social-links a[aria-label="LinkedIn"]:hover  { background: #0A66C2; border-color: #0A66C2; color: var(--white); }
.social-links a[aria-label="WhatsApp"]:hover  { background: #25D366; border-color: #25D366; color: var(--white); }

.site-footer .social-links {
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.site-footer .social-links a {
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer .social-links svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.map-embed {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 280px;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.map-embed--full iframe {
  height: 420px;
}

@media (min-width: 760px) {
  .map-embed iframe {
    height: 100%;
    min-height: 360px;
  }
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 32px 18px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  background: var(--orange);
}

.site-footer img {
  width: 150px;
  margin-inline: auto;
}

.site-footer p {
  margin: 0;
}

.footer-grid {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.footer-grid > div {
  display: grid;
  justify-items: center;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 0.96rem;
}

.site-footer a,
.site-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  color: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.floating-whatsapp svg {
  display: block;
  width: 28px;
  height: 28px;
  color: var(--white);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 46svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(22, 34, 38, 0.86), rgba(22, 34, 38, 0.22));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 900px;
  padding: 82px 18px 38px;
}

.page-hero-content p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
}

.nav-strip {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.nav-strip a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.nav-strip a[aria-current="page"],
.nav-strip a.is-active {
  border-color: var(--cyan);
  color: var(--cyan-dark);
  background: rgba(30, 196, 206, 0.08);
}

.content-band {
  padding: 56px 18px;
}

.content-band.alt {
  background: var(--surface);
}

.two-column {
  display: grid;
  gap: 28px;
}

.copy-block {
  max-width: 720px;
}

.copy-block p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-grid,
.service-grid,
.article-grid,
.logo-grid {
  display: grid;
  gap: 14px;
}

.feature-card,
.service-card,
.article-card,
.logo-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card strong,
.service-card strong,
.article-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.feature-card p,
.service-card p,
.article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-card img {
  width: 100%;
  height: 190px;
  margin-bottom: 14px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--surface);
}

.logo-card {
  display: grid;
  min-height: 150px;
  place-items: center;
  text-align: center;
}

.logo-card img {
  max-width: 170px;
  max-height: 74px;
  margin-bottom: 14px;
  object-fit: contain;
}

.cta-band {
  display: grid;
  gap: 18px;
  padding: 34px 18px;
  color: var(--white);
  background: var(--cyan-dark);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.image-panel {
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
}

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

.center-media {
  display: grid;
  justify-items: center;
}

.center-media img {
  width: min(100%, 980px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

@media (min-width: 760px) {
  .site-header {
    padding: 14px 34px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }

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

  .site-nav a {
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.94rem;
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
  }

  .site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
    font-weight: 700;
  }

  .hero-content {
    padding: 110px 34px 220px;
  }

  .hero-card {
    position: absolute;
    right: 34px;
    bottom: 34px;
    left: auto;
    z-index: 2;
    margin: 0;
    width: min(340px, 36vw);
  }

  .section,
  .booking,
  .contact {
    padding-right: 34px;
    padding-left: 34px;
  }

  .specialists {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-right: 34px;
    padding-left: 34px;
  }

  .specialist-card {
    align-content: start;
  }

  .specialist-card img {
    height: 320px;
  }

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

  .booking {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

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

  .contact {
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.65fr);
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 1fr 1.15fr 1fr;
    align-items: start;
  }

  .page-hero-content,
  .content-band,
  .cta-band,
  .nav-strip {
    padding-right: 34px;
    padding-left: 34px;
  }

  .two-column {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

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

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

  .cta-band {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1160px) {
  .site-header,
  .hero-content,
  .section,
  .specialists,
  .booking,
  .contact,
  .site-footer,
  .page-hero-content,
  .content-band,
  .cta-band,
  .nav-strip {
    padding-right: max(56px, calc((100vw - 1180px) / 2));
    padding-left: max(56px, calc((100vw - 1180px) / 2));
  }

  .hero-card {
    right: max(56px, calc((100vw - 1180px) / 2));
  }
}
