:root {
  --purple-900: #63359c;
  --purple-800: #7844a8;
  --purple-700: #8c5bbb;
  --purple-600: #9e73c6;
  --purple-300: #d8cae7;
  --yellow-500: #eadf34;
  --yellow-400: #efe769;
  --soft-bg: #f4f1f6;
  --soft-lilac: #eee7f2;
  --text-dark: #1f1825;
  --text-soft: #63566f;
  --white: #ffffff;
  --shadow-soft: 0 14px 35px rgba(81, 38, 120, 0.16);
  --shadow-card: 0 18px 42px rgba(73, 28, 116, 0.18);
  --container: 1180px;
  --radius-xl: 28px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  background: var(--soft-bg);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font-family: inherit;
}

a {
  text-decoration: none;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(99, 53, 156, 0.08);
}

.nav-wrapper {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-symbol {
  width: 140px;
  flex-shrink: 0;
}

.brand-text {
  width: 240px;
  margin-left: -30px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  color: var(--purple-800);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--purple-900);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow-500);
  color: var(--purple-900);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  min-width: 230px;
  background: var(--purple-800);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--purple-900);
  font-size: 1.85rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
   background:
    linear-gradient(
      90deg,
      rgba(49, 26, 94, 0.95) 0%,
      rgba(99, 53, 156, 0.85) 35%,
      rgba(158, 115, 198, 0.6) 70%,
      rgba(216, 202, 231, 0.3) 100%
    ),
    url("images/background.png") center center / cover no-repeat;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 35%, rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at 70% 82%, rgba(255, 255, 255, 0.08), transparent 28%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(26, 17, 48, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 720px;
}

.hero h1 {
  color: var(--yellow-500);
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 620px;
  margin-bottom: 20px;
  text-shadow: 0 4px 14px rgba(35, 18, 71, 0.22);
}

.hero p {
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.01em;
  max-width: 860px;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(26, 12, 52, 0.18);
}

.hero .btn {
  margin-top: 18px;
}

.about {
  background: #f7f6f7;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}

.about-image-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.about-image {
  width: 100%;
  max-width: 430px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.08));
  transition: transform 0.4s ease, filter 0.4s ease;
  border-radius: 18px;
}

.about-image:hover {
  transform: scale(1.03) translateY(-6px);
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
}


.about-text h2,
.how-text h2,
.section-title h2,
.contact h2 {
  font-size: clamp(2.1rem, 3vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--purple-800);
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(58, 31, 92, 0.10);
}

.about-text p {
  font-size: 1.03rem;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 14px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.how {
  background: linear-gradient(90deg, #a07ec0 0%, #b99bc2 44%, #ece26c 100%);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.how-text h2 {
  color: var(--yellow-500);
}

.how-text p {
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  max-width: 570px;
  text-shadow: 0 2px 8px rgba(48, 24, 73, 0.16);
}

.how-image-wrap {
  display: flex;
  justify-content: center;
}

.how-image {
  width: 100%;
  max-width: 470px;
  border-radius: 22px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.how-image:hover {
  transform: scale(1.04) rotate(0.5deg) translateY(-8px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.28));
}

.therapies {
  background: #f3f2f4;
}

.therapies-container {
  max-width: 930px;
}

.centered {
  text-align: center;
  margin-bottom: 44px;
}

.centered p {
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.85;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.therapy-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  background: linear-gradient(135deg, #8449b6 0%, #6c329d 100%);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  cursor: default;
}

.therapy-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 50px rgba(73, 28, 116, 0.26);
}

.therapy-image-box {
  overflow: hidden;
  border-radius: 12px;
}

.therapy-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.therapy-card:hover .therapy-image {
  transform: scale(1.03);
  filter: brightness(1.03);
}

.therapy-content {
  padding: 14px 8px 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.therapy-content h3 {
  color: var(--yellow-500);
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(25, 10, 43, 0.18);
}

.therapy-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.98rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  text-shadow: 0 1px 6px rgba(15, 8, 25, 0.16);
}

.therapy-btn {
  margin-top: 14px;
  align-self: flex-start;
  background: var(--yellow-500);
  color: var(--purple-900);
  box-shadow: var(--shadow-soft);
  border-radius: 12px;
  padding: 13px 22px;
}

.therapy-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 35px rgba(81, 38, 120, 0.22);
}

.therapies-note {
  text-align: center;
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.85;
  margin-top: 6px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.contact {
  background: #ece5f0;
  text-align: center;
  padding: 100px 0 140px;
}

.contact-box {
  max-width: 860px;
}

.contact-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.contact-brand-symbol {
  width: 120px;
}

.contact-brand-text {
  width: 230px;
  margin-left: -30px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.contact p {
  max-width: 780px;
  margin: 0 auto 16px;
  font-size: 1.03rem;
  line-height: 1.85;
  color: var(--text-dark);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.contact-info {
  margin: 18px 0 24px;
}

.contact-info span {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 1.28rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.contact-phone img {
  width: 22px;
}

.footer {
  background: #7a49a7;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.footer-top {
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 20px;
  font-size: 0.84rem;
  line-height: 1.85;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
}

.footer-divider {
  width: 55%;
  height: 1px;
  margin: 18px auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.floating-whatsapp img {
  transition: all 0.3s ease;
  cursor: pointer;
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16));
}

.floating-whatsapp:hover {
  transform: scale(1.15) translateY(-4px);
  filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.7));
}

@media (max-width: 980px) {
  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(99, 53, 156, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .about-grid,
  .how-grid,
  .therapy-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-text,
  .how-text p,
  .about-text p {
    max-width: 100%;
  }

  .therapy-card {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .therapy-image-box {
    max-width: 280px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .nav-wrapper {
    min-height: 78px;
  }

  .brand-text {
    width: 150px;
  }

  .hero {
    min-height: auto;
    padding: 88px 0 64px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.05;
  }

  .hero p,
  .about-text p,
  .how-text p,
  .therapy-content p,
  .contact p {
    font-size: 0.97rem;
    line-height: 1.75;
  }

  .btn,
  .btn-secondary {
    width: 100%;
  }

  .floating-whatsapp,
  .floating-whatsapp img {
    width: 58px;
    height: 58px;
  }
}