/* RESTAURAÇÃO TOTAL - DIRETOR */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
}

:root {
  --brown: rgb(114,68,43);
  --beige: rgb(208,202,188);
  --max: 1200px;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

html,
body {
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  color: rgb(56,56,56);
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  position: relative;
}

.frame,
main,
section,
header,
footer {
  max-width: 100vw;
}

img,
iframe {
  max-width: 100%;
}

.hero,
.trat-hero,
.instagram-section,
.profile-page,
.conteudos,
.contato,
.clinica,
.corpo,
.tratamentos {
  overflow-x: hidden;
}

.hero-title,
.trat-hero-title,
.instagram-title-main,
.instagram-title-sub,
.clinica-title {
  max-width: 100%;
}

/* Header & Logo */
.menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 12px 5% 10px;
  background: transparent;
}

body.sub-page .menu {
  position: relative;
  background: var(--brown);
}

.menu-logo {
  width: 300px;
  height: 76px;
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: none !important;
  transform: none;
  overflow: visible;
  line-height: 0;
}

.menu-logo img {
  display: block;
  width: 400px;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translate(-104px, 6px);
}

.menu-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  padding-top: 39px;
}

.menu-link {
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  position: relative;
}

@media (min-width: 901px) {
  .menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.72);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
  }

  .menu-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* Toggle mobile */
.mobile-menu-button,
.menu-toggle {
  display: none !important;
}

.mobile-menu-button span,
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: none !important;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #ffffff;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  top: 100%;
  left: 0;
  padding: 10px 0;
  border-radius: 4px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: var(--brown) !important;
  padding: 12px 20px;
  display: block;
  font-size: 11px;
  font-weight: 500;
}

.dropdown-content a:hover {
  background: #f5f5f5;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: grid;
  grid-auto-rows: max-content;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: #ffffff;
  padding: 92px 5% 0;
  overflow: hidden;
  background-color: #2f160d;
  background-image: url('/image/herofundo.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(114,68,43,0.34) 0%, rgba(92,52,32,0.42) 48%, rgba(47,23,13,0.56) 100%),
    linear-gradient(180deg, rgba(114,68,43,0.34) 0%, rgba(74,39,24,0.44) 100%);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: min(980px, 92vw);
  max-width: min(980px, 92vw);
  font-family: 'Italiana', serif;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.98;
  margin-bottom: 28px;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 12px 34px rgba(0,0,0,0.32);
}

.hero-title span {
  display: block;
}

.hero p {
  width: min(600px, 90vw);
  max-width: min(600px, 90vw) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
  text-shadow: 0 8px 24px rgba(0,0,0,0.38) !important;
}

.hero > .btn {
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn--light {
  background: var(--beige);
  border: 1px solid rgba(255,255,255,0.36);
  color: var(--brown) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}

.hero .btn--light:hover {
  background: #ffffff;
  color: var(--brown) !important;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 2px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn--light {
  border: 1px solid #fff;
  color: #fff !important;
}

.btn--dark {
  border: 1px solid var(--brown);
  color: var(--brown) !important;
}

.btn--brown {
  background: var(--brown);
  color: #fff !important;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Seções */
section {
  width: 100%;
  background-color: #ffffff;
  padding: 84px 5%;
}

.clinica-title {
  font-family: 'Italiana', serif;
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  line-height: 1.05;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 30px;
}

/* Clínica */
.clinica {
  display: grid;
  grid-template-columns: minmax(280px, 500px) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
  max-width: var(--max);
  margin: 0 auto;
}

.clinica-img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.1);
}

.clinica-content {
  max-width: 600px;
}

.clinica-text {
  color: #555;
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: 18px;
}

.clinica-text:last-of-type {
  margin-bottom: 32px;
}

/* Corpo Clínico Simetria */
.corpo-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
}

.corpo-grid .medico {
  flex: 1 1 0;
  min-width: 0;
}

.medico {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.medico-foto {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1/1;
  border-radius: 50% !important;
  object-fit: cover !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  margin-bottom: 12px;
}

.medico-nome {
  display: block;
  min-height: 2.7em;
  color: var(--brown);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.34;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.medico-funcao,
.medico-crm,
.medico-rqe {
  display: block;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-transform: uppercase;
}

.medico-funcao {
  margin-top: 12px;
  color: #3d302a;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.075em;
}

.medico-crm {
  margin-top: 7px;
  color: #7b675c;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.045em;
}

.medico-rqe {
  margin-top: 5px;
  color: #9a877d;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

/* Tratamentos Home */
.tratamentos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
}

.tratamentos-grid .trat-card {
  position: relative;
  aspect-ratio: 1 / 1.6;
  overflow: hidden;
  border-radius: 0 !important;
}

.trat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: 0.6s ease;
  border-radius: 0 !important;
}

.tratamentos-grid .trat-card:hover .trat-img {
  transform: scale(1.1);
}

.trat-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.2;
  font-weight: 700;
  z-index: 2;
  padding: 44px 10px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.32) 58%, transparent 100%);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-sizing: border-box;
}

