:root {
  /* paleta */
  --bg: #faf6ef;
  --bg-alt: #f3ece1;
  --off-white: #fdfbf7;
  --card: rgba(255, 252, 246, 0.86);
  --text: #2a221c;
  --muted: #7a6e63;
  --line: rgba(82, 60, 38, 0.09);

  --gold: #b8924d;        /* dourado queimado */
  --gold-dark: #97783d;
  --gold-soft: rgba(184, 146, 77, 0.1);
  --brown: #8b5f3d;       /* marrom claro */
  --brown-dark: #6f472d;
  --rose: #e2c2c6;
  --lilac: #d6c2da;
  --olive: #6f7855;       /* verde oliva quente */
  --olive-dark: #5e6748;

  --shadow: 0 24px 60px rgba(82, 60, 38, 0.08);
  --soft-shadow: 0 14px 34px rgba(82, 60, 38, 0.06);
  --card-shadow: 0 18px 42px rgba(82, 60, 38, 0.07);

  --container: min(1180px, calc(100vw - 48px));
  --narrow: min(780px, calc(100vw - 48px));

  --serif: "Gilda Display", "Times New Roman", serif;
  --sans: "Inter", Arial, sans-serif;

  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(226, 194, 198, 0.18), transparent 26rem),
    radial-gradient(circle at 92% 30%, rgba(184, 146, 77, 0.1), transparent 28rem),
    radial-gradient(circle at 50% 96%, rgba(214, 194, 218, 0.12), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

/* ===== TIPOGRAFIA ===== */
h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.1;
  text-wrap: balance;
}

h1 em,
h2 em,
h3 em,
.cta-final em,
.contact-card em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.nowrap {
  white-space: nowrap;
}

h1 {
  max-width: 560px;
  font-size: clamp(2.1rem, 4.2vw, 3.85rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.95rem, 3.1vw, 2.85rem);
  line-height: 1.1;
}

