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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body { height: 100%; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #26282b;
  color: #ffffff;
  overflow-x: hidden;
  max-width: 100vw;
}

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

ul, ol { list-style: none; }

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

/* ═══════════════════════════════════════════════════════════════
   TOKENS GLOBAIS
═══════════════════════════════════════════════════════════════ */
:root {
  --topbar-h:  52px;
  --header-h:  74px;
  --chrome:    calc(var(--topbar-h) + var(--header-h));

  /* Paleta cinza escuro */
  --bg-dark:   #26282b;
  --bg-dark-2: #2e3033;
  --bg-mid:    #3a3d41;

  /* Dourado */
  --gold:        #c5a880;
  --gold-solid:  rgba(197,168,128,0.92);
  --gold-fade:   rgba(197,168,128,0);
  --gold-border: rgba(197,168,128,0.55);

  /* Nude / creme */
  --nude:      #fdf9f6;
  --nude-2:    #f5efe8;

  /* Texto */
  --white:     #ffffff;
  --white-82:  rgba(255,255,255,0.82);
  --white-65:  rgba(255,255,255,0.65);
  --white-40:  rgba(255,255,255,0.40);
  --dark-txt:  #1c1c1c;
  --body-txt:  #4a4540;

  /* Vinho editorial */
  --wine:      #572235;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════════════════════ */
.topbar {
  position: relative;
  z-index: 30;
  width: 100%;
  height: var(--topbar-h);
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}

.topbar__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.topbar__text {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--dark-txt);
  letter-spacing: 0.145em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 22px;
  border: 1.5px solid var(--dark-txt);
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--dark-txt);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--ease) .22s, color var(--ease) .22s;
}

.topbar__btn:hover {
  background: var(--dark-txt);
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.header {
  position: absolute;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 52px;
  right: 52px;
  height: 1px;
  background: rgba(255,255,255,0.10);
}

.header__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Marca */
.header__brand {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: auto;
  transition: opacity var(--ease) .2s;
}

.header__brand:hover { opacity: .78; }

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
}

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

.nav__link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: var(--white-82);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  line-height: 1;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color var(--ease) .2s, border-color var(--ease) .2s;
}

.nav__link:hover {
  color: var(--white);
  border-bottom-color: var(--white-40);
}

.nav__item--active .nav__link {
  color: var(--white);
  font-weight: 600;
  border-bottom-color: var(--white-65);
}

.nav__chevron {
  width: 9px;
  height: 5px;
  flex-shrink: 0;
  position: relative;
  top: 0.5px;
  transition: transform 0.22s ease;
}

/* Busca */
.header__search {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white-82);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 24px;
  padding: 0;
  transition: color var(--ease) .2s;
}

.header__search svg {
  width: 17px;
  height: 17px;
}

.header__search:hover { color: var(--white); }

/* Hamburger (oculto desktop) */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 20px;
  padding: 0;
  flex-shrink: 0;
}

.burger__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease) .28s, opacity var(--ease) .28s;
}

.header__burger.is-open .burger__line:nth-child(1) {
  transform: translateY(6.25px) rotate(45deg);
}
.header__burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-6.25px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE NAV DRAWER
═══════════════════════════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 50;
  width: min(320px, 85vw);
  background: var(--bg-mid);
  display: flex;
  flex-direction: column;
  padding: 80px 36px 48px;
  gap: 0;
  transform: translateX(100%);
  transition: transform var(--ease) .34s;
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-nav__link {
  display: block;
  padding: 18px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--white-82);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: color var(--ease) .2s;
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  color: var(--white);
  font-weight: 600;
}

.mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  padding: 13px 0;
  border: 1.5px solid rgba(255,255,255,0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  transition: background var(--ease) .22s, border-color var(--ease) .22s;
}

.mobile-nav__cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.8);
}

/* Overlay escuro */
.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0,0,0,0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease) .34s;
}

.mobile-nav__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ═══════════════════════════════════════════════════════════════
   DROPDOWN CIRURGIAS – DESKTOP
═══════════════════════════════════════════════════════════════ */
#nav-cirurgias,
#nav-exames {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background-color: var(--bg-mid);
  border-top: 2px solid var(--gold-solid);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 100;
}

.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--gold-solid);
}

