/* ================================================================
   OMI LANDING — page styles
   ================================================================ */

body { overflow-x: hidden; }

/* Density modes */
body[data-density="cozy"]      { --pad-section: 88px; --pad-edge: 24px; }
body[data-density="comfortable"]{ --pad-section: 120px; --pad-edge: 32px; }
body[data-density="spacious"]  { --pad-section: 160px; --pad-edge: 48px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  transition: all 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244, 242, 238, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 12px 32px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo img {
  height: 48px;
  width: auto;
  transition: height 0.3s;
  display: block;
}
.nav.scrolled .nav-logo img { height: 38px; }
.nav-links { display: flex; gap: 28px; font-size: 13px; font-weight: 500; align-items: center; }
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.nav-link-num {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: var(--wine);
  opacity: 0.7;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--wine);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 12px 22px;
  background: var(--navy);
  color: var(--bone);
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  transition: all 0.25s var(--ease-out);
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta svg { width: 14px; height: 14px; transition: transform 0.3s; }
.nav-cta:hover { background: var(--wine); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(104, 9, 7, 0.3); }
.nav-cta:hover svg { transform: translateX(4px); }

@media (max-width: 1100px) { .nav-links { gap: 18px; } }
@media (max-width: 968px) {
  .nav { padding: 14px 18px; }
  .nav.scrolled { padding: 10px 18px; }
  .nav-links { display: none; }
  .nav-logo img { height: 40px; }
  .nav.scrolled .nav-logo img { height: 34px; }
  .nav-cta { padding: 9px 16px; font-size: 12px; }
}

/* ============ TICKER ============ */
.ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 49;
  padding-top: 78px; /* sit below nav, render only on scroll */
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.ticker.visible { opacity: 1; }
.ticker .marquee {
  background: var(--navy);
  color: var(--bone);
  padding: 8px 0;
  border-top: 1px solid rgba(217, 219, 224, 0.12);
  border-bottom: 1px solid rgba(217, 219, 224, 0.12);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.marquee-track > span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-dot { color: var(--wine); }
body[data-marquee="off"] .ticker { display: none; }

/* ============ Section indices ============ */
.section-index {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.section-index-num { color: var(--wine); font-weight: 500; }
.section-index-line { width: 36px; height: 1px; background: var(--wine); }
.section-index-label { color: var(--muted); }
.section-index.light .section-index-label,
.section-index.dark .section-index-label { color: var(--silver); }
.section-index.center { justify-content: center; }
.section-index.center .section-index-line { width: 60px; }

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  position: relative;
  padding: 130px var(--pad-edge) 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  overflow: hidden;
}
.hero-bg-mark {
  position: absolute;
  bottom: -12vw;
  left: -8vw;
  width: 60vw;
  height: 60vw;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-overline {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  padding: 6px 14px 6px 8px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: rgba(244, 242, 238, 0.4);
}
.hero-overline-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 4px rgba(104, 9, 7, 0.15);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(104, 9, 7, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(104, 9, 7, 0.04); }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 8.4vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  color: var(--navy);
  font-weight: 400;
  text-wrap: pretty;
}
.hero h1 .accent { font-style: italic; color: var(--wine); font-weight: 300; }
.hero h1 .block { display: block; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.hero-tag-rule { width: 40px; height: 1px; background: var(--wine); }
.hero-tag-text {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  color: var(--wine);
}

.hero p.lead {
  font-size: 19px; line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-meta {
  display: flex; align-items: center;
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  max-width: 540px;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 6px; }
.hero-meta-rule { width: 1px; height: 32px; background: var(--border); }
.hero-meta-num {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-meta-num em { color: var(--wine); font-style: italic; font-weight: 300; }
.hero-meta-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* hero visual */
.hero-visual { position: relative; height: 80vh; min-height: 560px; }

.hero-spine {
  position: absolute;
  top: 0; bottom: 0;
  right: -8px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  z-index: 4;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero-spine span { line-height: 1; }
.hero-spine .hero-spine-dot { color: var(--wine); font-size: 14px; }

.hero-img-main {
  position: absolute; top: 0; right: 24px;
  width: calc(100% - 24px - 60px);
  height: 100%;
  overflow: hidden;
  border-radius: 280px 4px 4px 4px;
  background: var(--navy);
}
.hero-img-detail {
  position: absolute; bottom: 6%; left: 0;
  width: 46%; height: 38%;
  overflow: hidden;
  border-radius: 4px 4px 4px 110px;
  background: var(--navy);
  border: 8px solid var(--bone);
  z-index: 2;
}
.hero-img-caption {
  position: absolute;
  bottom: -16px; left: 47%;
  z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: var(--bone);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-img-caption-num { color: var(--wine); font-weight: 500; }
.hero-img-caption-text { color: var(--muted); }

.seal {
  position: absolute; top: 4%; left: -7%;
  width: 156px; height: 156px;
  z-index: 3;
  background: var(--bone);
  border-radius: 50%;
  padding: 14px;
  box-shadow: var(--shadow-card);
  animation: rotate 28s linear infinite;
  display: flex; align-items: center; justify-content: center;
}
.seal img { width: 100%; height: 100%; }
@keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }

@media (max-width: 968px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 100px 18px 100px; min-height: auto; }
  .hero-visual { height: 64vh; min-height: 440px; order: -1; }
  .hero-spine { display: none; }
  .hero-meta { gap: 16px; flex-wrap: wrap; }
  .hero-meta-rule { display: none; }
  .hero-meta-num { font-size: 32px; }
  .hero h1 { font-size: clamp(44px, 12vw, 64px); }
  .seal { width: 110px; height: 110px; top: 4%; }
  .hero-img-main { right: 0; width: 100%; border-radius: 160px 4px 4px 4px; }
  .hero-img-detail { border-radius: 4px 4px 4px 72px; border-width: 6px; }
  .hero-img-caption { left: 48%; font-size: 9px; padding: 6px 10px; }
}

/* ============ Generic sections ============ */
.section { padding: var(--pad-section) var(--pad-edge); position: relative; }
.section-header {
  max-width: var(--maxw); margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: end;
}
.section h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.032em;
  color: var(--navy);
  font-weight: 400;
  text-wrap: balance;
}
.section h2 .accent { font-style: italic; color: var(--wine); font-weight: 300; }
.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 560px;
  text-wrap: pretty;
}
@media (max-width: 880px) {
  .section-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
}

/* ============ SOBRE ============ */
.sobre { background: var(--bone); }
.sobre-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: center;
}
.sobre-imgs { position: relative; height: 640px; }
.sobre-img-1 {
  position: absolute; top: 0; left: 0;
  width: 70%; height: 80%;
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy);
}
.sobre-img-2 {
  position: absolute; bottom: 0; right: 0;
  width: 54%; height: 58%;
  border-radius: 4px 4px 4px 110px;
  overflow: hidden;
  background: var(--navy);
  border: 10px solid var(--bone);
}
.sobre-quote {
  position: absolute; bottom: 7%; left: 4%;
  background: var(--navy);
  color: var(--bone);
  padding: 24px 26px 22px;
  border-radius: 4px 4px 4px 40px;
  max-width: 280px;
  z-index: 3;
  border-left: 3px solid var(--wine);
}
.sobre-quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 60px;
  line-height: 0;
  color: var(--wine);
  position: relative;
  top: 18px;
  margin-bottom: 4px;
}
.sobre-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 14px;
}
.sobre-quote p em { color: var(--wine); font-style: normal; font-family: var(--sans); font-weight: 600; font-size: 0.8em; }
.sobre-quote-attr {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}