h3 {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--muted);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: flex;
  width: var(--container);
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 8px 8px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.78);
  box-shadow: 0 12px 36px rgba(60, 42, 30, 0.05);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 16px 38px rgba(60, 42, 30, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(226, 194, 198, 0.55), rgba(214, 194, 218, 0.55));
  color: var(--gold);
  box-shadow: 0 6px 14px rgba(214, 194, 218, 0.42);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand-logo {
  display: block;
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer .brand-logo {
  height: 88px;
}

@media (max-width: 680px) {
  .brand-logo {
    height: 44px;
  }
  .site-footer .brand-logo {
    height: 78px;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #5f5247;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
}

.main-nav a:not(.nav-cta) {
  position: relative;
  padding: 6px 2px;
  background: none;
  border: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease;
}

.main-nav a:not(.nav-cta):hover,
.main-nav a[aria-current="page"] {
  color: var(--gold);
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width 0.25s ease, left 0.25s ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a[aria-current="page"]::after {
  left: 0;
  width: 100%;
}

.main-nav a:not(.nav-cta):hover::after {
  left: 0;
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--gold-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.4px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 1px;
}

/* ===== BOTÕES ===== */
.btn,
.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary,
.nav-cta {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 14px 28px rgba(184, 146, 77, 0.22);
}

.btn-primary:hover,
.nav-cta:hover {
  background: var(--gold-dark);
  box-shadow: 0 18px 32px rgba(184, 146, 77, 0.28);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 252, 246, 0.75);
  color: var(--brown-dark);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  min-height: 52px;
  padding: 0 30px;
  font-size: 0.92rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  display: grid;
  width: var(--container);
  min-height: 720px;
  margin: 0 auto;
  padding: 150px 0 96px;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.hero-content {
  display: grid;
  gap: 20px;
}

.hero-eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-content > p {
  max-width: 520px;
  font-size: 1.06rem;
}

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

.hero-note {
  max-width: 460px;
  color: #8b7f74;
  font-size: 0.86rem;
}

.hero-media {
  position: relative;
  height: 560px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 44px 44px 180px 44px;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
  object-position: center;
}

.hero-tag {
  position: absolute;
  z-index: 2;
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 252, 246, 0.94);
  box-shadow: var(--soft-shadow);
  color: var(--brown-dark);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
}

.hero-tag-1 {
  top: 60px;
  left: -28px;
}

.hero-tag-2 {
  right: -32px;
  bottom: 140px;
}

/* ===== SEÇÕES GERAIS ===== */
.section {
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: 68px;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.section-copy p {
  max-width: 600px;
  font-size: 1rem;
}

.section-copy .btn {
  width: fit-content;
  margin-top: 8px;
}

blockquote {
  margin: 8px 0;
  max-width: 500px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: var(--brown-dark);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
}

.portrait-frame {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 32px 32px 200px 32px;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}

.portrait-frame img.portrait-pro,
.portrait-frame .portrait-pro {
  object-position: center 10%;
}

.portrait-frame::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  z-index: -1;
  width: 160px;
  height: 160px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
  opacity: 0.4;
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 56px;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}


.section-heading p {
  max-width: 620px;
  font-size: 1rem;
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker.dark {
  background: var(--gold-soft);
  color: var(--gold-dark);
}

/* ===== MÉTODO (quebra de cor) ===== */
.method-section {
  position: relative;
  width: 100%;
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 146, 77, 0.18), transparent 22rem),
    radial-gradient(circle at 88% 82%, rgba(226, 194, 198, 0.12), transparent 22rem),
    linear-gradient(180deg, #5a3d27, #4a3220);
  color: #fff;
}

.method-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.method-heading {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin-bottom: 72px;
  text-align: center;
}

.section-kicker.light {
  background: rgba(255, 252, 246, 0.14);
  color: rgba(255, 252, 246, 0.85);
}

.method-section h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.05;
}

.method-section h2 em {
  display: block;
  color: rgba(255, 252, 246, 0.32);
  font-size: 1.05em;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.method-step {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.method-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.12);
  color: #fff;
  margin-bottom: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.method-step:hover .method-icon {
  background: rgba(255, 252, 246, 0.2);
  transform: translateY(-3px);
}

.method-icon svg {
  width: 32px;
  height: 32px;
}

.method-step h3 {
  max-width: 240px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 500;
}

.method-step p {
  max-width: 240px;
  color: rgba(255, 252, 246, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ===== 4. EXPERIÊNCIA ===== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.experience-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(82, 60, 38, 0.1);
}

.experience-media {
  height: 280px;
  overflow: hidden;
}

.experience-media img {
  transition: transform 0.6s ease;
}

.experience-card:hover .experience-media img {
  transform: scale(1.04);
}

.experience-body {
  display: grid;
  gap: 12px;
  padding: 32px 30px 34px;
}

.experience-tag {
  width: fit-content;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
}

.experience-body h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
}

.experience-body p {
  font-size: 0.95rem;
}

.experience-body .btn {
  width: fit-content;
  margin-top: 12px;
}

/* ===== CATEGORIAS DA CLÍNICA ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  box-shadow: var(--card-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 56px rgba(82, 60, 38, 0.12);
}

.category-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--bg-alt);
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover .category-media img {
  transform: scale(1.05);
}

.category-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(184, 146, 77, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.94);
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(82, 60, 38, 0.08);
  backdrop-filter: blur(8px);
}

.category-body {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 34px 32px 32px;
}

.category-card[data-cat]::after {
  content: attr(data-cat);
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 2;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  opacity: 0.55;
  pointer-events: none;
}

.category-body h3 {
  margin-right: 36px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.category-body > p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.category-list {
  display: grid;
  gap: 9px;
  padding: 14px 0 6px;
  margin: 4px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.category-list li {
  position: relative;
  padding: 4px 0 4px 22px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.92rem;
}

.category-list li::before {
  position: absolute;
  top: 0.95em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.category-body .text-link {
  margin-top: 14px;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ===== 5. DIFERENCIAIS ===== */
.soft-band {
  width: 100%;
  max-width: none;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 12% 22%, rgba(184, 146, 77, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(243, 236, 225, 0.5), rgba(250, 246, 239, 0.95));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(184, 146, 77, 0.28);
  box-shadow: 0 22px 48px rgba(82, 60, 38, 0.09);
  transform: translateY(-3px);
}

.feature-card-wide {
  grid-column: span 1;
}

.feature-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  background: var(--gold-soft);
  color: var(--gold);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 1.1rem;
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== 6. SERVIÇOS ===== */
.services-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 88% 16%, rgba(226, 194, 198, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(255, 252, 246, 0), rgba(243, 236, 225, 0.3) 46%, rgba(255, 252, 246, 0));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 32px 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(226, 194, 198, 0.8));
  content: "";
}

.service-card::after {
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--gold-soft);
  content: "";
  opacity: 0.55;
}

