:root {
  /* --- Core Palette --- */
  --cream: #F4F8E6;
  --champagne: #DEC0BE;
  --gold: #C8A34B;
  --gold-hover: #D4B35E;
  --bg-escuro: #090C14;
  --bg-section: #0D1220;
  
  /* --- Panel & Surface --- */
  --bg-panel: #101726;
  --bg-panel-strong: #141d2d;
  --surface-1: rgba(16, 23, 38, 0.82);
  --surface-2: rgba(18, 27, 42, 0.9);
  --line-soft: rgba(244, 248, 230, 0.08);
  --line-gold: rgba(200, 163, 75, 0.22);
  --text-soft: rgba(244, 248, 230, 0.72);
  --text-muted: rgba(244, 248, 230, 0.54);
  --text-subtle: rgba(244, 248, 230, 0.34);
  
  /* --- Shadows & Radius --- */
  --shadow-soft: 0 18px 50px rgba(4, 7, 14, 0.26);
  --shadow-panel: 0 28px 90px rgba(4, 7, 14, 0.45);
  --shadow-gold: 0 20px 60px rgba(200, 163, 75, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  
  /* --- Spacing --- */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* --- Layout & Type Scale --- */
  --container: 1240px;
  --nav-height: 84px;
  --text-xs: 0.6875rem;
  --text-sm: 0.8125rem;
  --text-base: 0.975rem;
  --text-lg: 1.125rem;
  --text-xl: 1.3rem;
  --text-2xl: 1.7rem;
  --text-3xl: 2.2rem;
  --text-4xl: 3rem;
  --text-5xl: 3.95rem;
  --text-6xl: 5.5rem;

  /* --- Motion & Easing --- */
  --duration-sm: 200ms;
  --duration-md: 400ms;
  --duration-lg: 700ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-mono: 'DM Mono', monospace;

  /* --- Antigravity Design Tokens --- */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 16px;
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --depth-shadow-1: 0 4px 12px rgba(0, 0, 0, 0.1);
  --depth-shadow-2: 0 12px 24px rgba(0, 0, 0, 0.2);
  --depth-shadow-3: 0 20px 40px rgba(0, 0, 0, 0.3);
  
  --isometric-perspective: 1200px;
  --isometric-rotate-x: 12deg;
  --isometric-rotate-y: -12deg;
}

/* --- Antigravity Utilities --- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  pointer-events: none;
}

.isometric-tilt {
  transform: perspective(var(--isometric-perspective)) rotateX(var(--isometric-rotate-x)) rotateY(var(--isometric-rotate-y));
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.isometric-tilt:hover {
  transform: perspective(var(--isometric-perspective)) rotateX(0deg) rotateY(0deg) scale(1.02);
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.depth-1 { box-shadow: var(--depth-shadow-1); }
.depth-2 { box-shadow: var(--depth-shadow-2); }
.depth-3 { box-shadow: var(--depth-shadow-3); }

body {
  background:
    radial-gradient(circle at top left, rgba(46, 95, 204, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(200, 163, 75, 0.08), transparent 30%),
    linear-gradient(180deg, #070a12 0%, #090c14 18%, #0b1018 100%);
  cursor: auto !important;
}

a,
button {
  cursor: pointer !important;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

p {
  color: var(--text-soft);
}

.tag {
  gap: var(--space-sm);
  letter-spacing: 0.18em;
}

.tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.logo-mark {
  width: 168px;
  opacity: 0.84;
}

.btn {
  min-height: 52px;
  padding: 0.95rem 1.75rem;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
}

.btn-primary {
  background: linear-gradient(135deg, #d3b466 0%, var(--gold) 48%, #b58b34 100%);
  color: #07101d;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(200, 163, 75, 0.24);
}

.btn-secondary,
.btn-outline-gold,
.btn-saiba-mais,
.navbar-cta {
  border: 1px solid var(--line-gold);
  background: rgba(14, 20, 32, 0.45);
  color: var(--cream);
}

.btn-secondary:hover,
.btn-outline-gold:hover,
.btn-saiba-mais:hover,
.navbar-cta:hover {
  border-color: rgba(200, 163, 75, 0.7);
  background: rgba(200, 163, 75, 0.1);
  color: var(--gold);
}

.btn-whatsapp,
.btn-wpp-procedure {
  background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
  color: #fff;
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover,
.btn-wpp-procedure:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(37, 211, 102, 0.24);
}

.magnetic {
  position: relative;
  overflow: hidden;
}

.btn-glow {
  position: absolute;
  top: 0; left: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.btn-primary .btn-glow {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
}

.navbar {
  height: var(--nav-height);
  transition:
    transform var(--duration-md) var(--ease-out),
    background var(--duration-md) ease,
    border-color var(--duration-md) ease,
    box-shadow var(--duration-md) ease;
  border-bottom: 1px solid transparent;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  height: 100%;
}

.navbar.scrolled {
  background: rgba(7, 10, 18, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(200, 163, 75, 0.14);
  box-shadow: 0 14px 40px rgba(3, 6, 12, 0.16);
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.03em;
}

.navbar-nav a {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(244, 248, 230, 0.72);
}

.navbar-nav a.active {
  color: var(--gold);
}

.navbar-cta {
  min-height: 44px;
  padding: 0.75rem 1.1rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  border-radius: var(--radius-pill);
}

.hero-bg img {
  object-position: center 18%;
  filter: saturate(0.9) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5, 8, 14, 0.22) 0%, rgba(5, 8, 14, 0.45) 35%, rgba(5, 8, 14, 0.72) 75%, var(--bg-escuro) 100%),
    linear-gradient(90deg, rgba(5, 8, 14, 0.3) 0%, transparent 50%, rgba(5, 8, 14, 0.3) 100%);
  z-index: 1;
}

.curtain {
  position: fixed;
  inset: 0;
  background: rgba(9, 12, 20, 0.72); /* Translucent so it never blocks 100% */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  pointer-events: none; /* Already non-blocking */
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out), transform 0.6s var(--ease-out);
  /* Fast removal: start immediately */
  animation: curtain-reveal 0.6s var(--ease-out) forwards;
  animation-delay: 0.1s;
  will-change: transform, opacity;
}

