:root {
  --pink-900: #8f1048;
  --pink-800: #b9155a;
  --pink-700: #d72e72;
  --pink-600: #e93b7d;
  --pink-300: #ff9bc4;
  --pink-100: #ffe8f2;
  --blue-100: #e7f8ff;
  --blue-200: #b9e9fb;
  --cream: #fff9fb;
  --white: #ffffff;
  --ink: #2a1821;
  --muted: #745563;
  --shadow: 0 24px 70px rgba(143, 16, 72, 0.18);
  --soft-shadow: 0 16px 34px rgba(143, 16, 72, 0.14);
  --radius: 28px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 155, 196, 0.32), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(185, 233, 251, 0.48), transparent 25%),
    linear-gradient(135deg, #fff9fb 0%, #fff2f7 44%, #e8f8ff 100%);
  line-height: 1.6;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--pink-800);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 249, 251, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(233, 59, 125, 0.12);
}

.navbar {
  width: min(100% - 32px, var(--max-width));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--pink-900);
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(233, 59, 125, 0.15);
  padding: 4px;
}

.brand-text {
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--pink-900);
  background: rgba(233, 59, 125, 0.09);
}

.nav-links .nav-button {
  background: linear-gradient(135deg, var(--pink-700), var(--pink-900));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(233, 59, 125, 0.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: var(--pink-800);
  border-radius: 999px;
  transition: 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 68px 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  left: -130px;
  top: 8%;
  background: radial-gradient(circle, rgba(233, 59, 125, 0.15), transparent 66%);
}

.hero::after {
  width: 450px;
  height: 450px;
  right: -110px;
  bottom: 4%;
  background: radial-gradient(circle, rgba(185, 233, 251, 0.58), transparent 68%);
}

.hero-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.moon-one {
  width: 220px;
  height: 220px;
  right: 10%;
  top: 14%;
  box-shadow: -42px 0 0 5px rgba(233, 59, 125, 0.10);
  opacity: 0.85;
}

.moon-two {
  width: 120px;
  height: 120px;
  left: 8%;
  bottom: 14%;
  box-shadow: -24px 0 0 4px rgba(233, 59, 125, 0.09);
  opacity: 0.75;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max-width));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.logo-card {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(233, 59, 125, 0.62), rgba(185, 233, 251, 0.85)) border-box;
  border: 1px solid transparent;
  border-radius: 38px;
  padding: clamp(18px, 4vw, 34px);
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}

.hero-logo {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  border-radius: 28px;
}

.hero-copy {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 42px;
  padding: clamp(26px, 5vw, 54px);
  box-shadow: 0 20px 70px rgba(233, 59, 125, 0.12);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-800);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 12px;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--pink-600);
  border-radius: 999px;
}

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

h1 {
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.9;
  margin-bottom: 22px;
  color: var(--pink-900);
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 16px;
  color: var(--pink-900);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.1;
  color: var(--pink-900);
  margin-bottom: 0;
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(1.1rem, 2.5vw, 1.38rem);
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-600), var(--pink-900));
  box-shadow: 0 18px 36px rgba(233, 59, 125, 0.24);
}

.btn.secondary {
  color: var(--pink-900);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(233, 59, 125, 0.22);
  box-shadow: 0 12px 28px rgba(233, 59, 125, 0.10);
}

.intro,
.therapies,
.feature,
.location,
.contact {
  padding: clamp(60px, 8vw, 108px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
  align-items: stretch;
}

.intro-text,
.info-card,
.location-card,
.contact-box,
.feature-panel {
  border: 1px solid rgba(233, 59, 125, 0.16);
  background: rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.intro-text {
  padding: clamp(26px, 5vw, 50px);
}

.intro-text p:not(.section-kicker),
.section-heading p,
.feature-panel p,
.location-card p,
.contact-box p {
  color: var(--muted);
  font-size: 1.04rem;
}

.info-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 232, 242, 0.95), rgba(231, 248, 255, 0.85));
}

.info-label {
  color: var(--pink-800);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.info-card strong {
  font-size: 1.4rem;
  color: var(--pink-900);
}

.info-card a {
  margin-top: 10px;
  color: var(--pink-900);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-heading .section-kicker {
  justify-content: center;
}

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

.therapy-card {
  position: relative;
  min-height: 164px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(255, 232, 242, 0.74));
  border: 1px solid rgba(233, 59, 125, 0.16);
  box-shadow: 0 16px 34px rgba(143, 16, 72, 0.10);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.therapy-card::after {
  content: "";
  position: absolute;
  width: 98px;
  height: 98px;
  right: -26px;
  bottom: -26px;
  border-radius: 50%;
  box-shadow: -22px 0 0 rgba(233, 59, 125, 0.15);
}

.therapy-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 52px rgba(143, 16, 72, 0.16);
}

.therapy-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-600), var(--pink-900));
  font-weight: 900;
  margin-bottom: 26px;
  box-shadow: 0 12px 24px rgba(233, 59, 125, 0.20);
}

.feature-panel {
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 94% 15%, rgba(185, 233, 251, 0.62), transparent 25%),
    linear-gradient(135deg, rgba(255, 232, 242, 0.92), rgba(255, 255, 255, 0.86));
}

.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.location-card {
  padding: clamp(28px, 5vw, 48px);
}

.location-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.95), transparent 12%),
    linear-gradient(135deg, rgba(233, 59, 125, 0.70), rgba(185, 233, 251, 0.86));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.crescent {
  position: absolute;
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: -46px 0 0 0 rgba(255, 255, 255, 0.94);
}

.star {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
}

.star-a { top: 22%; left: 22%; }
.star-b { top: 66%; right: 18%; }
.star-c { bottom: 20%; left: 32%; }

.contact-box {
  padding: clamp(28px, 5vw, 52px);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
}

.contact-logo {
  width: 260px;
  max-height: 220px;
  object-fit: contain;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  padding: 10px;
}

.footer {
  padding: 30px 0 92px;
  background: rgba(143, 16, 72, 0.95);
  color: var(--white);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}

.footer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #18b85f, #0a8f49);
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(10, 143, 73, 0.28);
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-4px) scale(1.02);
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-links {
    position: fixed;
    inset: 82px 16px auto 16px;
    display: grid;
    gap: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(233, 59, 125, 0.16);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

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

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .intro-grid,
  .location-grid,
  .contact-box,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions,
  .contact-actions {
    justify-content: center;
  }

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

  .feature-panel {
    text-align: center;
  }

  .contact-logo {
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .navbar,
  .container,
  .hero-content {
    width: min(100% - 22px, var(--max-width));
  }

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

  .brand-text {
    max-width: 148px;
    line-height: 1.08;
  }

  .hero {
    padding: 34px 0 58px;
  }

  .logo-card,
  .hero-copy,
  .intro-text,
  .info-card,
  .location-card,
  .contact-box,
  .feature-panel {
    border-radius: 24px;
  }

  .therapy-grid {
    grid-template-columns: 1fr;
  }

  .therapy-card {
    min-height: 132px;
    padding: 24px;
  }

  .location-visual {
    min-height: 260px;
  }

  .contact-logo {
    width: 100%;
    max-width: 270px;
  }

  .btn {
    width: 100%;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .footer-content {
    justify-content: center;
    text-align: center;
  }
}