/* Instagram */
.instagram-section {
  padding: 78px 5% 82px;
  text-align: center;
  background: #fff;
}

.instagram-title {
  margin: 0 auto 50px;
  max-width: 1240px;
  text-align: center;
  color: var(--brown);
}

.instagram-title-main {
  display: block;
  white-space: nowrap;
  font-family: 'Italiana', serif;
  font-size: clamp(2.4rem, 4.15vw, 4.25rem);
  line-height: 1.05;
  font-weight: 400;
  color: var(--brown);
}

.instagram-title-sub {
  display: block;
  white-space: nowrap;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b7468;
}

/* Blog */
.blog {
  background: #fff !important;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid rgba(114,68,43,0.16);
  border-radius: 6px;
  overflow: hidden;
  color: rgb(56,56,56) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(114,68,43,0.35);
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
}

.blog-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--beige);
}

.blog-headline {
  font-family: 'Italiana', serif;
  font-size: 1.7rem;
  line-height: 1.15;
  font-weight: 400;
  color: var(--brown);
  padding: 24px 24px 10px;
}

.blog-sub {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
  padding: 0 24px 28px;
}

/* Corpo clínico, páginas internas */
.profile-page {
  background: #fff;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 72px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 96px;
}

.profile-kicker {
  display: inline-block;
  color: var(--brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.profile-hero h1,
.profile-section-head h2,
.profile-cta h2 {
  font-family: 'Italiana', serif;
  color: var(--brown);
  font-weight: 400;
  line-height: 1.05;
}

.profile-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 720px;
  margin-bottom: 18px;
}

.profile-role {
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.profile-lead {
  color: #4a4a4a;
  font-size: 1.16rem;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 34px;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.profile-hero__media {
  position: relative;
  margin: 0;
}

.profile-hero__media::before {
  content: "";
  position: absolute;
  inset: 28px -24px -28px 24px;
  background: var(--beige);
  z-index: 0;
}

.profile-hero__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.16);
}

.profile-manifesto,
.profile-framework,
.profile-proof,
.profile-education,
.profile-solutions {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 78px;
  padding-bottom: 78px;
}

.profile-manifesto {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  align-items: start;
  border-top: 1px solid rgba(114,68,43,0.18);
}

.profile-manifesto p {
  color: #444;
  font-size: 1.25rem;
  line-height: 1.75;
}

.profile-section-head h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.profile-numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(114,68,43,0.16) !important;
}

.profile-number {
  background: #fff;
  padding: 34px 24px;
  min-height: 150px;
}

.profile-number strong {
  display: block;
  color: var(--brown);
  font-family: 'Italiana', serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 14px;
}

.profile-number span {
  color: #555;
  font-size: 0.86rem;
  line-height: 1.45;
}

.profile-framework__grid,
.profile-proof__grid,
.profile-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.profile-framework__grid article,
.profile-proof blockquote,
.profile-columns > div {
  border: 1px solid rgba(114,68,43,0.16);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}

.profile-framework__grid article {
  padding: 32px;
}

.profile-framework__grid article span {
  display: block;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}