.sobre-text h2 { margin-bottom: 32px; }
.sobre-text p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
  text-wrap: pretty;
}
.sobre-text p.lede {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 300;
  margin-bottom: 28px;
}
.sobre-text p strong { color: var(--navy); font-weight: 600; }
.sobre-hashtag {
  display: inline-block; margin-top: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 42px;
  color: var(--wine);
  font-weight: 300;
  border-bottom: 1px solid rgba(104, 9, 7, 0.25);
  padding-bottom: 4px;
}
@media (max-width: 968px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-imgs { height: 480px; }
}

/* ============ SERVIÇOS ============ */
.servicos { background: var(--navy); color: var(--bone); position: relative; overflow: hidden; }
.servicos::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(104, 9, 7, 0.20), transparent 60%);
  pointer-events: none;
}
.servicos::after {
  content: 'SERVIÇOS';
  position: absolute;
  bottom: 2vw; right: -2vw;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22vw;
  color: rgba(217, 219, 224, 0.025);
  letter-spacing: -0.05em;
  line-height: 0.85;
  pointer-events: none;
}
.servicos > * { position: relative; z-index: 1; }
.servicos .section-sub { color: rgba(244, 242, 238, 0.75); }
.servicos h2 { color: var(--bone); }
.servicos h2 .accent { color: var(--wine); }