#nav-cirurgias:hover .nav__dropdown,
#nav-cirurgias:focus-within .nav__dropdown,
#nav-exames:hover .nav__dropdown,
#nav-exames:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

#nav-cirurgias:hover .nav__chevron,
#nav-cirurgias:focus-within .nav__chevron,
#nav-exames:hover .nav__chevron,
#nav-exames:focus-within .nav__chevron {
  transform: rotate(180deg);
}

.nav__dropdown-link {
  display: block;
  padding: 11px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease, background-color 0.18s ease, padding-left 0.18s ease;
}

.nav__dropdown-link:hover {
  color: #ffffff;
  background-color: rgba(255,255,255,0.06);
  padding-left: 28px;
}

.nav__dropdown li + li .nav__dropdown-link {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════════════════════
   SUBMENU CIRURGIAS – MOBILE
═══════════════════════════════════════════════════════════════ */
.mobile-nav__item--has-sub {
  list-style: none;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-nav__link--sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

.mobile-nav__link--sub-toggle:hover,
.mobile-nav__link--sub-toggle[aria-expanded="true"] {
  color: #ffffff;
}

.mobile-nav__chevron {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  transition: transform 0.24s ease;
}

.mobile-nav__link--sub-toggle[aria-expanded="true"] .mobile-nav__chevron {
  transform: rotate(180deg);
}

.mobile-nav__sub {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(0,0,0,0.15);
}

.mobile-nav__sub.is-open {
  max-height: 320px;
}

.mobile-nav__sub-link {
  display: block;
  padding: 13px 0 13px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.68);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.18s ease;
}

.mobile-nav__sub-link:hover { color: #ffffff; }

/* ═══════════════════════════════════════════════════════════════
   HERO — FULL-BLEED PREMIUM
   Foto da Dra. domina toda a área (rosto à direita)
   Logo dourada + copy estruturado flutuam sobre gradiente escuro
═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  /* altura = tela menos topbar (header é absolute, portanto não desconta) */
  height: calc(100vh - var(--topbar-h));
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Foto: fundo absoluto, rosto posicionado à direita ── */
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  z-index: 0;
}

/*
 * ── Overlay gradient ──
 * Esquerda: escuro quase sólido (área vazia da foto → texto)
 * Direita: transparente (rosto totalmente visível)
 * Leve vinheta no topo para o header sobrepor bem
 */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* Gradiente horizontal principal */
    linear-gradient(
      to right,
      rgba(30,32,35,0.98)  0%,
      rgba(30,32,35,0.92)  22%,
      rgba(30,32,35,0.80)  36%,
      rgba(30,32,35,0.48)  52%,
      rgba(30,32,35,0.14)  68%,
      transparent          82%
    );
}

/* ── Conteúdo: coluna esquerda ── */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  max-width: 600px;
  padding: calc(var(--header-h) + 48px) 0 68px 80px;
  gap: 0;
}

/* ── Logo: bloco selado dourado ── */
.hero__logo {
  margin: 0 0 32px 0;
  padding: 0;
  width: 188px;
  height: 188px;
  flex-shrink: 0;
}

/*
 * mix-blend-mode: screen → torna o fundo preto/escuro invisível,
 * mantém apenas a arte dourada em linha visível.
 * filter: brightness(1.08) → suaviza levemente o ouro sobre escuro.
 */
.hero__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.08) contrast(1.05);
}

/* ── Separador dourado fino ── */
.hero__divider {
  width: 52px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(197,168,128,0.85),
    rgba(197,168,128,0.25)
  );
  margin: 0 0 30px 0;
}

/* ── Bloco de copy ── */
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 44px;
}

/* Supra — label de especialidade: muito pequeno, espaçado, opaco */
.hero__copy-supra {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.34em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  margin: 0 0 11px 0;
  line-height: 1;
}

/* Body — copy principal: mistura bold+regular como na referência */
.hero__copy-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.68);
  text-transform: uppercase;
  line-height: 2.1;
  margin: 0;
}

/* Palavras de destaque: branco puro, bold 700 */
.hero__copy-body strong {
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.16em;
}

/* ── CTA: botão outline dourado ── */
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 34px;
  border: 1px solid var(--gold-border);
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--gold-solid);
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.hero__cta:hover {
  background: rgba(197,168,128,0.10);
  border-color: rgba(197,168,128,0.88);
  color: #ffffff;
}