.service-card:hover {
  border-color: rgba(184, 146, 77, 0.28);
  box-shadow: 0 22px 48px rgba(82, 60, 38, 0.09);
  transform: translateY(-3px);
}

.service-icon {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.12rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== 7. AMBIENTE ===== */
.gallery-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 252, 246, 0.5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery-grid img {
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.5s ease;
}

.gallery-grid img:hover {
  transform: scale(1.015);
}

.gallery-grid img:nth-child(1) {
  grid-column: 1 / span 5;
  grid-row: 1 / span 2;
}

.gallery-grid img:nth-child(2) {
  grid-column: 6 / span 3;
  grid-row: 1;
}

.gallery-grid img:nth-child(3) {
  grid-column: 9 / span 4;
  grid-row: 1 / span 2;
}

.gallery-grid img:nth-child(4) {
  grid-column: 6 / span 3;
  grid-row: 2;
}

.gallery-grid img:nth-child(5) {
  grid-column: 1 / span 4;
  grid-row: 3 / span 2;
}

.gallery-grid img:nth-child(6) {
  grid-column: 5 / span 4;
  grid-row: 3 / span 2;
}

.gallery-grid img:nth-child(7) {
  grid-column: 9 / span 4;
  grid-row: 3;
}

.gallery-grid img:nth-child(8) {
  grid-column: 9 / span 4;
  grid-row: 4;
}

/* ===== ANTES E DEPOIS ===== */
.results-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 8% 18%, rgba(184, 146, 77, 0.08), transparent 22rem),
    radial-gradient(circle at 92% 82%, rgba(226, 194, 198, 0.12), transparent 24rem),
    rgba(255, 252, 246, 0.6);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.results-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
  box-shadow: 0 24px 50px rgba(82, 60, 38, 0.1);
  transform: translateY(-4px);
}

.result-media {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--bg-alt);
}

.result-media img {
  object-position: center;
  transition: transform 0.6s ease;
}

.result-card:hover .result-media img {
  transform: scale(1.04);
}

.result-media::after {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.92);
  box-shadow: var(--soft-shadow);
  color: var(--gold-dark);
  content: "antes · depois";
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-body {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 20px 22px 22px;
}

.result-body span {
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.results-footer {
  margin-top: 36px;
  text-align: center;
}

/* ===== 8. AUTORIDADE ===== */
.authority-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.authority-section .portrait-frame {
  height: 540px;
  border-radius: 200px 32px 32px 32px;
}

.authority-section .portrait-frame::after {
  right: auto;
  bottom: auto;
  top: -28px;
  left: -28px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 12px 0 4px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
}

.check-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  content: "✓";
  font-size: 0.62rem;
  font-weight: 700;
}

/* ===== 9. DEPOIMENTOS ===== */
.testimonials-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(255, 252, 246, 0), rgba(243, 236, 225, 0.6) 30%, rgba(255, 252, 246, 0) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 38px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
}

.quote-mark {
  position: absolute;
  top: 6px;
  left: 22px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0.65;
}

.testimonial-card p {
  position: relative;
  color: var(--text);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.45;
}

.testimonial-card strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== 10. CTA FINAL ===== */
.cta-final {
  position: relative;
  width: var(--narrow);
  margin: 110px auto;
  padding: 64px 44px;
  display: grid;
  gap: 12px;
  justify-items: center;
  border: 1px solid rgba(184, 146, 77, 0.18);
  border-radius: 40px;
  background:
    radial-gradient(circle at 14% 0%, rgba(226, 194, 198, 0.28), transparent 60%),
    radial-gradient(circle at 86% 100%, rgba(184, 146, 77, 0.16), transparent 60%),
    linear-gradient(180deg, var(--off-white), var(--bg-alt));
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}

.cta-final::before {
  position: absolute;
  top: -110px;
  right: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(184, 146, 77, 0.16);
  border-radius: 50%;
  content: "";
}

.cta-final::after {
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(214, 194, 218, 0.3);
  border-radius: 50%;
  content: "";
}

.cta-final h2 {
  position: relative;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
}

.cta-final p {
  position: relative;
  max-width: 520px;
  margin: 4px auto 14px;
  font-size: 1rem;
}

.cta-final .btn {
  position: relative;
  margin-top: 6px;
}

/* ===== 11. CONTATO ===== */
.contact-section {
  display: grid;
  gap: 40px;
}