.servicos-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(217, 219, 224, 0.12);
  border: 1px solid rgba(217, 219, 224, 0.12);
  border-radius: 4px;
  overflow: hidden;
}
.servico-card {
  background: var(--navy);
  padding: 36px 30px 30px;
  display: flex; flex-direction: column;
  gap: 10px;
  transition: background 0.3s var(--ease-out);
  cursor: pointer;
  color: var(--bone);
  position: relative;
}
.servico-card:hover { background: var(--navy-soft); }
.servico-card-num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(217, 219, 224, 0.4);
}
.servico-name { font-family: var(--serif); font-size: 28px; line-height: 1.05; font-weight: 400; }
.servico-name em { color: var(--wine); font-style: italic; font-weight: 300; }
.servico-desc { font-size: 13px; color: rgba(217, 219, 224, 0.7); line-height: 1.55; }
.servico-meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 8px;
}
.servico-meta span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid rgba(244, 242, 238, 0.25);
  border-radius: var(--r-pill);
  color: rgba(244, 242, 238, 0.85);
}
.servico-price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(217, 219, 224, 0.15);
  display: flex; align-items: baseline; gap: 8px;
}
.servico-price-num { font-family: var(--serif); font-size: 32px; line-height: 1; font-weight: 400; letter-spacing: -0.01em; }
.servico-price-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(217, 219, 224, 0.55);
}

.servico-card.featured {
  grid-column: span 2;
  background: var(--wine);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  min-height: 320px;
}
.servico-card.featured:hover { background: var(--wine-light); }
.servico-card.featured::after {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
}
.servico-card.featured .servico-card-num { color: rgba(244, 242, 238, 0.5); font-size: 16px; }
.servico-card.featured .servico-desc { color: rgba(244, 242, 238, 0.88); font-size: 15px; max-width: 480px; }
.servico-card.featured .servico-name { font-size: 48px; }
.servico-card.featured .servico-name em { color: var(--silver); }
.servico-badge {
  display: inline-block; align-self: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid rgba(244, 242, 238, 0.4);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 4px;
}

@media (max-width: 880px) {
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .servico-card.featured { grid-column: span 2; padding: 32px 24px; min-height: auto; }
  .servico-card.featured .servico-name { font-size: 36px; }
  .servico-card { padding: 26px 22px; }
  .servico-name { font-size: 22px; }
}

/* ============ RITUAL ============ */
.ritual { background: var(--bone); overflow: hidden; position: relative; }
.ritual::before {
  content: 'RITUAL';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 36vw;
  color: var(--navy);
  opacity: 0.025;
  pointer-events: none;
  letter-spacing: -0.05em;
  white-space: nowrap;
  font-weight: 300;
}
.ritual > * { position: relative; z-index: 2; }
.ritual-list { max-width: var(--maxw); margin: 0 auto; }
.ritual-item {
  display: grid;
  grid-template-columns: 100px 1.4fr 1.6fr 80px 30px;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: center;
  transition: padding-left 0.45s var(--ease-out), background 0.3s;
  cursor: pointer;
  position: relative;
}
.ritual-item:last-child { border-bottom: 1px solid var(--border); }
.ritual-item:hover { padding-left: 28px; }
.ritual-item:hover .ritual-name { color: var(--wine); }
.ritual-item:hover .ritual-name em { color: var(--navy); }
.ritual-item:hover .ritual-arrow { transform: translateX(10px); color: var(--wine); }
.ritual-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.ritual-num span { color: var(--muted); font-weight: 400; }
.ritual-name {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
  color: var(--navy);
  transition: color 0.3s;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.ritual-name em { color: var(--wine); font-style: italic; font-weight: 300; transition: color 0.3s; }
.ritual-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.55; max-width: 380px; }
.ritual-time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.ritual-arrow {
  font-size: 26px; text-align: right;
  transition: transform 0.4s ease, color 0.3s;
  color: var(--muted);
  font-family: var(--serif);
}
@media (max-width: 880px) {
  .ritual-item { grid-template-columns: 60px 1fr 24px; gap: 14px; padding: 24px 0; }
  .ritual-desc, .ritual-time { display: none; }
}

