/* ═══════════════════════════════════════════════════════
   Conception — Landing Pages Shared CSS
   Common styles for all landing/treatment pages.
   Each page overrides :root color variables inline.
═══════════════════════════════════════════════════════ */

:root {
  --primary: #7A4060;
  --primary-light: #9A5B7E;
  --primary-pale: #F2E8EE;
  --primary-ultra: #FAF3F7;
  --accent: #8B5E3C;
  --accent-light: #B07D55;
  --accent-pale: #F5EDE4;
  --ink: #0F1419;
  --ink-mid: #1E2832;
  --warm-white: #FDFCFA;
  --cream: #F8F6F2;
  --text-dark: #0F1419;
  --text-mid: #2D3A47;
  --text-muted: #5A6A7A;
  --text-light: #8A9BAC;
  --border: rgba(0, 0, 0, 0.1);
  --border-strong: rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #FDFCFA;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 20, 25, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 3rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-selo img {
  height: 48px;
  width: auto;
}

.nav-cta {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

section {
  padding: 5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--primary);
}

.section-title.inv {
  color: #fff;
}

.section-title.inv em {
  color: var(--accent-light);
}

.section-intro {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 640px;
  font-weight: 300;
  line-height: 1.8;
}

.section-intro.inv {
  color: rgba(255, 255, 255, 0.65);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--primary);
}

.eyebrow-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow-line.inv,
.eyebrow-text.inv {
  background: var(--accent-light);
  color: var(--accent-light);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--primary);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-outline:hover {
  background: var(--primary-pale);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.25s;
}

.card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.25s;
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.07);
}

.tag {
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.38rem 0.85rem;
  border-radius: 2rem;
  border: 1px solid var(--border);
  display: inline-block;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.check-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.check-dot.acc {
  background: var(--accent);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.notice {
  background: var(--primary-pale);
  border: 1.5px solid var(--primary);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.notice-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.notice-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.notice-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Hero ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.4;
  }

  50% {
    transform: scaleY(1.5);
    opacity: 1;
  }
}

.hero {
  padding-top: 76px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-dark {
  background: var(--ink);
}

.hero-light {
  background: var(--primary-ultra);
}

.hero-left {
  padding: 5rem 3rem 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-dr-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
  min-height: 550px;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 42%), linear-gradient(to top, var(--ink) 0%, transparent 18%);
  pointer-events: none;
}

.hero-dr-card {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  z-index: 2;
  animation: fadeInUp 0.7s ease both;
  animation-delay: 0.9s;
}

.hero-dr-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.2rem;
}

.hero-dr-meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.hero-dr-cred {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.3rem;
}

.hero-dr-cred::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.38rem 0.9rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.75rem;
  width: fit-content;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.15s;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-light);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.3s;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.62);
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 300;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.45s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.55s;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.65s;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent-light);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.2rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s ease both;
  animation-delay: 1.2s;
  z-index: 3;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
  animation: scrollPulse 2s ease infinite;
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    height: 56vw;
    min-height: 280px;
    order: -1;
  }

  .hero-right::after {
    background: linear-gradient(to bottom, transparent 50%, var(--ink) 100%);
  }

  .hero-left {
    padding: 2.5rem 1.5rem 2.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

.sticky-wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  text-decoration: none;
  transition: transform .2s;
}

.sticky-wa:hover {
  transform: scale(1.1);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5)
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, .75)
  }
}