.profile-framework__grid h3,
.profile-columns h3 {
  color: var(--brown);
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.profile-framework__grid p {
  color: #555;
  line-height: 1.65;
  font-size: 0.98rem;
}

.profile-proof {
  background: #f8f5f1 !important;
  max-width: none;
}

.profile-proof .profile-section-head,
.profile-proof__grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.profile-proof__grid {
  margin-top: 42px;
}

.profile-proof blockquote {
  margin: 0;
  padding: 32px;
  color: #4c4c4c;
  font-size: 1rem;
  line-height: 1.7;
}

.profile-proof blockquote::before {
  content: "\201C";
  display: block;
  color: var(--brown);
  font-family: 'Italiana', serif;
  font-size: 4rem;
  line-height: 0.7;
  margin-bottom: 14px;
}

.profile-columns {
  grid-template-columns: 1fr 1fr;
}

.profile-columns > div {
  padding: 34px;
}

.profile-columns ul {
  display: grid;
  gap: 14px;
  list-style: none;
}

.profile-columns li {
  color: #555;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}

.profile-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brown);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.profile-tags span {
  border: 1px solid rgba(114,68,43,0.24);
  color: var(--brown);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  background: #fff;
}

.profile-cta {
  background: var(--brown) !important;
  color: #fff;
  text-align: center;
}

.profile-cta .profile-kicker,
.profile-cta h2 {
  color: #fff;
}

.profile-cta h2 {
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 18px;
}

.profile-cta p {
  max-width: 680px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.84);
  line-height: 1.65;
}

/* Páginas de tratamento */
.trat-hero {
  position: relative;
  width: 100%;
  min-height: 56vh;
  padding: 92px 5% 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: var(--brown);
  background-size: cover;
  background-position: center;
}

.trat-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40,15,3,0.62);
  z-index: 1;
}

.trat-hero > * {
  position: relative;
  z-index: 2;
}

.trat-breadcrumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}

.trat-hero-title {
  font-family: 'Italiana', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  margin-bottom: 20px;
  color: #fff;
}

.trat-hero-sub {
  font-size: 1.12rem;
  max-width: 620px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
}

.trat-stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--beige);
}

.trat-stat {
  padding: 32px 44px;
  text-align: center;
  border-right: 1px solid rgba(114,68,43,0.22);
  flex: 1;
  min-width: 160px;
}

.trat-stat:last-child {
  border-right: none;
}

.trat-stat-num {
  font-family: 'Italiana', serif;
  font-size: 2.6rem;
  color: var(--brown);
  line-height: 1;
  display: block;
}

.trat-stat-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  display: block;
}

.trat-wrap {
  padding: 68px 5%;
}

.trat-wrap.beige {
  background: #fdfaf8;
}

.trat-wrap.brown-bg {
  background: var(--brown);
  color: #fff;
}

.trat-wrap.dark-bg {
  background: #1a0d05;
  color: #fff;
}

.trat-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.trat-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trat-section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 14px;
  display: block;
}

.trat-section-eyebrow.light {
  color: rgba(255,255,255,0.65);
}

.trat-side-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}

.trat-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.trat-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 22px;
  border: 1px solid rgba(114,68,43,0.13);
  box-shadow: 0 3px 14px rgba(0,0,0,0.05);
  text-align: center;
}

.trat-card.on-beige {
  background: #fff;
}

.trat-card.on-dark {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
}

.trat-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.trat-card-title {
  font-family: 'Italiana', serif;
  font-size: 1.35rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.trat-card-title.light {
  color: rgba(255,255,255,0.9);
}

.trat-card-text {
  font-size: 0.91rem;
  color: #666;
  line-height: 1.65;
}

.trat-card-text.light {
  color: rgba(255,255,255,0.72);
}

.trat-benefits-grid .trat-card {
  aspect-ratio: auto !important;
  min-height: auto !important;
  height: auto !important;
  padding: 30px 28px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 4px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.trat-benefits-grid .trat-card-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brown) !important;
  margin-bottom: 14px !important;
}

.trat-benefits-grid .trat-card-text {
  font-size: 0.94rem !important;
  line-height: 1.65 !important;
  color: #555 !important;
  max-width: 100%;
  margin: 0 auto;
}

.trat-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 44px;
}

.trat-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 28px;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--brown);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.trat-step-num {
  font-family: 'Italiana', serif;
  font-size: 2.8rem;
  color: var(--brown);
  line-height: 1;
  min-width: 48px;
  flex-shrink: 0;
}

.trat-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.trat-step p {
  font-size: 0.91rem;
  color: #666;
  line-height: 1.65;
}

.trat-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.trat-testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 26px 22px;
  border: 1px solid rgba(114,68,43,0.14);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.trat-stars {
  color: var(--brown);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.trat-testimonial-text {
  font-style: italic;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 0.93rem;
}

.trat-testimonial-author {
  font-weight: 700;
  color: var(--brown);
  font-size: 0.85rem;
}

.trat-oferta-box {
  max-width: 740px;
  margin: 0 auto;
  background: #fdfaf8;
  border: 2px solid var(--brown);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}

.trat-garantia-box {
  max-width: 700px;
  margin: 44px auto 0;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 44px 40px;
  text-align: center;
}

.trat-garantia-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
}