/* ============ EQUIPE ============ */
.equipe { background: var(--bone-deep); }
.equipe-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.barbeiro {
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
  cursor: pointer;
}
.barbeiro:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-strong);
}
.barbeiro-img {
  aspect-ratio: 4 / 4.4;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.barbeiro-info {
  padding: 26px 26px 30px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.barbeiro-role {
  display: inline-block; align-self: flex-start;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  padding: 4px 10px;
  border: 1px solid rgba(104, 9, 7, 0.3);
  border-radius: 999px;
  background: rgba(104, 9, 7, 0.04);
}
.barbeiro-name {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.barbeiro-name em { color: var(--wine); font-style: italic; font-weight: 300; }
.barbeiro-bio {
  font-size: 13.5px; line-height: 1.55;
  color: var(--ink-soft);
}
.barbeiro-ficha {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-strong);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.barbeiro-ficha > div { display: flex; flex-direction: column; gap: 4px; }
.barbeiro-ficha dt {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.barbeiro-ficha dd {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 968px) {
  .equipe-grid { grid-template-columns: 1fr; gap: 20px; }
  .barbeiro-img { aspect-ratio: 4 / 3.5; }
}

/* ============ NOIVO ============ */
.noivo { background: var(--bone); position: relative; overflow: hidden; }
.noivo-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 88px;
  align-items: center;
}
.noivo-img {
  position: relative;
  height: 640px;
  border-radius: 4px 4px 4px 220px;
  overflow: hidden;
  background: var(--navy);
}
.noivo-img-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--wine);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  z-index: 2;
}
.noivo-img-corner {
  position: absolute;
  bottom: 24px; right: 24px;
  z-index: 2;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 4px;
  color: var(--bone);
  text-align: right;
}
.noivo-img-corner span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}
.noivo-img-corner strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 54px;
  line-height: 0.9;
}
.noivo-content h2 { margin-bottom: 24px; }
.noivo-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--wine);
  margin-bottom: 28px;
  line-height: 1.3;
  font-weight: 300;
}
.noivo-content p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 24px; }
.noivo-includes {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.noivo-includes li {
  font-size: 14px;
  color: var(--navy);
  display: flex; align-items: baseline; gap: 12px;
  font-weight: 500;
}
.noivo-includes li span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine);
  font-weight: 300;
  font-size: 13px;
  min-width: 22px;
}
.noivo-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--wine);
  font-weight: 300;
  line-height: 1.3;
}
.noivo-cta { margin-top: 32px; }

@media (max-width: 968px) {
  .noivo-grid { grid-template-columns: 1fr; gap: 40px; }
  .noivo-img { height: 420px; border-radius: 4px 4px 4px 130px; }
  .noivo-includes { grid-template-columns: 1fr; gap: 10px; }
}

/* ============ AGENDAMENTO CTA ============ */
.agendamento-cta {
  background: var(--navy);
  color: var(--bone);
  padding: var(--pad-section) var(--pad-edge);
  position: relative; overflow: hidden;
}
.agendamento-cta::before {
  content: '';
  position: absolute; bottom: -30%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(104, 9, 7, 0.22), transparent 60%);
  pointer-events: none;
}
.agendamento-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.agendamento-content h2 { color: var(--bone); margin-bottom: 28px; }
.agendamento-content h2 .accent { color: var(--wine); }
.agendamento-h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.8vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.032em;
  margin-top: 16px;
  font-weight: 400;
}
.agendamento-content p {
  font-size: 17px; line-height: 1.65;
  color: rgba(244, 242, 238, 0.78);
  margin-bottom: 28px;
  max-width: 520px;
}
.agendamento-steps { margin: 28px 0 36px; max-width: 540px; }
.agendamento-steps li {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(217, 219, 224, 0.15);
}
.agendamento-steps li:last-child { border-bottom: 1px solid rgba(217, 219, 224, 0.15); }
.agendamento-step-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--wine);
  letter-spacing: 0.14em;
  min-width: 32px;
  padding-top: 3px;
  font-weight: 500;
}
.agendamento-step-text { font-size: 15px; color: rgba(244, 242, 238, 0.92); line-height: 1.55; }
.agendamento-step-text strong { color: var(--bone); font-weight: 600; }