/* ── Linha dourada base (rodapé hero) ── */
.hero__gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent           0%,
    rgba(197,168,128,0)   8%,
    rgba(197,168,128,0.6) 28%,
    rgba(197,168,128,0.9) 50%,
    rgba(197,168,128,0.6) 72%,
    rgba(197,168,128,0)   92%,
    transparent           100%
  );
  z-index: 3;
}

/* ── Detalhe: linha vertical dourada à esquerda do conteúdo ── */
.hero__content::before {
  content: '';
  position: absolute;
  left: 56px;
  top: calc(var(--header-h) + 60px);
  bottom: 80px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(197,168,128,0.35) 20%,
    rgba(197,168,128,0.35) 80%,
    transparent
  );
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO: QUANDO PROCURAR UM OTORRINO?
   — redesign premium: fundo escuro, headline serif grande
═══════════════════════════════════════════════════════════════ */
.otorrino {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
}

/* ── Cabeçalho da seção ── */
.otorrino__header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.otorrino__eyebrow {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
}

.otorrino__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.25;
  margin: 0 0 48px 0;
  font-feature-settings: "liga" 1, "kern" 1;
  font-optical-sizing: auto;
}

.otorrino__title em {
  font-style: italic;
  color: var(--gold);
}

/* ── Separador ── */
.otorrino__sep {
  width: 44px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 0 0 0 0;
  align-self: center;
}

/* ── Corpo: 3 colunas ── */
.otorrino__body {
  padding: 0 0 88px;
}

.otorrino__grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: start;
}

/* Divisor vertical entre colunas */
.otorrino__col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 44px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.otorrino__col:first-child {
  padding-left: 0;
}

.otorrino__col:last-child {
  border-right: none;
  padding-right: 0;
}

/* Cabeçalho da coluna */
.otorrino__col-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.otorrino__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.otorrino__icon--open {
  width: 42px;
  height: 42px;
}

/* Ícones SVG inline (legado) — currentColor herdado */
.otorrino__icon,
.otorrino__icon--open {
  color: rgba(197,168,128,0.72);
}

/*
 * Ícones com fundo transparente e traço dourado.
 * Sem filtros nem blend mode — renderização direta.
 */
.otorrino__icon-img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  background: transparent;
}

.otorrino__col-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1;
  margin: 0;
  font-feature-settings: "liga" 1;
}

/* Lista */
.otorrino__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.otorrino__list li {
  position: relative;
  padding: 9px 0 9px 18px;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.02em;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.045);
}

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

.otorrino__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 4px;
  height: 4px;
  background-color: rgba(197,168,128,0.55);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO: FRASE EDITORIAL (entre otorrino e sobre)
═══════════════════════════════════════════════════════════════ */
.home-editorial {
  width: 100%;
  background-color: var(--nude);
  padding: 100px 0;
  border-top: 1px solid #ece7e1;
  border-bottom: 1px solid #ece7e1;
}

.home-editorial__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-editorial__titulo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--wine);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-feature-settings: "liga" 1, "kern" 1;
  font-optical-sizing: auto;
}

.home-editorial__corpo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-editorial__texto {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--body-txt);
  line-height: 1.78;
  letter-spacing: 0.01em;
}

.home-editorial__detalhe {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(87,34,53,0.55);
  text-transform: uppercase;
}

.home-editorial__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--wine);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(87,34,53,0.3);
  padding-bottom: 3px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.home-editorial__link:hover {
  color: #3d1826;
  border-color: rgba(87,34,53,0.7);
}

.home-editorial__link svg {
  display: inline-block;
  transition: transform 0.2s ease;
}

.home-editorial__link:hover svg {
  transform: translateX(4px);
}

/* ── Botão primário (usado na home) ── */
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 36px;
  background-color: #572235;
  border: 1.5px solid #572235;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  -webkit-font-smoothing: antialiased;
}

.btn--primary:hover {
  background-color: #3d1826;
  border-color: #3d1826;
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO: DÚVIDAS FREQUENTES — homepage
═══════════════════════════════════════════════════════════════ */
.home-faq {
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #e8e2db;
}

.home-faq__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 80px 104px;
}

/* ── Cabeçalho ── */
.home-faq__header {
  text-align: center;
  margin-bottom: 64px;
}

.home-faq__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.home-faq__titulo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  color: #2c2c2c;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 24px 0;
  font-feature-settings: "liga" 1, "kern" 1;
  font-optical-sizing: auto;
}

