/* =====================================================
   DRA. MARCELA CAMARGO — ESTÉTICA AVANÇADA
   style.css v2.0
   ===================================================== */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-950: #1e0035;
  --purple-900: #3b0764;
  --purple-800: #6b21a8;
  --purple-700: #7e22ce;
  --purple-600: #9333ea;
  --purple-500: #a855f7;
  --purple-400: #c084fc;
  --purple-300: #d8b4fe;
  --purple-200: #e9d5ff;
  --purple-100: #f3e8ff;
  --purple-50:  #faf5ff;
  --gold:        #c9a227;
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --dark:        #0f0a1a;

  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 999px;

  --shadow-sm:   0 1px 3px rgba(107,33,168,.08);
  --shadow-md:   0 4px 20px rgba(107,33,168,.14);
  --shadow-lg:   0 20px 60px rgba(107,33,168,.18), 0 8px 24px rgba(0,0,0,.1);

  --ease:        cubic-bezier(.4,0,.2,1);
  --transition:  .3s var(--ease);
  --transition-slow: .6s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--purple-50); }
::-webkit-scrollbar-thumb { background: var(--purple-400); border-radius: var(--radius-full); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography helpers ── */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-500) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(168,85,247,.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168,85,247,.55);
}

.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--purple-700);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--purple-100);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--sm  { padding: 10px 20px; font-size: .875rem; }
.btn--lg  { padding: 17px 36px; font-size: 1.05rem; }


/* ══════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(2);   opacity: 0; }
}
@keyframes scroll-line {
  0%   { opacity: 1; transform: scaleY(1)   translateY(0); }
  100% { opacity: 0; transform: scaleY(.2)  translateY(48px); }
}

/* ── Scroll-triggered animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-animate="fade-left"] { transform: translateX(32px); }

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0);
}


/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(107,33,168,.1);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.header__logo { flex-shrink: 0; line-height: 0; }
.header__logo img { height: 52px; width: auto; object-fit: contain; }

/* Sobre fundo roxo: inverte para branco */
.logo-white {
  filter: brightness(0) invert(1);
}

/* Após scroll: mostra logo colorida original */
.logo-colored { display: none; }
#header.scrolled .logo-white   { display: none; }
#header.scrolled .logo-colored { display: block; filter: none; }

/* Nav */
.header__nav { flex: 1; }
.header__nav ul {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.header__nav a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--purple-400);
  border-radius: 2px;
  transition: width var(--transition);
}
.header__nav a:hover       { color: var(--white); }
.header__nav a:hover::after { width: 100%; }
.header__nav a.active::after { width: 100%; }

#header.scrolled .header__nav a       { color: var(--gray-700); }
#header.scrolled .header__nav a:hover { color: var(--purple-700); }

/* CTA */
.header__cta { flex-shrink: 0; }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
  z-index: 1001;
}
.header__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#header.scrolled .header__hamburger span { background: var(--gray-700); }

.header__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--white) !important; }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--white) !important; }


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    var(--purple-950) 0%,
    var(--purple-800) 40%,
    var(--purple-600) 75%,
    #d8b4fe 100%);
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 75% 50%, rgba(192,132,252,.25) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 5%  85%, rgba(59,7,100,.6)    0%, transparent 60%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
  min-height: 100vh;
  padding-top: 80px;
}

.hero__content {
  padding: 80px 0 80px;
  align-self: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.14);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__title-intro {
  display: block;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: rgba(255,255,255,.88);
  margin-bottom: 4px;
  white-space: nowrap;
}
.hero__title-img {
  display: block;
  width: 120%;
  max-width: 140%;
  margin-left: -10%;
  max-height: 550px;
  margin-top: 12px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  animation: float 6s ease-in-out infinite;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__stats {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  margin-bottom: 40px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__stat strong {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.hero__stat span {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero__stat-divider {
  width: 1px; 
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4), transparent);
  flex-shrink: 0;
}

.stat--gold strong {
  background: linear-gradient(135deg, #fff099 0%, #f5c842 50%, #c9a227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(245,200,66,.4));
}
.stat--gold span {
  color: #ffdf70 !important;
}

/* Hero image */
.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  max-height: 950px;
}
.hero__image-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 75%; height: 55%;
  background: radial-gradient(ellipse, rgba(192,132,252,.45) 0%, transparent 65%);
  filter: blur(48px);
  z-index: 0;
}
.hero__image {
  position: relative;
  z-index: 1;
  height: 135%;
  width: auto;
  max-width: 140%;
  margin-left: -10%;
  object-fit: contain;
  object-position: bottom;
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(107,33,168,.55));
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  transform-origin: top;
  animation: scroll-line 2s ease-in-out infinite;
}