@keyframes curtain-reveal {
  0% { transform: translateY(0); opacity: 1; pointer-events: all; }
  100% { transform: translateY(-100%); opacity: 0; visibility: hidden; pointer-events: none; }
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
  padding-top: calc(var(--nav-height) + var(--space-xl));
}

.hero-seal {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-xl);
  opacity: 0.92;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, var(--text-6xl));
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  justify-content: center;
  margin-bottom: var(--space-md);
}

.hero-lead {
  max-width: 690px;
  margin: 0 auto var(--space-2xl);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: rgba(244, 248, 230, 0.82);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.hero-badge {
  min-height: 40px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(244, 248, 230, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(10, 16, 28, 0.34);
  backdrop-filter: blur(10px);
  color: rgba(244, 248, 230, 0.74);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  max-width: 860px;
  margin: 0 auto;
}

.hero-proof-item {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(244, 248, 230, 0.08);
  border-radius: var(--radius-md);
  background: rgba(10, 16, 28, 0.42);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.hero-proof-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.hero-proof-item p {
  color: rgba(244, 248, 230, 0.82);
  font-size: var(--text-sm);
}

.section::before {
  background: linear-gradient(90deg, transparent, rgba(200, 163, 75, 0.14), transparent);
}

.section-header {
  max-width: 760px;
}

.section-header h2 {
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
}

.section-header--specialties {
  margin-bottom: var(--space-3xl);
}

.section-header--testimonials {
  width: min(100%, 44rem);
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.section-header--testimonials h2,
.section-header--testimonials p,
.section-header--testimonials .tag {
  margin-left: auto;
  margin-right: auto;
}

.authority-grid,
.specialties-grid,
.results-grid,
.proc-benefits,
.contact-grid,
.blog-grid,
.cardapio-grid {
  display: grid;
  gap: var(--space-xl);
  perspective: 2000px; /* Enable perspective for children */
}

.specialties-grid {
  align-items: stretch;
}

.results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 1.5rem;
}

.blog-grid,
.cardapio-grid,
.proc-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.authority-item,
.specialty-card,
.benefit-item,
.contact-info-card,
.blog-card,
.procedure-card,
.testimonials-slider,
.about-text,
.editorial-content,
.cta-final-content {
  border: 1px solid rgba(244, 248, 230, 0.08);
  box-shadow: var(--shadow-soft);
}

.authority-item {
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  background: rgba(10, 16, 28, 0.35);
}

.authority-number {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.specialty-card {
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(200, 163, 75, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(18, 27, 42, 0.92), rgba(12, 18, 30, 0.98));
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: none;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.8s ease;
}

.specialty-card:hover,
.benefit-item:hover,
.contact-info-card:hover,
.blog-card:hover,
.procedure-card:hover,
.result-item:hover {
  transform: perspective(var(--isometric-perspective)) rotateX(0deg) rotateY(0deg) translateY(-10px) scale(1.02);
  border-color: rgba(200, 163, 75, 0.4);
  box-shadow: var(--shadow-panel), 0 30px 60px rgba(0,0,0,0.5);
}

.specialty-icon,
.procedure-icon {
  border-radius: 14px;
  background: rgba(200, 163, 75, 0.07);
  border: 1px solid rgba(200, 163, 75, 0.16);
}

.specialty-card p,
.benefit-item p,
.procedure-description,
.blog-content p,
.contact-info-card p {
  color: var(--text-muted);
}

.specialty-card .specialty-cta {
  margin-top: auto;
}

.testimonials-slider,
.testimonials-nav,
.testimonials-dots {
  width: min(100%, 44rem);
  margin-left: auto;
  margin-right: auto;
}

.testimonials-slider {
  max-width: none;
}

.more-procedures {
  margin-top: var(--space-3xl);
}

.filter-tab,
.filter-btn {
  min-height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(12, 18, 30, 0.65);
}

.filter-tab:hover,
.filter-tab.active,
.filter-btn:hover,
.filter-btn.active {
  border-color: rgba(200, 163, 75, 0.55);
  background: rgba(200, 163, 75, 0.08);
}

.results-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 auto 2.2rem;
}

.result-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(200, 163, 75, 0.05), transparent 16%),
    linear-gradient(180deg, rgba(14, 22, 36, 0.96), rgba(10, 16, 28, 0.98));
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  transform: perspective(var(--isometric-perspective)) rotateX(5deg) rotateY(5deg);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.8s ease;
}

.page-hero {
  min-height: 56vh;
  align-items: flex-end;
}

.page-hero-bg img {
  object-position: center 24%;
  filter: saturate(0.92) contrast(1.03);
}

.page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.22) 0%, rgba(8, 12, 20, 0.62) 45%, rgba(8, 12, 20, 0.9) 78%, var(--bg-escuro) 100%),
    linear-gradient(90deg, rgba(7, 10, 18, 0.5) 0%, rgba(7, 10, 18, 0.08) 50%, rgba(7, 10, 18, 0.46) 100%);
}