.contact-heading {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.contact-heading p {
  max-width: 560px;
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 28px;
}

.map-card {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
}

dl,
dd {
  margin: 0;
}

dl {
  display: grid;
  gap: 18px;
}

dt {
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

dd {
  margin-top: 4px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* ===== 12. RODAPÉ ===== */
.site-footer {
  display: grid;
  width: var(--container);
  margin: 80px auto 0;
  padding: 48px 0 36px;
  grid-template-columns: 1.5fr 0.8fr 0.9fr;
  gap: 32px;
  border-top: 1px solid var(--line);
}

.footer-brand-col p {
  max-width: 380px;
  margin-top: 16px;
  font-size: 0.92rem;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
}

.site-footer nav strong,
.footer-contact strong {
  margin-bottom: 4px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.site-footer nav a,
.footer-contact a {
  transition: color 0.2s ease;
}

.site-footer nav a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-credit {
  margin-top: 12px;
  color: #a89a8d;
  font-size: 0.78rem;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.4);
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

/* ===== ANIMAÇÕES ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== TRATAMENTOS · FACIAL (ícones) ===== */
.facial-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(226, 194, 198, 0.16), transparent 24rem),
    rgba(255, 252, 246, 0.55);
}

.facial-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.facial-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 38px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
  text-align: center;
  justify-items: center;
  align-content: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.facial-card:hover {
  border-color: rgba(184, 146, 77, 0.28);
  box-shadow: 0 22px 48px rgba(82, 60, 38, 0.09);
  transform: translateY(-4px);
}

.facial-card:hover .facial-icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(-4deg);
}

.facial-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.facial-icon svg {
  width: 30px;
  height: 30px;
}

.facial-card h3 {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.facial-card p {
  max-width: 240px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== TRATAMENTOS · CORPORAL (lista horizontal) ===== */
.corporal-list {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.corporal-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, padding 0.3s ease;
}

.corporal-row:hover {
  background: linear-gradient(90deg, rgba(184, 146, 77, 0.06), transparent 80%);
  padding-left: 22px;
}

.corporal-number {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.corporal-content {
  display: grid;
  gap: 6px;
}

.corporal-content h3 {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.corporal-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.corporal-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(255, 252, 246, 0.6);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.corporal-row:hover .corporal-tag {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ===== TRATAMENTOS · SPA (pills com gradient) ===== */
.spa-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 88% 12%, rgba(226, 194, 198, 0.16), transparent 22rem),
    radial-gradient(circle at 8% 88%, rgba(214, 194, 218, 0.12), transparent 22rem),
    rgba(243, 236, 225, 0.4);
}

.spa-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.spa-card {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 28px 28px 30px;
  border: 1px solid rgba(255, 252, 246, 0.6);
  border-radius: 28px;
  background: var(--spa-bg, linear-gradient(135deg, #f0e3e6, #e6d4d9));
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.spa-card::before {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.28);
  content: "";
}

.spa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 50px rgba(82, 60, 38, 0.12);
}

.spa-card:nth-child(even) {
  transform: translateY(22px);
}

.spa-card:nth-child(even):hover {
  transform: translateY(17px);
}

.spa-time {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.7);
  color: var(--brown-dark);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spa-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.spa-card p {
  position: relative;
  z-index: 1;
  color: rgba(42, 34, 28, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

.spa-card--feature {
  grid-column: span 1;
  background: var(--spa-bg, linear-gradient(135deg, #e6d4dd, #d9c2cd));
}

.spa-card--feature h3 {
  font-size: 1.6rem;
}

.spa-card--feature .text-link {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: var(--brown-dark);
  font-weight: 600;
}

/* ===== TRATAMENTOS · LASER + FISIO (2 colunas) ===== */
.split-services-section {
  width: var(--container);
  max-width: var(--container);
}

.split-services {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--off-white);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.split-col {
  position: relative;
  padding: 44px 40px;
}

.split-col + .split-col {
  border-left: 1px solid var(--line);
}

.split-col-header {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.split-col-eyebrow {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
}

.split-col-header h3 {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.split-col-header p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 360px;
}

.split-col-list {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.split-col-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}

.split-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
}

.split-mark svg {
  width: 16px;
  height: 16px;
}

.split-col-list li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
}

.split-col-list li p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== TRATAMENTOS · INJETÁVEIS ===== */
.injetaveis-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 88% 18%, rgba(184, 146, 77, 0.1), transparent 24rem),
    radial-gradient(circle at 12% 82%, rgba(226, 194, 198, 0.1), transparent 22rem),
    rgba(255, 252, 246, 0.6);
}

.injetaveis-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
}

.injetavel-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 32px 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.injetavel-card:hover {
  border-color: rgba(184, 146, 77, 0.28);
  box-shadow: 0 22px 48px rgba(82, 60, 38, 0.1);
  transform: translateY(-3px);
}

.injetavel-card h3 {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.injetavel-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.injetavel-card--featured {
  position: relative;
  padding: 38px 36px 36px;
  background:
    radial-gradient(circle at 90% 0%, rgba(184, 146, 77, 0.12), transparent 60%),
    linear-gradient(180deg, var(--off-white), var(--bg-alt));
  border-color: rgba(184, 146, 77, 0.22);
}

.injetavel-tag {
  width: fit-content;
  margin-bottom: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.injetavel-card--featured h3 {
  font-size: 2.05rem;
}

.injetavel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px 0 6px;
  margin: 8px 0 4px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.injetavel-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
}

.injetavel-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.injetavel-card--featured .btn {
  width: fit-content;
  margin-top: 12px;
}

.injetaveis-side {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 12px;
}

.injetaveis-side .injetavel-card {
  padding: 18px 22px;
  gap: 4px;
}

.injetaveis-side .injetavel-card h3 {
  font-size: 1.1rem;
}

.injetaveis-side .injetavel-card p {
  font-size: 0.86rem;
  line-height: 1.45;
}

/* ===== SPA EXPERIENCES (Casal / Presente) ===== */
.spa-experiences {
  max-width: 1180px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.spa-experience {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 38px 34px 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.spa-experience--gift {
  background:
    radial-gradient(circle at 90% 0%, rgba(184, 146, 77, 0.2), transparent 60%),
    linear-gradient(135deg, #efe0d0, #e6d2bd);
}

.spa-experience--couple {
  background:
    radial-gradient(circle at 10% 100%, rgba(214, 194, 218, 0.3), transparent 60%),
    linear-gradient(135deg, #f0dce0, #e4c8ce);
}

.spa-experience::before {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.35);
  content: "";
}

.spa-badge {
  position: relative;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.85);
  color: var(--brown-dark);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spa-experience .spa-time {
  position: relative;
  margin-top: 6px;
  background: rgba(255, 252, 246, 0.6);
}

.spa-experience h3 {
  position: relative;
  margin-top: 4px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
}

.spa-experience p {
  position: relative;
  color: rgba(42, 34, 28, 0.78);
  font-size: 0.96rem;
  line-height: 1.55;
}

.spa-experience .btn {
  position: relative;
  width: fit-content;
  margin-top: 14px;
}

/* ===== TRATAMENTOS COM TABS ===== */
.tabs-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 146, 77, 0.06), transparent 22rem),
    rgba(255, 252, 246, 0.5);
}

.tabs-wrapper {
  max-width: 1180px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 36px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.tab-btn .tab-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.tab-btn.is-active {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 22px rgba(184, 146, 77, 0.28);
}

.tab-btn:not(.is-active):hover {
  color: var(--gold);
  background: var(--gold-soft);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: 0;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  animation: tabFade 0.45s ease;
}

.tab-panel[hidden] {
  display: none;
}

@keyframes tabFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-media {
  position: relative;
  height: 100%;
  min-height: 420px;
  max-height: 560px;
  overflow: hidden;
  background: var(--bg-alt);
}

.panel-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.panel-body {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 44px 42px;
}

.panel-tag {
  width: fit-content;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
}

.panel-body h3 {
  color: var(--text);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.panel-body > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 460px;
}

.panel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  padding: 20px 0;
  margin: 6px 0 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.panel-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.92rem;
}

.panel-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.panel-list-highlight {
  color: var(--gold-dark) !important;
  font-weight: 600 !important;
}

.panel-list-highlight::before {
  background: var(--gold) !important;
  height: 2px !important;
  width: 14px !important;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

/* ===== BOTÃO FLUTUANTE "TRATAMENTOS" ===== */
.anchor-spacer {
  position: relative;
  height: 0;
  margin-top: -90px;
  padding-top: 90px;
  pointer-events: none;
}

.index-toggle {
  position: fixed;
  top: 96px;
  right: 20px;
  z-index: 22;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px 11px 16px;
  border: 1px solid rgba(184, 146, 77, 0.28);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.94);
  backdrop-filter: blur(14px);
  color: var(--brown-dark);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(82, 60, 38, 0.12);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, top 0.3s ease;
}

.index-toggle:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.index-toggle.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
}

.index-toggle svg {
  width: 18px;
  height: 18px;
}

.site-header.is-scrolled + .index-toggle,
.site-header.is-scrolled ~ .index-toggle {
  top: 88px;
}

body.drawer-open {
  overflow: hidden;
}

/* ===== DRAWER LATERAL DE CATEGORIAS ===== */
.treat-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  pointer-events: none;
}

.treat-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.treat-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 34, 28, 0.42);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}

.treat-drawer.is-open .treat-drawer-overlay {
  opacity: 1;
}

.treat-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 92vw);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--off-white);
  box-shadow: -24px 0 60px rgba(82, 60, 38, 0.2);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.treat-drawer.is-open .treat-drawer-content {
  transform: translateX(0);
}