/* ══════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about__image-side {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.about__image-wrap {
  position: relative;
  height: 100%;
  min-height: 600px;
}
.about__image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .92;
}

.about__image-badge {
  position: absolute;
  bottom: 48px; right: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-bottom: 4px solid var(--purple-500);
}
.about__image-badge strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--purple-700);
  line-height: 1;
}
.about__image-badge span {
  font-size: .8rem;
  color: var(--gray-500);
  display: block;
  margin-top: 4px;
  font-weight: 500;
}

.about__content-side {
  display: flex;
  align-items: center;
  background: var(--purple-50);
  padding: 80px 72px;
}

.about__badge-tag {
  display: inline-block;
  background: var(--purple-200);
  color: var(--purple-800);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about__content .section-title { margin-bottom: 8px; }
.about__content p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: .975rem;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 40px;
}
.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about__feature-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .95rem;
  flex-shrink: 0;
}
.about__feature strong {
  display: block;
  font-size: .95rem;
  color: var(--gray-900);
  margin-bottom: 2px;
  font-weight: 600;
}
.about__feature span { font-size: .85rem; color: var(--gray-500); }


/* ══════════════════════════════════════════════
   TRATAMENTOS
══════════════════════════════════════════════ */
.treatments {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-100);
}
.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.treatment-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.treatment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.treatment-card:hover .treatment-card__image img { transform: scale(1.06); }

.treatment-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107,33,168,.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.treatment-card:hover .treatment-card__overlay { opacity: 1; }

.treatment-card__body { padding: 24px; }

.treatment-card__icon {
  width: 40px; height: 40px;
  background: var(--purple-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-700);
  font-size: .9rem;
  margin-bottom: 12px;
}
.treatment-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.treatment-card__body p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
}
.treatment-card__price { margin-bottom: 16px; }
.treatment-card__price span {
  display: block;
  font-size: .72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.treatment-card__price strong {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple-700);
}
.price-old {
  font-size: .8rem !important;
  color: var(--gray-400) !important;
  text-decoration: line-through !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.treatment-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--purple-700);
  transition: gap var(--transition), color var(--transition);
}
.treatment-card__cta:hover { gap: 10px; color: var(--purple-500); }
.treatment-card__cta i { font-size: .72rem; }


/* ══════════════════════════════════════════════
   GALERIA / RESULTADOS
══════════════════════════════════════════════ */
.gallery {
  padding: 100px 0;
  background: var(--dark);
}
.gallery .section-eyebrow { color: var(--purple-400); }
.gallery .section-title   { color: var(--white); }
.gallery .section-subtitle { color: rgba(255,255,255,.55); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 52px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107,33,168,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }

.gallery__cta { text-align: center; }


/* ── Lightbox ── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.overlay.active { opacity: 1; pointer-events: all; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.lightbox__content img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  color: var(--white);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox__close:hover { background: rgba(255,255,255,.28); }
.lightbox__prev:hover  { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.05); }
.lightbox__next:hover  { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.05); }



/* ══════════════════════════════════════════════
   AVALIAÇÕES GOOGLE
══════════════════════════════════════════════ */
.google-reviews {
  padding: 100px 0;
  background: var(--purple-50);
}

.google-reviews__widget {
  max-width: 1100px;
  margin: 0 auto;
}

/* Garante que o widget Elfsight se adapte ao layout */
.google-reviews__widget .elfsight-app-d0bc3f60-39fc-4ac3-9f9c-6358fcb5c579 {
  width: 100%;
}


/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
    var(--purple-950) 0%,
    var(--purple-800) 55%,
    var(--purple-600) 100%);
  padding: 110px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(59,7,100,.7) 0%, transparent 65%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}
.cta-banner__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-banner__content p {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner__image {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  overflow: hidden;
}
.cta-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .3;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.7) 50%, rgba(0,0,0,.9) 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.7) 50%, rgba(0,0,0,.9) 100%);
}


/* ══════════════════════════════════════════════
   LOCALIZAÇÃO / MAPA
══════════════════════════════════════════════ */
.location {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 460px;
}

.location__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 72px 64px;
  background: var(--purple-50);
}
.location__content .section-title { margin-bottom: 0; }
.location__content p {
  font-size: .975rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.location__map {
  position: relative;
  min-height: 420px;
}
.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .location {
    grid-template-columns: 1fr;
  }
  .location__content {
    padding: 56px 24px;
    text-align: center;
    align-items: center;
  }
  .location__map {
    min-height: 300px;
  }
}