/* PWA preview — fake screen */
.pwa-preview {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 20px;
  perspective: 1400px;
}
.pwa-frame {
  width: 320px; height: 660px;
  background: var(--navy-deep);
  border: 10px solid #050811;
  border-radius: 44px;
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(217, 219, 224, 0.05);
  position: relative; overflow: hidden;
  transform: rotateY(-8deg) rotateX(2deg);
  transition: transform 0.7s var(--ease-out);
}
.pwa-frame:hover { transform: rotateY(-3deg) rotateX(0deg); }
.pwa-notch {
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 24px;
  background: #050811;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
/* PWA mockup — espelha o app real (agendar.omibarberclub.com.br) no tema light:
   bone bg + navy fg + wine accent. Mantém Fraunces (serif) + Inter Tight + Mono.
   Step 1 do booking: header com chevron de voltar, eyebrow "AGENDAR · 01/04",
   título "Escolha o serviço", lista de cards no formato list-row real. */
.pwa-screen {
  width: 100%; height: 100%;
  background: var(--bone);
  padding: 46px 16px 18px;
  display: flex; flex-direction: column;
  gap: 12px;
  color: var(--navy);
  font-size: 12px;
}
.pwa-screen-top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--navy);
  font-weight: 600;
  padding: 0 4px;
}
.pwa-status { letter-spacing: 0.1em; }

/* Header real do PWA: chevron de voltar + (eyebrow / título) */
.pwa-headbar {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 2px 2px;
}
.pwa-back-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 24, 60, 0.10);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.pwa-back-btn svg { width: 14px; height: 14px; }
.pwa-headbar-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pwa-eyebrow {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 24, 60, 0.55);
  font-weight: 500;
}
.pwa-screen-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Lista de serviços — espelha .list-row do PWA cliente */
.pwa-list { display: flex; flex-direction: column; gap: 8px; }
.pwa-list-row {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 24, 60, 0.10);
  border-radius: 12px;
  background: #fff;
  transition: background 0.2s var(--ease-out);
}
.pwa-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0, 24, 60, 0.06);
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pwa-avatar svg { width: 16px; height: 16px; opacity: 0.55; }
.pwa-list-body { flex: 1; min-width: 0; }
.pwa-list-title {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 2px;
}
.pwa-list-meta {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  color: rgba(0, 24, 60, 0.55);
  text-transform: uppercase;
}
.pwa-list-price {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  flex-shrink: 0;
  margin-left: 4px;
}

.pwa-caption {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: rgba(217, 219, 224, 0.6);
}
.pwa-caption span:first-child { color: var(--wine); }

@media (max-width: 968px) {
  .agendamento-cta { padding: 80px 18px; }
  .agendamento-grid { grid-template-columns: 1fr; gap: 64px; }
  .pwa-frame { width: 280px; height: 580px; }
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--bone);
  padding: 120px 32px;
  text-align: center;
  position: relative; overflow: hidden;
}
.testimonial::before {
  content: '★';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 38vw;
  color: var(--wine);
  opacity: 0.025;
  pointer-events: none;
  line-height: 1;
}
.testimonial-content { max-width: 960px; margin: 0 auto; position: relative; }
.testimonial-stars {
  display: flex; justify-content: center; gap: 10px;
  margin-bottom: 28px;
  font-size: 22px;
}
.testimonial-stars span { color: var(--wine); }
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 60px);
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-wrap: balance;
  position: relative;
}
.testimonial-mark {
  font-style: italic;
  color: var(--wine);
  font-weight: 300;
  margin-right: 8px;
}
.testimonial-quote em { color: var(--wine); font-style: italic; font-weight: 300; }
.testimonial-rule {
  width: 64px; height: 1px;
  background: var(--wine);
  margin: 0 auto 16px;
}
.testimonial-attr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 768px) { .testimonial { padding: 72px 18px; } }