.page-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-5xl) var(--space-md) var(--space-3xl);
}

.page-hero-content .tag {
  justify-content: center;
  margin-bottom: var(--space-md);
}

.page-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.page-hero-content p {
  max-width: 720px;
  margin: 0 auto;
  font-size: var(--text-lg);
  color: rgba(244, 248, 230, 0.84);
}

.stack-center {
  text-align: center;
}

.section-header--tight {
  margin-bottom: var(--space-2xl);
}

.focus-center { object-position: center; }
.focus-20 { object-position: center 20%; }
.focus-25 { object-position: center 25%; }
.focus-30 { object-position: center 30%; }
.focus-60 { object-position: center 60%; }

.about-layout,
.editorial-shell {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-3xl);
  align-items: start;
}

.about-layout > :only-child,
.editorial-shell > :only-child {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 980px;
  justify-self: center;
}

.about-image {
  align-self: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
  box-shadow: var(--shadow-panel);
}

.about-image img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.94) contrast(1.02);
}

.about-image::after {
  background: linear-gradient(180deg, transparent, rgba(7, 10, 18, 0.86));
}

.editorial-aside {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.editorial-aside-card {
  overflow: hidden;
  border: 1px solid rgba(244, 248, 230, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(200, 163, 75, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(18, 27, 42, 0.96), rgba(11, 16, 28, 0.98));
  box-shadow: var(--shadow-soft);
}

.editorial-aside-card--sticky {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.editorial-aside-media {
  aspect-ratio: 4 / 4.8;
}

.editorial-aside-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.96) contrast(1.03);
}

.editorial-aside-body {
  padding: 1.25rem 1.2rem 1.3rem;
}

.editorial-aside-body .tag {
  margin-bottom: 0.85rem;
}

.editorial-aside-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--champagne);
}