/* ══════════════════════════════════════════════
   INSTAGRAM FEED
══════════════════════════════════════════════ */
.instagram-feed {
  padding: 100px 0 80px;
  background: var(--white);
}
.instagram-feed .section-header {
  margin-bottom: 48px;
}
.instagram-feed .section-eyebrow {
  gap: 8px;
}
.instagram-feed .section-eyebrow i {
  font-size: 1rem;
  color: #e1306c;
}
.instagram-feed__widget {
  width: 100%;
  min-height: 200px;
}
.instagram-feed__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.instagram-feed__cta .btn--outline {
  border-color: #e1306c;
  color: #e1306c;
  gap: 8px;
}
.instagram-feed__cta .btn--outline:hover {
  background: #e1306c;
  color: var(--white);
  border-color: #e1306c;
}

@media (max-width: 768px) {
  .instagram-feed { padding: 64px 0 48px; }
}


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 80px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}

.footer__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  object-position: left;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--purple-700);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__links h4,
.footer__treatments h4,
.footer__contact h4 {
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
}
.footer__links ul,
.footer__treatments ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a,
.footer__treatments a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition), padding-left var(--transition);
}
.footer__links a:hover,
.footer__treatments a:hover {
  color: var(--purple-400);
  padding-left: 4px;
}
.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .875rem;
  color: rgba(255,255,255,.45);
}
.footer__contact li i { color: var(--purple-400); margin-top: 3px; flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer__contact a:hover { color: var(--purple-400); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}


/* ══════════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 998;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
}
.whatsapp-fab__pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 2.2s ease-out infinite;
  z-index: -1;
}


/* ══════════════════════════════════════════════
   HARMONIZAÇÃO FACIAL
══════════════════════════════════════════════ */
.harmonizacao {
  padding: 100px 0;
  background: var(--white);
}

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

.plano-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px 24px;
  width: 100%;
  text-align: center;
  border-top: 5px solid;
  display: flex;
  flex-direction: column;
}

.plano-prata   { border-color: #a8a8a8; }
.plano-ouro    { border-color: #c9a227; }
.plano-diamond { border-color: #b07045; }

.plano-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.plano-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.plano-prata   .plano-name { color: #8a8a8a; }
.plano-ouro    .plano-name { color: #c9a227; }
.plano-diamond .plano-name { color: #b07045; }

.plano-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--purple-700);
  margin-bottom: 10px;
  font-family: var(--font-body);
  text-transform: uppercase;
}
.plano-desc {
  display: inline-block;
  font-size: .875rem;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 36px;
}

.plano-card__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: left;
  margin-bottom: 40px;
  flex-grow: 1;
}

.plano-section h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}
.plano-section ul { display: flex; flex-direction: column; gap: 7px; }
.plano-section li {
  font-size: .865rem;
  color: var(--gray-700);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}
.plano-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--purple-400);
  font-weight: 700;
}

.plano-cta { width: 100%; justify-content: center; margin-top: auto; }

.harmonizacao__obs {
  max-width: 700px;
  margin: 48px auto 0;
  background: var(--purple-50);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.harmonizacao__obs p {
  font-size: .85rem;
  color: var(--gray-500);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}
.harmonizacao__obs p i { color: var(--purple-500); margin-top: 2px; flex-shrink: 0; }


/* ══════════════════════════════════════════════
   GHK-Cu PEPTÍDEO
══════════════════════════════════════════════ */
.peptideo {
  padding: 100px 0;
  background: var(--dark);
}
.peptideo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.peptideo__content .section-eyebrow { color: var(--purple-400); }
.peptideo__content .section-title {
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-bottom: 20px;
}
.peptideo__content p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 36px;
}
.peptideo__before-after {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.peptideo__before-after img { width: 100%; height: auto; display: block; }
.peptideo__before-after-labels {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  padding: 20px 24px 16px;
}
.peptideo__before-after-labels span {
  flex: 1;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
}
.peptideo__before-after-labels span:last-child { text-align: right; }


/* ══════════════════════════════════════════════
   CLUBE DO BOTOX
══════════════════════════════════════════════ */
.clube-botox {
  padding: 100px 0;
  background: linear-gradient(135deg,
    var(--purple-950) 0%,
    var(--purple-800) 55%,
    var(--purple-600) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.clube-botox::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(192,132,252,.18) 0%, transparent 65%);
}
.clube-botox__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 620px;
  margin: 0 auto;
}
.clube-botox__badge {
  width: 72px; height: 72px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  border: 2px solid rgba(255,255,255,.22);
}
.clube-botox__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 4px;
}
.clube-botox__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.clube-botox__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--purple-300);
  margin-bottom: 16px !important;
  display: block;
}
.clube-botox__content p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}