/* ============ CTA FINAL ============ */
.cta-final {
  background: var(--bone);
  padding: 140px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-final-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 28vw;
  color: var(--navy);
  opacity: 0.04;
  pointer-events: none;
  letter-spacing: -0.04em;
  white-space: nowrap;
  font-weight: 300;
  line-height: 1;
}
.cta-final-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.96;
  margin: 20px 0 32px;
  letter-spacing: -0.034em;
  color: var(--navy);
  font-weight: 400;
}
.cta-final h2 em { color: var(--wine); font-style: italic; font-weight: 300; }
.cta-final p { font-size: 18px; color: var(--ink-soft); margin-bottom: 44px; line-height: 1.6; }
.cta-final-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) { .cta-final { padding: 88px 18px; } }

/* ============ LOCALIZAÇÃO + FOOTER ============ */
.localizacao-block { background: var(--navy); color: var(--bone); padding: 100px 32px 40px; }
.localizacao-grid {
  max-width: var(--maxw);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.localizacao-info h3 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  margin: 16px 0 32px;
  letter-spacing: -0.024em;
  font-weight: 400;
}
.localizacao-info h3 em { color: var(--wine); font-style: italic; font-weight: 300; }
.localizacao-info-block { margin-bottom: 28px; }
.localizacao-info-block h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}
.localizacao-info-block p { font-size: 15px; line-height: 1.6; color: rgba(244, 242, 238, 0.92); }
.localizacao-info-block p em { font-style: normal; color: var(--bone); font-weight: 500; }
.localizacao-info-block p .muted { color: rgba(217, 219, 224, 0.85); }
.localizacao-info-block a { color: var(--silver); transition: color 0.2s; border-bottom: 1px solid rgba(217, 219, 224, 0.2); }
.localizacao-info-block a:hover { color: var(--bone); border-bottom-color: var(--wine); }

/* Map — abstract, custom rendered (no iframe) */
.mapa-wrapper {
  border-radius: var(--r-sm);
  overflow: hidden;
  height: 480px;
  border: 1px solid rgba(217, 219, 224, 0.18);
  position: relative;
  background: var(--navy-deep);
}
.mapa-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(104, 9, 7, 0.12), transparent 50%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.mapa-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(217, 219, 224, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 219, 224, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
}
.mapa-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.mapa-pin-dot {
  width: 14px; height: 14px;
  background: var(--wine);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(244, 242, 238, 0.95), 0 0 24px rgba(104, 9, 7, 0.6);
  position: relative;
  z-index: 2;
}
.mapa-pin-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid var(--wine);
  transform: translate(-50%, -50%);
  animation: pin-pulse 2.4s ease-out infinite;
}
@keyframes pin-pulse {
  0% { width: 14px; height: 14px; opacity: 1; }
  100% { width: 120px; height: 120px; opacity: 0; }
}
.mapa-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 50px));
  text-align: center;
}
.mapa-label-co {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(217, 219, 224, 0.6);
  margin-bottom: 12px;
}
.mapa-label-place {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.mapa-label-place span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 400;
}
.mapa-link {
  position: absolute;
  bottom: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--bone);
  padding: 10px 14px;
  background: rgba(244, 242, 238, 0.08);
  border: 1px solid rgba(217, 219, 224, 0.2);
  border-radius: var(--r-sm);
  backdrop-filter: blur(8px);
  transition: all 0.25s var(--ease-out);
}
.mapa-link:hover { background: var(--wine); border-color: var(--wine); transform: translateY(-1px); }