.editorial-aside-copy {
  margin-bottom: 1rem;
  font-size: 0.94rem;
  line-height: 1.72;
  color: rgba(244, 248, 230, 0.72);
}

.editorial-specs {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.15rem;
}

.editorial-specs li {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(244, 248, 230, 0.08);
}

.editorial-specs li:first-child {
  padding-top: 0;
  border-top: 0;
}

.editorial-specs span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(214, 185, 112, 0.74);
}

.editorial-specs strong {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(244, 248, 230, 0.86);
  font-weight: 400;
}

.about-text,
.editorial-content {
  padding: clamp(1.5rem, 3vw, 2.7rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(200, 163, 75, 0.04), transparent 18%),
    linear-gradient(180deg, rgba(18, 27, 42, 0.96), rgba(11, 16, 28, 0.98));
}

.about-text h2,
.editorial-content h2 {
  max-width: 13ch;
  margin-bottom: var(--space-xl);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.about-text > p,
.editorial-content > p {
  max-width: 66ch;
  margin-bottom: var(--space-xl);
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(244, 248, 230, 0.82);
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-xl);
}

.credential-badge {
  padding: 0.72rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(200, 163, 75, 0.18);
  background: rgba(9, 14, 24, 0.56);
  color: rgba(214, 185, 112, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.quote {
  max-width: 24ch;
  margin-top: var(--space-2xl);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(245, 225, 180, 0.96);
}

.editorial-note,
.detail-block {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(200, 163, 75, 0.12);
}

.detail-list {
  display: grid;
  gap: 0.85rem;
  margin-top: var(--space-md);
}

.detail-list li {
  position: relative;
  padding-left: 1.75rem;
  color: rgba(244, 248, 230, 0.76);
}

.detail-list li::before {
  content: \"•\";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.4;
}

.proc-benefits {
  margin-top: var(--space-2xl);
  align-items: stretch;
}

.benefit-item {
  position: relative;
  min-height: 100%;
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(200, 163, 75, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(17, 25, 39, 0.96), rgba(11, 16, 28, 0.98));
}

.benefit-item::before {
  content: \"\";
  display: block;
  width: 36px;
  height: 1px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.benefit-item h4 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--champagne);
}

.result-media,
.blog-image {
  position: relative;
  overflow: hidden;
}

.results-grid,
.blog-grid,
.proc-benefits,
.contact-grid,
.cardapio-grid {
  columns: unset;
}

.result-media {
  aspect-ratio: 4 / 5;
  border-bottom: 1px solid rgba(244, 248, 230, 0.08);
}

.blog-image {
  aspect-ratio: 4 / 3;
}

.result-media img,
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-lg) var(--ease-out);
}