.treat-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--line);
}

.treat-drawer-eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.treat-drawer-header h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.treat-drawer-close {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-dark);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.treat-drawer-close:hover {
  background: var(--gold);
  color: #fff;
  transform: rotate(90deg);
}

.treat-drawer-close svg {
  width: 18px;
  height: 18px;
}

.treat-drawer-list {
  display: grid;
  gap: 2px;
  padding: 14px 14px;
  overflow-y: auto;
}

.treat-drawer-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 12px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
}

.treat-drawer-list a::after {
  content: "→";
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.treat-drawer-list a:hover {
  background: var(--gold-soft);
  color: var(--gold-dark);
  padding-left: 22px;
}

.treat-drawer-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.treat-drawer-footer {
  padding: 18px 22px 26px;
  border-top: 1px solid var(--line);
  display: grid;
}

.treat-drawer-footer .btn {
  width: 100%;
}

/* ===== PROTOCOLOS (genérico) ===== */
.protocol-section {
  width: 100%;
  max-width: none;
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
}

.protocol-section.alt-bg {
  background:
    radial-gradient(circle at 92% 18%, rgba(184, 146, 77, 0.06), transparent 22rem),
    rgba(243, 236, 225, 0.45);
}

.section-subheading {
  max-width: 1180px;
  margin: 56px auto 28px;
  text-align: center;
  display: grid;
  gap: 8px;
}

.section-subheading h3 {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.section-subheading p {
  color: var(--muted);
  font-size: 0.95rem;
}

.protocol-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

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

.protocol-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 30px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.protocol-card:hover {
  border-color: rgba(184, 146, 77, 0.28);
  box-shadow: 0 24px 50px rgba(82, 60, 38, 0.1);
  transform: translateY(-4px);
}

.protocol-card--featured {
  background:
    radial-gradient(circle at 92% 0%, rgba(184, 146, 77, 0.16), transparent 60%),
    linear-gradient(180deg, var(--off-white), #fdf4e6);
  border-color: rgba(184, 146, 77, 0.32);
}

.protocol-card--soft {
  background: linear-gradient(180deg, #fdf4ec, #f8e8d8);
  border-color: rgba(184, 146, 77, 0.18);
}

.protocol-tag {
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.protocol-card--featured .protocol-tag {
  background: var(--gold);
  color: #fff;
}

.protocol-card h3 {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.protocol-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 4px 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
}

.protocol-price strong {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.05;
}

.protocol-price small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.protocol-price > span {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.protocol-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-style: italic;
}

.protocol-includes {
  padding: 14px 0 6px;
  margin: 4px 0;
  list-style: none;
  display: grid;
  gap: 7px;
  border-top: 1px solid var(--line);
}

.protocol-includes li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.4;
}

.protocol-includes li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.protocol-card .btn {
  margin-top: 8px;
  align-self: end;
  justify-self: start;
}

/* ===== PRICE LIST (tabela de preços) ===== */
.price-list-section {
  width: 100%;
  max-width: none;
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
}

.price-list-section.alt-bg {
  background:
    radial-gradient(circle at 92% 18%, rgba(226, 194, 198, 0.12), transparent 22rem),
    rgba(243, 236, 225, 0.45);
}

.price-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 14px 24px;
  list-style: none;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 16px 8px;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list li span {
  color: var(--text);
  font-size: 0.96rem;
}

.price-list li strong {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
}

.price-cta {
  padding: 8px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease;
}

.price-cta:hover {
  background: var(--gold);
  color: #fff;
}

.price-list--compact li {
  padding: 12px 4px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
}

.price-list--compact li span {
  font-size: 0.9rem;
}

.price-list--compact li strong {
  font-size: 1rem;
}

/* ===== DEPILAÇÃO (2 colunas) ===== */
.depilation-section {
  width: 100%;
  max-width: none;
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 252, 246, 0.55);
}

.depilation-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.depilation-col {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
}

.depilation-col h3 {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.depilation-col .price-list {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

/* ===== FISIO / MIOFASCIAL ===== */
.fisio-section,
.mio-section {
  align-items: center;
}

.fisio-section.alt-bg {
  background: rgba(243, 236, 225, 0.4);
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
  width: 100%;
  max-width: none;
}

.fisio-section .section-copy,
.mio-section .section-copy {
  max-width: 560px;
}

.fisio-prices {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--off-white);
}

.fisio-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.fisio-row:last-child {
  border-bottom: none;
}

.fisio-row span {
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.92rem;
}

.fisio-row strong {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ===== RESULTS DISCLAIMER ===== */
.results-disclaimer {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
}

/* ===== PILATES PLANS ===== */
.plans-section {
  width: 100%;
  max-width: none;
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 88% 16%, rgba(184, 146, 77, 0.08), transparent 22rem),
    rgba(255, 252, 246, 0.6);
}

.plans-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 32px 26px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plan-card:hover {
  border-color: rgba(184, 146, 77, 0.3);
  box-shadow: 0 26px 52px rgba(82, 60, 38, 0.1);
  transform: translateY(-4px);
}

.plan-card--highlight {
  background:
    radial-gradient(circle at 90% 0%, rgba(184, 146, 77, 0.18), transparent 60%),
    linear-gradient(180deg, var(--off-white), #fdf4e6);
  border-color: rgba(184, 146, 77, 0.32);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(184, 146, 77, 0.32);
}

.plan-card header {
  display: grid;
  gap: 8px;
}

.plan-tag {
  width: fit-content;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
}

.plan-card h3 {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.plan-card header p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.plan-rows {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-features {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-features li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.92rem;
}

.plan-features li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  content: "✓";
  font-size: 0.55rem;
  font-weight: 700;
}

.plan-rows li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
  font-family: var(--sans);
}

.plan-rows li span {
  color: var(--muted);
  font-size: 0.84rem;
}

.plan-rows li strong {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  white-space: nowrap;
}

.plan-rows li strong small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.plan-card .btn {
  align-self: start;
}

.plans-extra {
  max-width: 880px;
  margin: 24px auto 0;
}

.plan-extra-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--off-white);
  box-shadow: var(--soft-shadow);
}

.plan-extra-card .plan-tag {
  margin-bottom: 4px;
  display: block;
}

.plan-extra-card h3 {
  margin-bottom: 4px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.plan-extra-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.plan-extra-price {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.plan-extra-price strong {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.plan-extra-price strong small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
}

/* ===== FAQ ===== */
.faq-break {
  position: relative;
  width: 100%;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 146, 77, 0.18), transparent 22rem),
    radial-gradient(circle at 88% 82%, rgba(226, 194, 198, 0.12), transparent 22rem),
    linear-gradient(180deg, #5a3d27, #4a3220);
  color: #fff;
}

.faq-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}

.faq-copy {
  display: grid;
  gap: 18px;
}

.faq-copy h2,
.faq-copy p {
  color: #fff;
}

.faq-copy h2 em {
  color: rgba(255, 252, 246, 0.36);
}

.faq-copy p {
  color: rgba(255, 252, 246, 0.74);
}

.faq-list {
  display: grid;
  gap: 6px;
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 252, 246, 0.18);
  color: #fff;
}

.faq-list summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 500;
  color: #fff;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::marker {
  display: none;
  content: "";
}

.faq-list summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 252, 246, 0.3);
  border-radius: 50%;
  color: var(--gold);
  content: "+";
  font-size: 1.05rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-list details[open] summary::after {
  background: rgba(184, 146, 77, 0.22);
  content: "−";
}

