/* ===================================================
   DRA. ERIKA EHRHARDT – MAIN STYLESHEET
   Paleta: Preto (#0a0a0a), Branco (#fafafa), Dourado (#c9a96e)
   =================================================== */

:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --white: #fafafa;
  --white-2: #f0ece6;
  --gold: #c9a96e;
  --gold-light: #e0c99a;
  --gold-dark: #a8843e;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --border: rgba(201,169,110,0.2);
  --shadow: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-gold: 0 8px 32px rgba(201,169,110,0.25);

  --font-serif: 'Inter', -apple-system, system-ui, sans-serif;
  --font-sans:  'Inter', -apple-system, system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-align: center;
  line-height: 1.35;
  min-width: 0;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn--lg { padding: 18px 36px; font-size: 0.85rem; }
.btn--sm { padding: 10px 16px; font-size: 0.75rem; width: 100%; justify-content: center; }
.btn--full { width: 100%; justify-content: center; }

/* ===== SECTION COMMONS ===== */
section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: var(--transition);
}

.header.scrolled {
  padding: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 76px;
}

.logo { display: flex; align-items: center; }
.logo__img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: rgba(250,250,250,0.75);
  transition: var(--transition);
}
.nav__link:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.05) 0%, transparent 50%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(250,250,250,0.65);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

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

.hero__actions .btn--outline {
  border-color: rgba(250,250,250,0.3);
  color: var(--white);
}
.hero__actions .btn--outline:hover {
  background: rgba(250,250,250,0.1);
  border-color: var(--white);
}

.hero__image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  display: inline-block;
}

.hero__photo {
  width: 100%;
  max-width: 480px;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(5%) contrast(1.04);
  -webkit-mask-image: linear-gradient(
    to bottom, black 0%, black 78%, transparent 100%
  ), linear-gradient(
    to left, black 0%, black 80%, transparent 100%
  );
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(
    to bottom, black 0%, black 78%, transparent 100%
  ), linear-gradient(
    to left, black 0%, black 80%, transparent 100%
  );
  mask-composite: intersect;
}

.hero__image-badge {
  position: absolute;
  bottom: 24px;
  left: 0;
  background: var(--gold);
  color: var(--black);
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
}
.hero__image-badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__image-badge span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.8;
}
.hero__badge-icon {
  font-size: 1.4rem;
  line-height: 1;
}

/* ===== STATS ===== */
.stats {
  padding: 48px 0;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats__number {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
}
.stats__suffix {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-left: 1px;
  vertical-align: super;
}
.stats__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.5);
  margin-top: 8px;
}

/* ===== SOBRE ===== */
.sobre {
  background: var(--white-2);
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.sobre__image {
  position: relative;
}

.sobre__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.sobre__credentials {
  position: absolute;
  right: -24px;
  bottom: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
}
.credential__icon { font-size: 1rem; }

.sobre__text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.sobre__text strong { color: var(--text); font-weight: 600; }
.sobre__text em { color: var(--gold-dark); font-style: italic; }

.sobre__list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sobre__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.sobre__list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ===== MÉTODO ULTRAFACE ===== */
.metodo {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.metodo__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 100%);
}

.metodo__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.metodo__subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

.metodo__text {
  font-size: 1rem;
  color: rgba(250,250,250,0.7);
  margin-bottom: 40px;
  line-height: 1.8;
}
.metodo__text strong { color: var(--gold); font-weight: 600; }

.metodo__pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.metodo__pillar {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 6px;
  align-items: start;
}
.metodo__pillar-icon {
  grid-row: 1 / 3;  /* ocupa as linhas do h4 e do p */
  align-self: start;
}
.metodo__pillar h4 { align-self: end; }
.metodo__pillar p  { align-self: start; min-width: 0; overflow-wrap: break-word; }

.metodo__pillar-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.metodo__pillar h4 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: -0.01em;
}
.metodo__pillar p {
  font-size: 0.9rem;
  color: rgba(250,250,250,0.6);
  line-height: 1.6;
}

.metodo__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  opacity: 0.85;
}

/* ===== TRATAMENTOS ===== */
.tratamentos {
  background: var(--white);
}

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

.tratamento-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tratamento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.tratamento-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tratamento-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tratamento-card:hover .tratamento-card__image img {
  transform: scale(1.05);
}

.tratamento-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.tratamento-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.tratamento-card__title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}
.tratamento-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