.result-item:hover .result-media img,
.blog-card:hover .blog-image img {
  transform: scale(1.03);
}

.result-media::after,
.blog-image::after {
  content: \"\";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(7, 10, 18, 0.82));
}

.result-tag {
  position: absolute;
  left: var(--space-md);
  top: var(--space-md);
  z-index: 2;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(8, 12, 20, 0.7);
  border: 1px solid rgba(244, 248, 230, 0.12);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 248, 230, 0.76);
  backdrop-filter: blur(8px);
}

.result-footer {
  margin-top: auto;
  padding: 0.95rem 1rem 1.05rem;
}

.result-footer span {
  color: rgba(244, 248, 230, 0.7);
}

.result-footer a {
  margin-left: auto;
}

.footer-bottom--center {
  justify-content: center;
  text-align: center;
  border-top: none;
  padding-top: var(--space-lg);
}

.result-footer {
  gap: 1rem;
}

.contact-info-card--accent {
  background:
    linear-gradient(180deg, rgba(200, 163, 75, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(17, 25, 39, 0.96), rgba(11, 16, 28, 0.98));
}

.contact-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.cardapio-copy {
  max-width: 520px;
  margin: 0 auto var(--space-2xl);
  color: rgba(244, 248, 230, 0.6);
}

.cta-final-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 680px;
  padding: clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(10, 16, 28, 0.42);
  backdrop-filter: blur(10px);
}

.cta-final-content h2,
.cta-final-content > p {
  margin: 0;
}

.cta-final-content > p {
  max-width: 52ch;
}

.cta-final-content .btn-whatsapp {
  margin-top: 0.3rem;
}

.cta-inline {
  margin-top: var(--space-3xl);
  text-align: center;
}

.mobile-nav-action {
  margin-top: 1rem;
}

.cursor {
  display: none !important;
}

.cursor.expanded {
  display: none !important;
}

.cta-response-info {
  max-width: none;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: rgba(244, 248, 230, 0.58);
}

.whatsapp-float {
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.28);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(37, 211, 102, 0.32);
}

@media (max-width: 1024px) {
  :root {
    --text-6xl: 4.2rem;
    --text-5xl: 3.35rem;
    --text-4xl: 2.55rem;
  }

  .hero-proof,
  .authority-grid,
  .proc-benefits,
  .footer-grid,
  .specialties-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .editorial-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    min-height: 48vh;
  }

  .page-hero-content {
    padding: var(--space-4xl) var(--space-md) var(--space-2xl);
  }

  .page-hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
  }

  .page-hero-content p {
    max-width: 38rem;
    font-size: 1rem;
  }

  .about-image img {
    aspect-ratio: 5 / 4;
  }

  .about-layout > :only-child,
  .editorial-shell > :only-child {
    max-width: none;
  }

  .editorial-aside-card--sticky {
    position: static;
  }

  .about-text,
  .editorial-content,
  .cta-final-content {
    padding: 2rem 1.6rem;
  }

  .about-text h2,
  .editorial-content h2 {
    max-width: 14ch;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
  }

  .about-text > p,
  .editorial-content > p {
    max-width: 60ch;
    font-size: 1rem;
    line-height: 1.8;
  }

  .proc-benefits {
    gap: 1rem;
  }

  .benefit-item {
    padding: 1.2rem 1.15rem 1.25rem;
  }

  .benefit-item h4 {
    font-size: 1.18rem;
  }

  .quote {
    max-width: 28ch;
    font-size: clamp(1.55rem, 2.8vw, 2rem);
  }

  .about-credentials {
    gap: 0.6rem;
  }

  .credential-badge {
    padding: 0.65rem 0.8rem;
    font-size: 0.62rem;
  }
}