/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .treatments__grid    { grid-template-columns: repeat(2, 1fr); }
  .harmonizacao__grid  { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .gallery__grid       { grid-template-columns: repeat(3, 1fr); }
  .about__content-side { padding: 60px 48px; }
  .footer__grid        { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner__image   { width: 35%; opacity: .22; }
  .location            { grid-template-columns: 1fr 1.2fr; }
  .location__content   { padding: 56px 40px; }

  .plano-card          { padding: 40px 36px; }
  .peptideo__inner     { gap: 48px; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {

  /* Previne overflow horizontal global */
  body { overflow-x: hidden; }

  /* ── Header ── */
  .header__nav {
    position: fixed;
    inset: 0;
    background: rgba(15,10,26,.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 999;
  }
  .header__nav.open    { opacity: 1; pointer-events: all; }
  .header__nav ul      { flex-direction: column; text-align: center; gap: 28px; }
  .header__nav a       { font-size: 1.4rem; color: var(--white) !important; font-weight: 600; }
  .header__nav a::after { display: none; }
  .header__cta         { display: none; }
  .header__hamburger   { display: flex; }

  /* ── Hero ── */
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 32px;
    align-items: center;
    gap: 0;
    min-height: auto;
  }
  .hero__image-wrap {
    order: -1;
    height: 110vw;
    max-height: 700px;
    width: 100%;
    padding-top: 16px;
    margin-bottom: -16px;
    margin-top: 220px;
  }
  .hero__image {
    height: calc(100% - 16px);
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    animation: none;
    transform: scale(1.45);
    transform-origin: bottom center;
  }
  .hero__image-glow { width: 90%; height: 40%; }
  .hero__content   { padding: 12px 0 48px; }
  .hero__title-img { width: 85%; max-width: 350px; margin: 0 auto 24px auto; }
  .hero__eyebrow   { font-size: .7rem; }
  .hero__subtitle  { margin-left: auto; margin-right: auto; font-size: .95rem; }
  .hero__actions   { justify-content: center; }
  .hero__stats     { justify-content: center; gap: 20px; }
  .hero__bg::after { height: 60px; }
  .hero__scroll-indicator { display: none; }

  /* ── Sobre ── */
  .about            { grid-template-columns: 1fr; }
  .about__image-side { display: none; }
  .about__content-side { padding: 56px 20px; }
  .about__content .section-title { font-size: 1.9rem; }

  /* ── Tratamentos ── */
  .treatments { padding: 72px 0; }
  .treatments__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* ── Harmonização ── */
  .harmonizacao { padding: 72px 0; }
  .harmonizacao__grid { max-width: 100%; gap: 32px; }
  .plano-card { padding: 32px 20px; }
  .plano-card__body { grid-template-columns: 1fr; gap: 20px; }
  .harmonizacao__obs { padding: 20px; }

  /* ── Peptídeo ── */
  .peptideo { padding: 72px 0; }
  .peptideo__inner { grid-template-columns: 1fr; gap: 40px; }
  .peptideo__content { order: 1; }
  .peptideo__image   { order: 2; }

  /* ── Clube do Botox ── */
  .clube-botox { padding: 72px 0; }

  /* ── Galeria ── */
  .gallery        { padding: 72px 0; }
  .gallery__grid  { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* ── Google Reviews ── */
  .google-reviews { padding: 72px 0; }

  /* ── CTA Banner ── */
  .cta-banner          { padding: 72px 0; text-align: center; }
  .cta-banner__content { max-width: 100%; padding: 0 8px; }
  .cta-banner__actions { justify-content: center; flex-direction: column; align-items: center; }
  .cta-banner__image   { display: none; }

  /* ── Localização ── */
  .location            { grid-template-columns: 1fr; }
  .location__content   { padding: 52px 20px; text-align: center; align-items: center; }
  .location__map       { min-height: 280px; }

  /* ── Footer ── */
  .footer              { padding: 56px 0 24px; }
  .footer__grid        { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom      { flex-direction: column; text-align: center; gap: 6px; }
  .footer__logo        { height: 48px; }
  .footer__social      { justify-content: center; }

  /* ── Lightbox ── */
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }

  /* ── FAB WhatsApp ── */
  .whatsapp-fab { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 1.3rem; }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero */
  .hero__image-wrap    { height: 94vw; max-height: 600px; padding-top: 20px; margin-bottom: -48px; }
  .hero__image         { height: calc(100% - 20px); }
  .hero__title-intro   { font-size: 1.3rem; white-space: normal; }
  .hero__title em      { font-size: 2.6rem; }
  .hero__actions       { flex-direction: column; align-items: center; }
  .hero__stats         { flex-wrap: wrap; gap: 16px; }
  .hero__stat-divider  { display: none; }

  /* Botões */
  .btn--lg             { padding: 15px 24px; font-size: .9rem; width: 100%; justify-content: center; }

  /* Seção títulos */
  .section-title       { font-size: 1.7rem; }

  /* Galeria */
  .gallery__grid       { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* CTA */
  .cta-banner__content h2 { font-size: 1.8rem; }

  /* Footer */
  .footer__links ul,
  .footer__treatments ul { columns: 2; gap: 8px; }
}