.footer-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid rgba(217, 219, 224, 0.15);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(217, 219, 224, 0.55);
  flex-wrap: wrap;
  gap: 16px;
}
.social { display: flex; gap: 14px; }
.social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(217, 219, 224, 0.2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--silver);
  transition: all 0.25s var(--ease-out);
}
.social a:hover { background: var(--wine); border-color: var(--wine); color: var(--bone); transform: translateY(-2px); }
.social svg { width: 16px; height: 16px; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; }
.footer-status::before {
  content: ''; width: 8px; height: 8px;
  border-radius: 50%; background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

@media (max-width: 968px) {
  .localizacao-block { padding: 72px 18px 24px; }
  .localizacao-grid { grid-template-columns: 1fr; gap: 40px; }
  .mapa-wrapper { height: 360px; }
  .footer-bar { flex-direction: column; gap: 18px; text-align: center; }
}

/* ============ MOBILE STICKY ============ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 60;
  gap: 8px;
}
.mobile-cta a {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(0, 24, 60, 0.25);
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.mobile-cta .m-agendar { background: var(--navy); color: var(--bone); flex: 1.5; }
.mobile-cta .m-wa { background: var(--wine); color: var(--bone); }
.mobile-cta svg { width: 14px; height: 14px; }
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  .localizacao-block { padding-bottom: 90px; }
}

/* ============ Font swap variants (Tweaks) ============ */
body[data-fontpair="fraunces-inter"] {
  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "Inter Tight", "Helvetica Neue", system-ui, sans-serif;
}
body[data-fontpair="playfair-helvetica"] {
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans:  "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body[data-fontpair="dmserif-grotesk"] {
  --serif: "DM Serif Display", "Times New Roman", serif;
  --sans:  "Space Grotesk", system-ui, sans-serif;
}

/* ===== Ajustes landing dinâmica ===== */
/* Cards de serviço uniformes: altura mínima + preço sempre ao fundo */
.servico-card { min-height: 190px; }
.servico-card .servico-price { margin-top: auto; }
@media (max-width: 768px) {
  .servico-card { min-height: 158px; padding: 24px 20px; }
  .servico-name { font-size: 21px; }
}
/* Equipe: barra de rolagem lateral persistente (não some após o 1º movimento) */
.equipe-grid { scrollbar-width: thin; scrollbar-color: rgba(217,219,224,.5) rgba(217,219,224,.1); }
.equipe-grid::-webkit-scrollbar { height: 9px; -webkit-appearance: none; }
.equipe-grid::-webkit-scrollbar-thumb { background: rgba(217,219,224,.45); border-radius: 999px; }
.equipe-grid::-webkit-scrollbar-track { background: rgba(217,219,224,.10); border-radius: 999px; }

/* ===== Modal de booking (iframe do PWA) — só desktop ===== */
.omi-book-overlay { position: fixed; inset: 0; background: rgba(0,11,34,0.92); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; padding: 20px; }
.omi-book-overlay.open { opacity: 1; pointer-events: auto; }
.omi-book-frame { position: relative; width: min(440px, 92vw); height: min(800px, 92vh); border-radius: 36px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 2px rgba(255,255,255,0.06); background: #000; transform: translateY(20px); transition: transform 0.3s var(--ease-out); }
.omi-book-overlay.open .omi-book-frame { transform: translateY(0); }
.omi-book-iframe { width: 100%; height: 100%; border: 0; display: block; background: var(--bone); }
.omi-book-close { position: absolute; top: -48px; right: 0; background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.22); border-radius: 50%; width: 38px; height: 38px; cursor: pointer; font-size: 18px; display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.omi-book-close:hover { background: rgba(255,255,255,0.22); }
.omi-book-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--navy); color: var(--bone); padding: 14px 22px; border-radius: 999px; box-shadow: 0 12px 32px rgba(0,0,0,0.35); font-family: var(--sans); font-size: 13px; font-weight: 600; z-index: 10000; opacity: 0; transition: opacity 0.3s ease; }
.omi-book-toast.show { opacity: 1; }

/* ─── servico-card clicável: revela "Agendar →" no hover/focus ─── */
.servico-card:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; }
.servico-cta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  align-self: flex-start;
}
.servico-card:hover .servico-cta,
.servico-card:focus-visible .servico-cta { opacity: 1; transform: translateY(0); }
.servico-card.featured .servico-cta { color: var(--bone); opacity: 0.7; }
.servico-card.featured:hover .servico-cta { opacity: 1; }

/* Acesso profissional — link discreto no footer (equipe usa pra entrar no app
   de gestão sem chamar atenção do cliente final). */
.footer-bar .footer-prof-link {
  color: rgba(217, 219, 224, 0.32);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.10em;
  text-transform: lowercase;
  text-decoration: none;
  border-bottom: 1px dotted rgba(217, 219, 224, 0.18);
  transition: color 0.2s, border-color 0.2s;
}
.footer-bar .footer-prof-link:hover {
  color: rgba(217, 219, 224, 0.7);
  border-bottom-color: rgba(217, 219, 224, 0.45);
}