@media (max-width: 768px) {
  :root {
    --text-6xl: 3rem;
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.65rem;
    --nav-height: 70px;
  }

  .hero-content {
    padding-top: calc(var(--nav-height) + var(--space-xl));
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .page-hero {
    min-height: 42vh;
  }

  .page-hero-content {
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  }

  .page-hero-content h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .page-hero-content p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof,
  .authority-grid,
  .specialties-grid,
  .results-grid,
  .blog-grid,
  .proc-benefits,
  .contact-grid,
  .footer-grid,
  .cardapio-grid {
    grid-template-columns: 1fr;
  }

  .about-ctas,
  .procedure-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .editorial-aside-body {
    padding: 1rem 0.95rem 1.05rem;
  }

  .editorial-aside-title {
    font-size: 1.08rem;
  }

  .editorial-aside-copy,
  .editorial-specs strong {
    font-size: 0.92rem;
  }

  .about-text,
  .editorial-content,
  .cta-final-content {
    padding: 1.45rem 1.15rem;
    border-radius: 22px;
  }

  .about-text h2,
  .editorial-content h2 {
    max-width: none;
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    line-height: 1.04;
  }

  .about-text > p,
  .editorial-content > p {
    font-size: 0.97rem;
    line-height: 1.78;
    margin-bottom: 1rem;
  }

  .detail-block,
  .editorial-note {
    margin-top: 1.4rem;
    padding-top: 1rem;
  }

  .detail-list {
    gap: 0.7rem;
  }

  .detail-list li {
    padding-left: 1.45rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .benefit-item {
    padding: 1.05rem 1rem 1.1rem;
  }

  .benefit-item::before {
    width: 28px;
    margin-bottom: 0.8rem;
  }

  .benefit-item h4 {
    font-size: 1.08rem;
    margin-bottom: 0.55rem;
  }

  .benefit-item p {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .quote {
    max-width: none;
    padding-left: 1rem;
    font-size: clamp(1.35rem, 7vw, 1.75rem);
    line-height: 1.55;
  }

  .about-credentials {
    gap: 0.5rem;
  }

  .credential-badge {
    padding: 0.58rem 0.72rem;
    border-radius: 10px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .results-filters {
    gap: 0.55rem;
  }

  .filter-btn {
    min-height: 38px;
    padding-inline: 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .result-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.95rem 1rem 1.1rem;
  }

  .result-footer span {
    font-size: 0.82rem;
  }

  .result-footer a {
    font-size: 0.64rem;
    line-height: 1.5;
  }

  .result-tag {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.48rem 0.68rem;
    font-size: 0.56rem;
  }

  .cta-final h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    line-height: 1.06;
  }

  .cta-final p,
  .cta-response-info {
    font-size: 0.9rem;
  }

  .btn,
  .btn-whatsapp,
  .btn-secondary,
  .btn-outline-gold {
    width: 100%;
  }
}


/* Pente fino - correcoes de estabilidade visual e funcional */
.cardapio-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 163, 75, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(8, 13, 24, 0.98), rgba(9, 12, 20, 1));
  overflow: hidden;
}

.cardapio-hero .container {
  position: relative;
  z-index: 1;
}

.cardapio-hero h1 {
  max-width: 12ch;
  margin: 0 0 var(--space-md);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--cream);
}

.cardapio-hero p {
  max-width: 760px;
  color: rgba(244, 248, 230, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: 0 0 var(--space-2xl);
}

.filter-tab {
  appearance: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 248, 230, 0.62);
  padding: 0.72rem 1rem;
  border: 1px solid rgba(244, 248, 230, 0.12);
}

.filter-tab:focus-visible,
.filter-btn:focus-visible,
.testimonial-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.filter-tab.active,
.filter-tab:hover {
  color: var(--gold);
}

.procedure-card.hidden {
  display: none !important;
}

.procedure-card {
  min-width: 0;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(200, 163, 75, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(18, 27, 42, 0.94), rgba(9, 14, 24, 0.98));
}