.trat-faq {
  max-width: 760px;
  margin: 44px auto 0;
}

.trat-faq-item {
  border-bottom: 1px solid rgba(114,68,43,0.16);
  padding: 22px 0;
}

.trat-faq-q {
  font-weight: 600;
  font-size: 0.97rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.trat-faq-q::before {
  content: "P:";
  color: var(--brown);
  font-family: 'Italiana', serif;
  font-size: 1.25rem;
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1.2;
}

.trat-faq-a {
  color: #666;
  line-height: 1.72;
  font-size: 0.93rem;
  padding-left: 26px;
}

.trat-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.trat-area-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(114,68,43,0.15);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: #444;
}

.trat-area-tag::before {
  content: "✓";
  color: var(--brown);
  font-weight: 700;
  flex-shrink: 0;
}

.trat-product-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.trat-product-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 28px 28px 32px;
  border-left: 4px solid var(--brown);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.trat-product-card h4 {
  font-family: 'Italiana', serif;
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.trat-product-card p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
}

.trat-product-card .trat-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.trat-product-card .trat-meta-tag {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brown);
  background: rgba(114,68,43,0.08);
  padding: 5px 12px;
  border-radius: 20px;
}

/* Conteúdos / Blog */
.conteudos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 20px 60px;
}

.conteudos-title {
  font-family: 'Italiana', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 46px;
  color: var(--brown);
}

.section-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #999;
  margin-bottom: 30px;
  display: block;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.conteudos-highlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: #fdfaf7;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 80px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.highlight-img {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
}

.highlight-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-content h2 {
  font-family: 'Italiana', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.conteudos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto 64px;
  max-width: var(--max);
}

.conteudos-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(114,68,43,0.16);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.conteudos-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
}

.conteudos-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--beige);
}

.conteudos-card h3,
.conteudos-headline {
  font-family: 'Italiana', serif;
  font-size: 1.5rem;
  line-height: 1.18;
  color: var(--brown);
  padding: 24px 24px 8px;
  margin: 0;
}

.conteudos-card p,
.conteudos-sub {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  padding: 0 24px 28px;
  margin: 0;
}

.conteudos-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.list-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
}

.list-thumb {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  background-size: cover;
  flex-shrink: 0;
}

.list-info h4 {
  font-family: 'Italiana', serif;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.list-info span {
  font-size: 0.8rem;
  color: #999;
}

.btn-cta {
  display: inline-block;
  background: var(--brown, #72442b);
  color: #fff;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
}

.btn-cta:hover {
  background: #5a3622;
}

/* Single post */
.post {
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  padding: 120px 32px 80px;
}

.post-back {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  margin-bottom: 28px;
  transition: opacity .25s ease;
}

.post-back:hover {
  opacity: .65;
}

.post-head {
  margin-bottom: 24px;
}

.post-date {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
  opacity: .8;
}

.post-head h1 {
  font-family: "Italiana", serif;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 14px;
}

.post-lead {
  font-size: 1rem;
  line-height: 1.55;
  color: #555;
  font-weight: 500;
}

.post-cover {
  margin: 24px -32px;
  height: 350px;
  overflow: hidden;
}

.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-body {
  font-size: 1.1rem;
  line-height: 1.75;
}

.post-body h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brown);
  margin: 34px 0 14px;
}

.post-body p {
  margin-bottom: 18px;
  color: #444;
}

/* Interatividade leve e classes seguras para o script */
.fade-reveal {
  opacity: 0;
  transition: opacity 0.58s ease;
  will-change: opacity;
}

.fade-reveal.is-visible {
  opacity: 1;
}

.menu-link.is-active {
  opacity: 1;
}