/* ================================================================
   Footer privacy link — mesma estética discreta do acesso profissional
   ================================================================ */
.footer-bar .footer-link {
  color: rgba(217, 219, 224, 0.55);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.10em;
  text-transform: lowercase;
  text-decoration: none;
  border-bottom: 1px dotted rgba(217, 219, 224, 0.28);
  transition: color 0.2s, border-color 0.2s;
}
.footer-bar .footer-link:hover {
  color: rgba(244, 242, 238, 0.92);
  border-bottom-color: rgba(217, 219, 224, 0.6);
}

/* ================================================================
   Skip-link — acessibilidade WCAG
   ================================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
}
.skip-link:focus {
  left: 0;
  top: 0;
  background: var(--navy);
  color: var(--bone);
  padding: 12px 16px;
  font: 600 14px/1 var(--sans);
  border-radius: 0 0 4px 0;
  outline: 2px solid var(--wine);
  outline-offset: 0;
}

/* ================================================================
   Focus visible global — feedback de teclado consistente
   ================================================================ */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ================================================================
   Touch targets — garantir 44×44 mínimo em links da nav e CTAs pequenos
   ================================================================ */
.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-bar .footer-prof-link,
.footer-bar .footer-link {
  display: inline-block;
  padding: 6px 4px;
}
.social a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.barbeiro-social a {
  min-height: 32px;
  padding: 4px 2px;
}

/* ================================================================
   Hamburger menu mobile — só aparece <968px (mesmo breakpoint nav)
   ================================================================ */
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out);
  transform-origin: center;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 968px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(244, 242, 238, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s var(--ease-out), opacity 0.25s var(--ease-out);
    display: flex;
    align-items: stretch;
    text-align: left;
    z-index: 49;
  }
  .nav-links-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links-open a {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 24, 60, 0.06);
    min-height: 50px;
  }
  .nav-links-open a:last-child { border-bottom: none; }
}

/* ================================================================
   Header semantic wrapper — reset margin no <header>
   ================================================================ */
header { display: contents; }
main { display: block; }
.site-footer { display: block; }

/* ================================================================
   Cookie banner (LGPD) — vanilla, sem libs
   ================================================================ */
.omi-cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9998;
  background: var(--navy);
  color: var(--bone);
  border-radius: var(--r-md);
  box-shadow: 0 24px 60px rgba(0, 11, 34, 0.45);
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid rgba(217, 219, 224, 0.12);
  animation: omi-cookie-in 0.32s var(--ease-out) both;
}
@keyframes omi-cookie-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.omi-cookie-inner { padding: 18px 22px; display: flex; flex-direction: column; gap: 12px; }
.omi-cookie-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.omi-cookie-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(244, 242, 238, 0.78);
}
.omi-cookie-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.omi-cookie-btn {
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.02em;
  padding: 12px 18px;
  border: 1px solid rgba(244, 242, 238, 0.28);
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
  min-height: 44px;
}
.omi-cookie-btn:hover { background: rgba(244, 242, 238, 0.06); border-color: rgba(244, 242, 238, 0.55); }
.omi-cookie-accept { background: var(--wine); border-color: var(--wine); }
.omi-cookie-accept:hover { background: var(--wine-light); border-color: var(--wine-light); }
.omi-cookie-link {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(244, 242, 238, 0.3);
  text-underline-offset: 4px;
  margin-left: auto;
}
.omi-cookie-link:hover { color: var(--bone); text-decoration-color: var(--bone); }
@media (max-width: 600px) {
  .omi-cookie-actions { flex-direction: column; align-items: stretch; }
  .omi-cookie-link { margin-left: 0; text-align: center; }
}

/* ================================================================
   Bloco 4 MAX — content-visibility nas seções below-the-fold
   Browser pula o trabalho de render/layout até o user scrollar.
   contain-intrinsic-size reserva espaço pra evitar CLS.
   ================================================================ */
.section.ritual,
.section.equipe,
.section.galeria,
.section.noivo,
.agendamento-cta,
.testimonial,
.cta-final,
.localizacao-block,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1200px;
}

/* Reduced motion reforçado (adiciona scroll-behavior auto) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
}