.procedure-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-height: 72px;
}

.procedure-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.procedure-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.procedure-header-text {
  min-width: 0;
}

.procedure-category {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(214, 185, 112, 0.82);
}

.procedure-card h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--cream);
}

.procedure-card-body {
  display: grid;
  gap: var(--space-md);
}

.procedure-description {
  margin: 0;
  line-height: 1.72;
}

.procedure-details {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.procedure-details li {
  position: relative;
  padding-left: 1rem;
  color: rgba(244, 248, 230, 0.84);
  line-height: 1.5;
}

.procedure-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.procedure-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: auto;
}

.btn-wpp-procedure,
.btn-saiba-mais {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-wpp-procedure svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1024px) {
  .navbar-logo {
    white-space: nowrap;
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .navbar-cta {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 var(--space-md);
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + var(--space-xl)) 0 calc(var(--space-3xl) + 72px);
  }

  .hero-content {
    width: 100%;
    padding: 0 var(--space-md);
  }

  .hero-seal .logo-mark {
    max-width: min(52vw, 190px);
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 12vw, 3.1rem);
    line-height: 1.03;
    letter-spacing: 0;
    overflow-wrap: normal;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 0.68rem;
    line-height: 1.7;
    letter-spacing: 0.12em;
  }

  .hero-lead {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 360px;
  }

  .hero-badges {
    flex-direction: row;
    align-items: center;
  }

  .cardapio-hero {
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  }

  .cardapio-hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .filter-tabs,
  .results-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    -webkit-overflow-scrolling: touch;
  }

  .filter-tab,
  .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .procedure-card {
    padding: var(--space-lg);
  }

  .procedure-card-header {
    align-items: flex-start;
  }

  .procedure-card-footer {
    flex-direction: column;
  }

  .btn-wpp-procedure,
  .btn-saiba-mais {
    width: 100%;
  }
}


/* Pente fino - segunda passada mobile: impedir corte lateral */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .hero-line {
    overflow: visible;
    white-space: normal;
  }

  .hero-content h1 {
    max-width: 11ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.05rem, 9.4vw, 2.55rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero-subtitle {
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-wrap: balance;
  }

  .hero-lead {
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
    text-wrap: pretty;
  }

  .cardapio-hero p,
  .procedure-description,
  .procedure-details li {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .cardapio-grid,
  .procedure-card,
  .procedure-card-body,
  .procedure-header-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .procedure-card {
    overflow: hidden;
  }

  .filter-tabs,
  .results-filters {
    max-width: 100%;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar,
  .results-filters::-webkit-scrollbar {
    display: none;
  }
}


/* Pente fino - terceira passada mobile: sem rolagem lateral em cards/filtros */
@media (max-width: 768px) {
  .filter-tabs,
  .results-filters {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: flex-start;
  }

  .filter-tab,
  .filter-btn {
    flex: 0 1 auto;
    max-width: 100%;
  }

  .procedure-card {
    box-sizing: border-box;
    max-width: calc(100vw - (2 * var(--space-md)));
  }

  .cardapio-hero .container,
  .cardapio-grid {
    overflow: hidden;
  }

  .procedure-description,
  .procedure-details,
  .procedure-details li,
  .procedure-card p {
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
  }
}


/* Pente fino - quarta passada mobile: largura de leitura controlada */
@media (max-width: 768px) {
  .cardapio-hero p {
    width: 100%;
    max-width: 31ch;
  }

  .filter-tabs,
  .results-filters {
    width: 100%;
    max-width: 34ch;
  }

  .filter-tab,
  .filter-btn {
    font-size: 0.64rem;
    padding: 0.68rem 0.85rem;
    letter-spacing: 0.08em;
  }

  .procedure-description,
  .procedure-details {
    max-width: 31ch;
  }

  .procedure-card h3 {
    max-width: 11ch;
  }
}