/* ===== RESULTADOS / GALLERY ===== */
.resultados {
  background: var(--white-2);
}

.gallery {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item {
  min-width: 33.333%;
  position: relative;
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gallery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10,10,10,0.8);
  color: var(--white);
  border: 1px solid var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.gallery__btn:hover {
  background: var(--gold);
  color: var(--black);
}
.gallery__btn--prev { left: 16px; }
.gallery__btn--next { right: 16px; }

.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.gallery__dot.active { background: var(--gold); }

.resultados__cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  background: var(--white);
  padding: 96px 0;
}

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

.diferencial {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.diferencial:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.diferencial__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}

.diferencial h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--black);
}
.diferencial p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  background: var(--black);
  color: var(--white);
}

.depoimentos .section-title { color: var(--white); }
.depoimentos .section-tag { color: var(--gold); }

.depoimentos__slider {
  position: relative;
  overflow: hidden;
}
.depoimentos__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimento-card {
  min-width: 33.333%;
  padding: 40px 32px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-lg);
  margin: 4px;
  background: rgba(255,255,255,0.03);
}

.depoimento-card__stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.depoimento-card__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  color: rgba(250,250,250,0.8);
  line-height: 1.75;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.depoimento-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.depoimento-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.depoimento-card__author span {
  font-size: 0.75rem;
  color: rgba(250,250,250,0.5);
}

/* ===== FAQ ===== */
.faq {
  background: var(--white-2);
}

.faq__inner { max-width: 800px; margin: 0 auto; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.faq__item.open { border-color: var(--gold); }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  transition: var(--transition);
}
.faq__question:hover { color: var(--gold-dark); }
.faq__item.open .faq__question { color: var(--gold-dark); }

.faq__icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq__answer.open {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq__answer p {
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== CONTATO ===== */
.contato {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 100%);
  color: var(--white);
}

.contato__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.contato__inner .section-tag { align-self: flex-start; }
.contato__inner .section-title { align-self: flex-start; text-align: left; }

.contato__text {
  font-size: 1rem;
  color: rgba(250,250,250,0.65);
  margin-bottom: 40px;
  line-height: 1.8;
  text-align: left;
  width: 100%;
}

.contato__locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
}
.contato__location {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  text-align: left;
}
.contato__location-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contato__location strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.contato__location span {
  font-size: 0.8rem;
  color: rgba(250,250,250,0.55);
  line-height: 1.5;
}

.contato__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(250,250,250,0.3);
}
.btn--outline-light:hover {
  background: rgba(250,250,250,0.08);
  border-color: var(--white);
}