.home-faq__titulo em {
  font-style: italic;
  color: var(--wine);
}

.home-faq__sep {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.65;
}

/* ── Lista de perguntas ── */
.home-faq__lista {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e8e2db;
}

/* ── Item (details nativo) ── */
.home-faq__item {
  border-bottom: 1px solid #e8e2db;
}

.home-faq__item[open] .home-faq__icone svg {
  transform: rotate(180deg);
}

/* ── Pergunta (summary) ── */
.home-faq__pergunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #2c2c2c;
  line-height: 1.55;
  letter-spacing: 0.01em;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

/* Remove marcador padrão do details/summary */
.home-faq__pergunta::-webkit-details-marker { display: none; }
.home-faq__pergunta::marker { display: none; }

.home-faq__item[open] .home-faq__pergunta {
  color: var(--wine);
}

.home-faq__item:not([open]) .home-faq__pergunta:hover {
  color: #1c1c1c;
}

/* ── Ícone chevron ── */
.home-faq__icone {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: color 0.2s ease;
}

.home-faq__icone svg {
  width: 16px;
  height: 16px;
  transition: transform 0.28s ease;
}

.home-faq__item[open] .home-faq__icone {
  color: var(--wine);
}

/* ── Resposta ── */
.home-faq__resposta {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #4a4540;
  line-height: 1.82;
  letter-spacing: 0.01em;
  padding: 0 28px 28px 0;
  max-width: 780px;
}

/* ── CTA abaixo das perguntas ── */
.home-faq__cta {
  display: flex;
  justify-content: center;
  padding-top: 56px;
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  .home-faq__inner { padding: 72px 48px 80px; }
  .home-faq__titulo { font-size: 36px; }
  .home-faq__pergunta { font-size: 13px; }
}

@media (max-width: 720px) {
  .home-faq__inner { padding: 56px 28px 64px; }
  .home-faq__header { margin-bottom: 48px; }
  .home-faq__titulo { font-size: 32px; }
  .home-faq__pergunta {
    font-size: 12.5px;
    padding: 20px 0;
    gap: 14px;
  }
  .home-faq__resposta {
    font-size: 13px;
    padding-bottom: 22px;
  }
}

@media (max-width: 430px) {
  .home-faq__inner { padding: 48px 20px 56px; }
  .home-faq__titulo { font-size: 28px; }
  .home-faq__pergunta { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   SEÇÃO: SOBRE MIM — layout editorial refinado
═══════════════════════════════════════════════════════════════ */
.sobre {
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #e8e2db;
}

.sobre__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 80px 104px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
}

/* ── Coluna foto ── */
.sobre__col-foto {
  flex: 0 0 38%;
  max-width: 38%;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Detalhe decorativo: linha dourada lateral */
.sobre__col-foto::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(197,168,128,0.4) 20%,
    rgba(197,168,128,0.4) 80%,
    transparent
  );
}

.sobre__foto {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.sobre__legenda {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #aaa49e;
  letter-spacing: 0.06em;
  line-height: 1.65;
  text-transform: uppercase;
  margin: 16px 0 0 0;
}

/* ── Coluna texto ── */
.sobre__col-texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.sobre__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sobre__titulo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 46px;
  font-weight: 400;
  color: #2c2c2c;
  letter-spacing: -0.005em;
  line-height: 1.12;
  margin: 0 0 36px 0;
  font-feature-settings: "liga" 1, "kern" 1;
  font-optical-sizing: auto;
}

.sobre__titulo em {
  font-style: italic;
  color: var(--wine);
}

.sobre__sep {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 28px 0;
  opacity: 0.7;
}

.sobre__p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #4a4540;
  line-height: 1.82;
  letter-spacing: 0.01em;
  margin: 0 0 18px 0;
}

.sobre__p:last-of-type {
  margin-bottom: 0;
}

.sobre__p strong {
  font-weight: 600;
  color: #2c2c2c;
}

.sobre__crm {
  margin-top: 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #aaa49e;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   RODAPÉ — paleta escura premium
═══════════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  width: 100%;
  background-color: #1e2023;
  border-top: 1px solid rgba(197,168,128,0.18);
  padding: 0;
  overflow: hidden;
}