@media (min-width: 901px) {
  .menu-link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@media (max-width: 900px) {
  .menu.is-open .dropdown .dropdown-content {
    display: none !important;
  }

  .menu.is-open .dropdown.is-open .dropdown-content {
    display: block !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .home-page .clinica-img,
  .home-page .trat-card,
  .home-page .medico,
  .home-page .conteudos-card,
  .home-page .blog-card,
  .btn {
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      filter 0.28s ease,
      background 0.28s ease,
      color 0.28s ease,
      border-color 0.28s ease;
  }

  .home-page .clinica-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(0,0,0,0.14);
  }

  .home-page .tratamentos-grid .trat-card:hover {
    transform: translateY(-3px);
  }

  .home-page .medico:hover {
    transform: translateY(-4px);
  }

  .home-page .medico:hover .medico-foto {
    box-shadow: 0 12px 28px rgba(0,0,0,0.16);
    filter: saturate(1.04) contrast(1.02);
  }

  .home-page .conteudos-card:hover,
  .home-page .blog-card:hover {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-reveal {
    opacity: 1;
    transition: none;
  }

  .home-page .clinica-img,
  .home-page .trat-card,
  .home-page .medico,
  .home-page .conteudos-card,
  .home-page .blog-card,
  .btn {
    transition: none;
  }
}

/* Responsivo */
@media (max-width: 1100px) {
  .menu {
    padding: 12px 4% 10px;
    gap: 22px;
    align-items: flex-start;
  }

  .menu-logo {
    width: 260px;
    height: 72px;
    flex: 0 0 220px;
    background: none !important;
    transform: none;
    overflow: visible;
  }

  .menu-logo img {
    width: 350px;
    max-width: none;
    height: auto;
    transform: translate(-88px, 4px);
  }

  .menu-nav {
    gap: 18px;
    padding-top: 36px;
  }

  .menu-link {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 901px) {
  header.menu .mobile-menu-button,
  header.menu .mobile-menu-button *,
  header.menu .mobile-menu-button::before,
  header.menu .mobile-menu-button::after,
  header.menu .menu-toggle,
  header.menu .menu-toggle *,
  header.menu .menu-toggle::before,
  header.menu .menu-toggle::after {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  header.menu .mobile-menu-button {
    position: absolute !important;
    right: -9999px !important;
  }

  header.menu .menu-nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  section {
    padding: 64px 6%;
  }

  .menu {
    width: 100%;
    max-width: 100vw;
    position: absolute;
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible !important;
  }

  body.sub-page .menu {
    position: relative;
  }

  .menu-logo {
    width: 220px !important;
    height: auto !important;
    flex: 0 0 190px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: none !important;
    transform: none;
    overflow: visible;
    line-height: 0;
  }

  .menu-logo img {
    display: block;
    width: 310px;
    max-width: none;
    height: auto;
    transform: translateX(-76px);
  }

  .mobile-menu-button {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 2px;
    background: rgba(114,68,43,0.58);
    cursor: pointer;
    z-index: 3002;
    margin-left: auto;
    padding: 0;
  }

  .mobile-menu-button span {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 22px !important;
    height: 2px !important;
    min-width: 22px !important;
    min-height: 2px !important;
    max-width: 22px !important;
    max-height: 2px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: #ffffff !important;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu.is-open .mobile-menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu.is-open .mobile-menu-button span:nth-child(2) {
    opacity: 0 !important;
  }

  .menu.is-open .mobile-menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu-nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 5%;
    right: 5%;
    width: auto !important;
    max-width: calc(100vw - 10%);
    margin: 0 !important;
    padding: 10px 0 !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    background: rgba(114,68,43,0.98);
    border-radius: 4px;
    box-shadow: 0 18px 36px rgba(0,0,0,0.22);
    overflow: hidden;
    z-index: 3001;
  }

  .menu.is-open .menu-nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .menu-link {
    width: 100%;
    min-height: auto !important;
    padding: 14px 18px !important;
    justify-content: flex-start;
    font-size: 12px !important;
    line-height: 1.35;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    white-space: normal !important;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: static !important;
    display: none !important;
    width: 100%;
    min-width: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: rgba(255,255,255,0.98);
  }

  .menu.is-open .dropdown-content,
  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    display: block !important;
  }

  .dropdown-content a {
    display: block;
    padding: 12px 22px !important;
    font-size: 11px !important;
    line-height: 1.35;
    color: var(--brown) !important;
    border-bottom: 1px solid rgba(114,68,43,0.08);
  }

  .hero {
    min-height: 78vh;
    padding: 120px 6% 70px;
    background-position: center center;
  }

  .hero-title {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 1.02;
    width: min(720px, 92vw);
    max-width: min(720px, 92vw);
    overflow-wrap: break-word;
  }

  .hero p {
    font-size: 1.05rem !important;
    margin: 22px auto 26px !important;
  }

  .btn {
    width: auto;
    max-width: 88vw;
    padding: 16px 28px;
    font-size: 12px;
    letter-spacing: 1.5px;
    white-space: normal;
    text-align: center;
  }

  .clinica {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .clinica-img,
  .clinica-content {
    max-width: 100%;
  }

  .clinica-title {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .clinica-text {
    font-size: 1rem;
    line-height: 1.68;
  }

  .corpo-grid {
    flex-wrap: wrap;
    gap: 28px 18px;
  }

  .corpo-grid .medico {
    flex: 0 0 calc(50% - 9px);
  }

  .medico-nome {
    font-size: 0.78rem;
  }

  .medico-funcao {
    font-size: 0.72rem;
  }

  .medico-crm {
    font-size: 0.66rem;
  }

  .medico-rqe {
    font-size: 0.61rem;
  }

  .tratamentos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .instagram-section {
    padding: 62px 6% 66px !important;
  }

  .instagram-title {
    max-width: 720px;
  }

  .instagram-title-main,
  .instagram-title-sub {
    white-space: normal;
  }

  .instagram-title-main {
    font-size: clamp(2.1rem, 9vw, 3.4rem);
  }

  .instagram-title-sub {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }

  .profile-hero,
  .profile-manifesto,
  .profile-columns {
    grid-template-columns: 1fr;
  }

  .profile-hero {
    gap: 42px;
    padding-top: 64px;
  }

  .profile-numbers,
  .profile-framework__grid,
  .profile-proof__grid {
    grid-template-columns: 1fr;
  }

  .profile-hero__media::before {
    inset: 18px -12px -18px 12px;
  }

  .profile-manifesto,
  .profile-framework,
  .profile-proof,
  .profile-education,
  .profile-solutions {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .trat-hero {
    padding-top: 82px;
    padding-bottom: 62px;
  }

  .trat-hero-title {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 1.02;
    max-width: 92vw;
    overflow-wrap: break-word;
  }

  .trat-hero-sub {
    max-width: 88vw;
    font-size: 1rem;
  }

  .trat-wrap {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .trat-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trat-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trat-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .trat-stat {
    padding: 24px 20px;
  }

  .trat-areas-grid {
    grid-template-columns: 1fr;
  }

  .trat-benefits-grid .trat-card {
    padding: 26px 22px !important;
  }

  .conteudos-highlight {
    grid-template-columns: 1fr;
  }

  .highlight-img {
    height: 300px;
  }

  .conteudos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .instagram-section {
    padding: 56px 6% 60px !important;
  }

  .instagram-section iframe,
  .instagram-widget {
    height: 410px !important;
    max-height: 410px !important;
  }

  .instagram-title-main,
  .instagram-title-sub {
    white-space: normal !important;
  }
}

@media (max-width: 600px) {
  section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .menu {
    padding: 14px 5%;
  }

  .menu-logo {
    width: 210px !important;
    height: auto !important;
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: none !important;
    transform: none;
    overflow: visible;
    line-height: 0;
  }

  .menu-logo img {
    display: block;
    width: 300px;
    max-width: none;
    height: auto;
    transform: translateX(-74px);
  }

  .hero {
    min-height: 74vh;
    padding-top: 112px;
  }

  .hero-title {
    font-size: clamp(34px, 12vw, 50px);
  }

  .corpo-grid .medico {
    flex: 0 0 calc(50% - 9px);
  }

  .tratamentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tratamentos-grid .trat-card {
    aspect-ratio: 1 / 1.35;
  }

  .trat-label {
    font-size: 13px;
    padding: 38px 8px 18px;
  }

  .contato > div {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .contato [style*="padding: 50px"] {
    padding: 28px !important;
  }

  .trat-wrap {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .trat-benefits-grid {
    grid-template-columns: 1fr;
  }

  .trat-oferta-box,
  .trat-garantia-box {
    padding: 32px 20px;
  }

  .trat-step {
    flex-direction: column;
    gap: 6px;
  }

  .trat-benefits-grid .trat-card {
    padding: 24px 20px !important;
  }

  .trat-benefits-grid .trat-card-title {
    font-size: 0.92rem !important;
  }

  .trat-benefits-grid .trat-card-text {
    font-size: 0.9rem !important;
  }

  .conteudos-grid {
    grid-template-columns: 1fr;
  }

  .highlight-content {
    padding: 30px;
  }
}