/* ===== FOOTER ===== */
.footer {
  background: var(--black-2);
  border-top: 1px solid rgba(201,169,110,0.15);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer__logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.85rem;
  color: rgba(250,250,250,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,250,250,0.6);
  transition: var(--transition);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__links h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links li {
  font-size: 0.82rem;
  color: rgba(250,250,250,0.5);
  line-height: 1.4;
}
.footer__links a {
  color: rgba(250,250,250,0.5);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__links small { font-size: 0.75rem; opacity: 0.7; }

.footer__bottom {
  border-top: 1px solid rgba(250,250,250,0.05);
  padding: 24px 0;
  display: flex;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(250,250,250,0.3);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2s infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE — abordagem mobile-first
   Breakpoints: 480 | 768 | 1024 | 1200
   =================================================== */

/* ── Tablet largo / desktop pequeno ── */
@media (max-width: 1100px) {
  .tratamentos__grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── Tablet ── */
@media (max-width: 900px) {
  /* Container */
  .container { padding: 0 20px; }

  /* Header */
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: fixed;
    inset: 0 0 0 0;
    top: 68px;
    background: rgba(10,10,10,0.99);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 998;
    padding: 40px 20px;
  }
  .nav.open .nav__list {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .nav.open .nav__link {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--white);
  }
  .hamburger { display: flex; }
  .header__cta { display: none; }
  .header__inner { height: 68px; }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
    align-items: flex-start;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__content { order: 2; }
  .hero__image  { order: 1; display: flex; justify-content: center; }
  .hero__photo  { max-width: 280px; }
  .hero__subtitle { margin: 0 auto 32px; max-width: 480px; }
  .hero__actions  { justify-content: center; }
  .hero__image-badge { left: 50%; transform: translateX(-50%); bottom: -16px; white-space: nowrap; }
  .hero__scroll { display: none; }

  /* Stats */
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Sobre */
  .sobre__inner { grid-template-columns: 1fr; gap: 32px; }
  .sobre__credentials {
    position: static;
    right: auto;
    bottom: auto;
    min-width: unset;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    padding: 16px;
  }
  .credential { flex: 1 1 auto; min-width: 140px; }

  /* Método */
  .metodo__inner { grid-template-columns: 1fr; gap: 40px; }
  .metodo__image { order: -1; }
  .metodo__image img { max-height: 300px; object-fit: cover; }

  /* Gallery */
  .gallery__item { min-width: 50%; }

  /* Depoimentos */
  .depoimento-card { min-width: calc(100% - 8px); margin: 4px; }

  /* Contato */
  .contato__inner { align-items: flex-start; }
  .contato__locations { grid-template-columns: 1fr 1fr; }
  .contato__inner .section-title { text-align: left; }

  /* Footer */
  .footer__inner { padding: 48px 0 32px; }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  /* Base */
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  /* Buttons */
  .btn--lg { padding: 16px 24px; font-size: 0.82rem; }
  .btn { white-space: normal; text-align: center; }

  /* Header */
  .header__inner { height: 64px; }
  .logo__img { height: 40px; }
  .nav.open { top: 64px; }

  /* Hero */
  .hero { padding: 84px 0 48px; }
  .hero__badge { font-size: 0.65rem; padding: 5px 12px; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 16px; }
  .hero__subtitle { font-size: 0.95rem; margin-bottom: 28px; }
  .hero__photo { max-width: 240px; border-radius: 8px; }
  .hero__image-badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 10px 14px;
  }
  .hero__image { position: relative; flex-direction: column; align-items: center; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Stats */
  .stats { padding: 32px 0; }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stats__item {
    padding: 20px 12px;
    border: 1px solid rgba(201,169,110,0.1);
  }
  .stats__number { font-size: 2.4rem; }
  .stats__suffix { font-size: 1.6rem; }
  .stats__label { font-size: 0.65rem; }

  /* Sobre */
  .sobre__credentials {
    flex-direction: column;
    gap: 8px;
    padding: 14px;
  }
  .credential { min-width: unset; }
  .sobre__list li { font-size: 0.875rem; }

  /* Método */
  .metodo { padding: 64px 0; }
  .metodo__pillar { grid-template-columns: 40px minmax(0, 1fr); column-gap: 12px; row-gap: 4px; }
  .metodo__pillar-icon { grid-row: 1 / 3; width: 40px; height: 40px; font-size: 1rem; }
  .metodo__pillar-icon { width: 40px; height: 40px; font-size: 1rem; }
  .metodo__pillars { gap: 20px; }
  .metodo__image img { max-height: 220px; }

  /* Tratamentos */
  .tratamentos__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tratamento-card__body { padding: 20px 16px; }
  /* Scroll horizontal suave em mobile para os cards */

  /* Gallery */
  .gallery__item { min-width: 100%; }
  .gallery__btn { width: 40px; height: 40px; font-size: 1rem; }
  .gallery__btn--prev { left: 8px; }
  .gallery__btn--next { right: 8px; }

  /* Diferenciais */
  .diferenciais { padding: 64px 0; }
  .diferenciais__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .diferencial { padding: 28px 20px; }

  /* Depoimentos */
  .depoimento-card {
    padding: 28px 20px;
    min-width: calc(100% - 0px);
    margin: 0;
  }
  .depoimentos__slider { margin: 0 -4px; }
  .depoimento-card__text { font-size: 1rem; }

  /* FAQ */
  .faq__inner { padding: 0; }
  .faq__question { padding: 16px 16px; font-size: 0.88rem; }
  .faq__answer p { padding: 0 16px; font-size: 0.875rem; }

  /* Contato */
  .contato__locations { grid-template-columns: 1fr; gap: 10px; }
  .contato__location { padding: 12px; }
  .contato__cta-group { flex-direction: column; }
  .contato__cta-group .btn { width: 100%; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 24px;
  }
  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  /* WhatsApp float */
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
}

/* ── Mobile pequeno (< 380px) ── */
@media (max-width: 380px) {
  .hero__title { font-size: 1.85rem; }
  .section-title { font-size: 1.7rem; }
  .stats__number { font-size: 2rem; }
  .stats__suffix { font-size: 1.3rem; }
  .container { padding: 0 14px; }
}