/* Faixa superior: endereço e contato */
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 80px 48px;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__brand-logo {
  width: 80px;
  height: 80px;
  opacity: 0.88;
}

.footer__brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.05);
}

.footer__brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.08em;
}

.footer__brand-especialidade {
  font-size: 9px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}

.footer__contact-cta {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.footer__contact-cta em {
  color: var(--gold);
  font-style: italic;
}

.footer__contact-info {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.footer__contact-tel {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.footer__contact-a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 26px;
  border: 1px solid var(--gold-border);
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold-solid);
  text-transform: uppercase;
  margin-top: 14px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer__contact-a:hover {
  background: rgba(197,168,128,0.1);
  border-color: var(--gold-solid);
  color: #ffffff;
}

/* Faixa inferior: sociais + crédito */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 80px;
  gap: 24px;
}

.footer__sociais {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer__social-link:hover {
  opacity: 1;
  transform: scale(1.08);
}

.footer__social-link svg {
  width: 36px;
  height: 36px;
}

.footer__copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}

/* Acento dourado decorativo: linha superior do footer */
.footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent           0%,
    rgba(197,168,128,0)   10%,
    rgba(197,168,128,0.5) 30%,
    rgba(197,168,128,0.8) 50%,
    rgba(197,168,128,0.5) 70%,
    rgba(197,168,128,0)   90%,
    transparent           100%
  );
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO – TABLET LARGO (≤ 1140px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1140px) {

  .topbar__inner,
  .header__inner {
    padding: 0 40px;
  }

  .header::after {
    left: 40px;
    right: 40px;
  }

  .nav__list { gap: 20px; }

  .nav__link {
    font-size: 9.5px;
    letter-spacing: 0.10em;
  }

  .hero__content {
    padding-left: 60px;
    width: 54%;
  }

  .hero__content::before {
    left: 36px;
  }

  .hero__logo { width: 168px; height: 168px; }

  .otorrino__header,
  .otorrino__grid,
  .home-editorial__inner,
  .sobre__inner,
  .footer__top,
  .footer__bottom {
    padding-left: 52px;
    padding-right: 52px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO – TABLET (≤ 900px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  :root {
    --topbar-h: 48px;
    --header-h: 66px;
  }

  .nav__list { gap: 14px; }
  .nav__link  { font-size: 9px; letter-spacing: 0.08em; }

  /* Ocultar "dúvidas frequentes" no tablet */
  .nav__item:nth-child(5) { display: none; }

  .hero__content {
    padding-left: 40px;
    width: 60%;
    padding-top: calc(var(--header-h) + 28px);
  }

  .hero__content::before { left: 20px; }

  .hero__logo { width: 152px; height: 152px; margin-bottom: 24px; }
  .hero__copy-body { font-size: 10.5px; line-height: 2.0; }

  .otorrino__header { padding: 64px 40px 0; }
  .otorrino__grid { padding: 0 40px; }
  .otorrino__title { font-size: 30px; }
  .otorrino__col { padding: 36px 28px; }

  .home-editorial__inner {
    padding: 0 40px;
    gap: 52px;
  }

  .home-editorial__titulo { font-size: 42px; }

  .sobre__inner {
    padding: 72px 48px 80px;
    gap: 56px;
  }

  .sobre__col-foto { flex: 0 0 38%; max-width: 38%; }
  .sobre__titulo { font-size: 38px; }

  .footer__top { padding: 48px 40px 40px; }
  .footer__bottom { padding: 20px 40px; }
  .footer__contact-cta { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO – MOBILE (≤ 720px)  →  hamburger
═══════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {

  :root {
    --topbar-h: auto;
    --header-h: 0px;
  }

  /* ── Topbar mobile: linha única compacta ── */
  .topbar {
    height: auto;
    min-height: 40px;
    padding: 7px 16px;
  }

  .topbar__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    padding: 0;
  }

  .topbar__text {
    font-size: 8.5px;
    letter-spacing: 0.07em;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .topbar__btn {
    font-size: 8.5px;
    height: 26px;
    padding: 0 14px;
    flex-shrink: 0;
  }

  /* ── Header mobile: estático, escuro, hamburger visível ── */
  .header {
    position: static;
    height: auto;
    padding: 14px 0 12px;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .header::after { display: none; }

  .header__inner {
    padding: 0 20px;
    flex-wrap: nowrap;
  }

  .header__nav,
  .header__search { display: none; }

  .header__burger { display: flex; }
  .header__brand  { font-size: 9px; letter-spacing: 0.12em; }

  /* ── Hero mobile: foto full-bleed, conteúdo na base ── */
  .hero {
    min-height: 100svh;
    height: auto;
  }

  .hero__photo {
    object-position: 70% center;
    object-fit: cover;
  }

  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(24,26,29,0.00)  0%,
      rgba(24,26,29,0.00)  35%,
      rgba(24,26,29,0.45)  58%,
      rgba(24,26,29,0.85)  76%,
      rgba(24,26,29,0.97)  90%,
      rgba(24,26,29,1.00)  100%
    ) !important;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 24px 52px;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }

  .hero__content::before { display: none; }

  .hero__logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    margin-bottom: 0;
    z-index: 10;
  }

  .hero__logo-img {
    mix-blend-mode: normal;
    filter: brightness(1.1) contrast(1.05);
  }

  .hero__divider { margin: 0 auto 22px; }

  .hero__copy { margin-bottom: 28px; }

  .hero__copy-supra { font-size: 7px;   letter-spacing: 0.24em; }
  .hero__copy-body  { font-size: 9.5px; line-height: 1.95; }

  .hero__cta {
    align-self: center;
    width: 100%;
    max-width: 280px;
  }

  /* ── Seção otorrino mobile ── */
  .otorrino__header { padding: 52px 20px 0; }
  .otorrino__title  { font-size: 24px; margin-bottom: 36px; }
  .otorrino__body   { padding-bottom: 56px; }
  .otorrino__grid   {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .otorrino__col {
    padding: 32px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .otorrino__col:first-child { padding-left: 0; }
  .otorrino__col:last-child  { border-bottom: none; padding-right: 0; }

  /* ── Editorial mobile ── */
  .home-editorial { padding: 64px 0; }
  .home-editorial__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  .home-editorial__titulo { font-size: 34px; line-height: 1.15; }
  .home-editorial__texto  { font-size: 13.5px; }

  /* ── Sobre mobile ── */
  .sobre__inner {
    flex-direction: column;
    padding: 52px 24px 60px;
    gap: 36px;
  }

  .sobre__col-foto {
    flex: none;
    max-width: 100%;
    width: 72%;
    margin: 0 auto;
  }

  .sobre__col-foto::before { display: none; }

  .sobre__col-texto { padding-top: 0; }
  .sobre__titulo    { font-size: 34px; margin-bottom: 20px; }
  .sobre__p         { font-size: 13px; line-height: 1.75; }

  /* ── Footer mobile ── */
  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px 36px;
    gap: 32px;
  }

  .footer__contact {
    align-items: center;
    width: 100%;
  }

  .footer__contact-cta  { font-size: 22px; }
  .footer__contact-info { text-align: center; font-size: 10.5px; line-height: 1.7; }
  .footer__contact-a    { width: 100%; max-width: 280px; justify-content: center; }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    padding: 20px 24px;
    gap: 14px;
  }

  .footer__copy { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO – MOBILE PEQUENO (≤ 430px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 430px) {

  .topbar__inner { gap: 6px 10px; }
  .topbar__text  { font-size: 8px; }

  .header__brand { font-size: 8.5px; letter-spacing: 0.10em; }

  .hero__content  { padding: 0 18px 44px; }
  .hero__logo     { width: 130px; height: 130px; margin-bottom: 0; }
  .hero__copy-body { font-size: 9px; line-height: 1.90; }
  .hero__cta      { font-size: 8px; max-width: 100%; }

  .otorrino__title { font-size: 22px; }
  .home-editorial__titulo { font-size: 30px; }

  .sobre__col-foto { width: 84%; }
  .sobre__titulo   { font-size: 30px; }

  .footer__top    { padding: 40px 18px 32px; }
  .footer__bottom { padding: 18px 18px; }
  .footer__contact-cta { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO – MOBILE MÍNIMO (≤ 360px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {

  .header__brand  { font-size: 8px; letter-spacing: 0.08em; }

  .hero__logo     { width: 120px; height: 120px; }
  .hero__copy-body { font-size: 8.5px; }

  .otorrino__title { font-size: 20px; }
  .home-editorial__titulo { font-size: 27px; }
  .sobre__titulo  { font-size: 27px; }
}