.faq-list p {
  max-width: 760px;
  padding: 0 50px 20px 0;
  color: rgba(255, 252, 246, 0.74);
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 90px;
    right: 18px;
    left: 18px;
    display: none;
    grid-auto-rows: max-content;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 252, 246, 0.98);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a:not(.nav-cta) {
    padding: 8px 4px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero,
  .split,
  .authority-section,
  .contact-grid,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero-media {
    height: 480px;
    border-radius: 36px 36px 120px 36px;
  }

  .features-grid,
  .services-grid,
  .results-grid,
  .testimonials-grid,
  .method-grid,
  .categories-grid,
  .facial-grid,
  .spa-grid,
  .spa-experiences,
  .protocol-grid,
  .plans-grid,
  .depilation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .fisio-section,
  .mio-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .index-toggle {
    top: 88px;
    right: 16px;
    padding: 9px 14px 9px 12px;
    font-size: 0.76rem;
  }

  .index-toggle svg {
    width: 16px;
    height: 16px;
  }

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

  .injetaveis-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .split-services {
    grid-template-columns: 1fr;
  }

  .split-col + .split-col {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .tab-panel {
    grid-template-columns: 1fr;
  }

  .panel-media {
    min-height: 280px;
  }

  .panel-body {
    padding: 32px 28px;
  }

  .panel-list {
    grid-template-columns: 1fr;
  }

  .tabs-nav {
    flex-direction: row;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 28px;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    flex-shrink: 0;
  }

  .corporal-row {
    grid-template-columns: 70px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 18px 22px;
  }

  .corporal-tag {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .spa-card:nth-child(even) {
    transform: none;
  }

  .spa-card:nth-child(even):hover {
    transform: translateY(-5px);
  }

  .category-card {
    grid-template-columns: 1fr;
  }

  .category-media {
    min-height: 240px;
  }

  .method-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .method-grid {
    gap: 40px 28px;
  }

  .feature-card-wide {
    grid-column: span 2;
  }

  .portrait-frame {
    height: 460px;
  }

  .authority-section .portrait-frame {
    height: 460px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1180px);
    --narrow: min(100vw - 28px, 780px);
  }

  .site-header {
    top: 10px;
    min-height: 56px;
    padding: 6px 6px 6px 14px;
  }

  .hero {
    padding: 110px 0 64px;
    gap: 34px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-media {
    height: 420px;
    border-radius: 28px 28px 90px 28px;
  }

  .hero-tag {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .hero-tag-1 {
    top: 24px;
    left: 14px;
  }

  .hero-tag-2 {
    right: 14px;
    bottom: 80px;
  }

  .section,
  .soft-band,
  .services-section,
  .gallery-section,
  .testimonials-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .portrait-frame,
  .authority-section .portrait-frame {
    height: 360px;
    border-radius: 26px;
  }

  .portrait-frame::after,
  .authority-section .portrait-frame::after {
    width: 110px;
    height: 110px;
  }

  .features-grid,
  .experience-grid,
  .services-grid,
  .results-grid,
  .testimonials-grid,
  .method-grid,
  .categories-grid,
  .facial-grid,
  .spa-grid,
  .spa-experiences,
  .injetaveis-side,
  .injetavel-list,
  .protocol-grid,
  .plans-grid,
  .depilation-grid {
    grid-template-columns: 1fr;
  }

  .protocol-grid.grid-2 {
    grid-template-columns: 1fr;
  }

  .price-list li {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 8px 12px;
  }

  .price-cta {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .plan-extra-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .plan-extra-price {
    justify-items: start;
    text-align: left;
  }

  .index-toggle {
    top: 74px;
    right: 12px;
    padding: 8px 12px 8px 10px;
    font-size: 0.74rem;
  }

  .index-toggle span {
    display: none;
  }

  .index-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .treat-drawer-content {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 8px 4px;
  }

  .injetavel-card--featured h3 {
    font-size: 1.7rem;
  }

  .spa-experience h3 {
    font-size: 1.55rem;
  }

  .corporal-row {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 22px 4px;
    gap: 14px 18px;
  }

  .corporal-number {
    font-size: 2rem;
  }

  .corporal-content h3 {
    font-size: 1.3rem;
  }

  .split-col {
    padding: 32px 26px;
  }

  .split-col-header h3 {
    font-size: 1.55rem;
  }

  .category-body {
    padding: 28px 24px 26px;
  }

  .category-body h3 {
    font-size: 1.5rem;
  }

  .result-media {
    height: 320px;
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .experience-media {
    height: 220px;
  }

  .experience-body {
    padding: 26px 24px 28px;
  }

  .experience-body h3 {
    font-size: 1.6rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
  }

  .gallery-grid img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid img:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .cta-final {
    margin: 64px auto;
    padding: 44px 26px;
  }

  .contact-card {
    padding: 28px;
  }

  .map-card {
    min-height: 320px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 56px;
    padding: 36px 0 28px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}
