/* ============================================================
   CHURRAS BC — Edição "Brasa Sofisticada"
   Dark editorial · Fraunces + Inter · ouro & bordô
   ============================================================ */

:root {
  --bg: #100c0a;
  --bg-2: #160f0c;
  --surface: #1c1511;
  --surface-2: #241b15;
  --line: rgba(201, 165, 92, 0.16);
  --line-soft: rgba(245, 237, 226, 0.08);

  --cream: #f4ede2;
  --muted: #b6a48f;
  --muted-2: #8a7868;

  --red: #c8202e;
  --red-deep: #9d1622;
  --gold: #c9a55c;
  --gold-soft: #ddc08a;

  --maxw: 1240px;
  --radius: 4px;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; } }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: clamp(70px, 11vw, 150px) 0; position: relative; }

/* ---------- Tipografia ---------- */
.display {
  font-family: var(--font-serif); font-weight: 400; line-height: 1.04;
  font-size: clamp(2.1rem, 5vw, 4rem); letter-spacing: -0.015em;
  font-optical-sizing: auto;
}
.display em { font-style: italic; color: var(--gold-soft); font-weight: 500; }
.eyebrow {
  font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); opacity: 0.6; }
.eyebrow--gold { color: var(--gold-soft); }
.section__head { max-width: 680px; margin-bottom: clamp(44px, 6vw, 72px); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .eyebrow::before { display: none; }
.section__lead { color: var(--muted); margin-top: 20px; font-size: 1.06rem; }

/* ============================================================ BOTÕES */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; font-family: var(--font-sans); font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.04em; border: 1px solid transparent; cursor: pointer; position: relative;
  overflow: hidden; transition: transform .5s var(--ease), background .4s, color .4s, border-color .4s;
}
.btn--sm { padding: 12px 24px; font-size: 0.82rem; }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-deep); transform: translateY(-3px); }
.btn--gold { background: transparent; color: var(--gold-soft); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold); color: #1a120a; transform: translateY(-3px); }
.btn--line { background: transparent; color: var(--cream); border-color: var(--line-soft); }
.btn--line:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-3px); }
.btn--primary::after, .btn--gold::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.btn--primary:hover::after, .btn--gold:hover::after { left: 140%; }
.g-ico { font-family: var(--font-serif); font-weight: 600; font-size: 1.05em; }

.link-arrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-soft); font-weight: 500; letter-spacing: .03em; font-size: .92rem; }
.link-arrow span { transition: transform .4s var(--ease); }
.link-arrow:hover span { transform: translateX(8px); }

/* ============================================================ PRELOADER */
.preloader { position: fixed; inset: 0; z-index: 9999; background: var(--bg); display: flex; align-items: center; justify-content: center; transition: opacity .7s ease, visibility .7s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.preloader__flame { display: flex; gap: 8px; align-items: flex-end; height: 62px; }
.preloader__flame span { width: 11px; border-radius: 8px 8px 4px 4px; background: linear-gradient(180deg, var(--gold-soft), var(--red)); animation: flame .9s ease-in-out infinite; }
.preloader__flame span:nth-child(1) { height: 30px; animation-delay: 0s; }
.preloader__flame span:nth-child(2) { height: 56px; animation-delay: .15s; }
.preloader__flame span:nth-child(3) { height: 40px; animation-delay: .3s; }
@keyframes flame { 0%, 100% { transform: scaleY(.6); opacity: .75; } 50% { transform: scaleY(1); opacity: 1; } }
.preloader__text { color: var(--muted); letter-spacing: .28em; text-transform: uppercase; font-size: .72rem; }

/* ============================================================ HEADER */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 22px 0; transition: background .5s, padding .5s, box-shadow .5s, transform .5s var(--ease); }
.header.scrolled { background: rgba(16, 12, 10, .82); backdrop-filter: blur(16px); padding: 12px 0; border-bottom: 1px solid var(--line); }
.header.hide { transform: translateY(-100%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo img { height: 88px; width: auto; transition: height .5s var(--ease); filter: drop-shadow(0 0 18px rgba(200,32,46,.28)); }
.header.scrolled .header__logo img { height: 60px; }
.nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.nav__link { font-size: .86rem; font-weight: 500; letter-spacing: .04em; color: var(--cream); position: relative; padding: 4px 0; transition: color .3s; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease); }
.nav__link:hover, .nav__link.active { color: var(--gold-soft); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.header__cta { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 1100; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--cream); transition: .4s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ============================================================ HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.hero__bg img { width: 100%; height: 116%; object-fit: cover; object-position: 78% 28%; transform: scale(1.06); animation: kenburns 18s ease-in-out infinite alternate; will-change: transform; }
@keyframes kenburns { to { transform: scale(1.14); } }
.hero__veil { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(100deg, rgba(16,12,10,.95) 0%, rgba(16,12,10,.78) 40%, rgba(16,12,10,.32) 72%, rgba(16,12,10,.55) 100%),
  linear-gradient(0deg, var(--bg) 2%, transparent 28%); }
.hero__grain { position: absolute; inset: 0; z-index: 2; opacity: .04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero__content { position: relative; z-index: 3; max-width: 680px; padding-top: 170px; padding-bottom: 170px; }
.hero__eyebrow { font-size: .72rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 26px; }
.hero__title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(2.6rem, 6.6vw, 5.4rem); line-height: 1.02; letter-spacing: -0.02em; }
.hero__title span { display: block; }
.hero__title-em { font-style: italic; color: var(--gold-soft); }
.hero__sub { margin: 28px 0 38px; font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--cream); opacity: .9; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__seals { position: absolute; z-index: 3; bottom: 46px; left: 0; right: 0; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 30px; }
.hero__seal { display: flex; flex-direction: column; }
.hero__seal-num { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold-soft); line-height: 1; }
.hero__seal-txt { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.hero__seal-div { width: 1px; height: 34px; background: var(--line); }
.hero__scroll { position: absolute; z-index: 3; bottom: 44px; right: 36px; width: 26px; height: 44px; border: 1px solid var(--line); border-radius: 13px; display: none; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); transform: translateX(-50%); animation: scrolld 1.6s infinite; }
@keyframes scrolld { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 26px; } 100% { opacity: 0; } }

/* ============================================================ MARQUEE */
.marquee { border-block: 1px solid var(--line); padding: 22px 0; overflow: hidden; white-space: nowrap; background: var(--bg-2); }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__group { display: flex; gap: 34px; padding-right: 34px; align-items: center; }
.marquee__group span { font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; color: var(--cream); opacity: .85; }
.marquee__sep { color: var(--gold); font-style: normal !important; opacity: 1 !important; font-size: .85rem !important; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================ REVEAL / IMG MASK */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
.img-reveal { overflow: hidden; position: relative; }
.img-reveal img { transition: transform 1.4s var(--ease), clip-path 1.2s var(--ease); transform: scale(1.12); clip-path: inset(0 0 100% 0); }
.img-reveal.in img, .img-reveal[data-reveal].in img { transform: scale(1); clip-path: inset(0 0 0% 0); }

/* ============================================================ RITUAL / SOBRE */
.ritual__grid { display: grid; grid-template-columns: 0.92fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.ritual__media { position: relative; }
.ritual__media .img-reveal { border-radius: var(--radius); box-shadow: var(--shadow); }
.ritual__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.ritual__badge { position: absolute; right: -28px; bottom: -28px; width: 124px; height: 124px; border-radius: 50%; background: var(--bg); border: 1px solid var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.ritual__badge-num { font-family: var(--font-serif); font-size: 2rem; color: var(--gold-soft); line-height: 1; }
.ritual__badge-txt { font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); margin-top: 4px; order: -1; margin-bottom: 4px; }
.ritual__text .display { margin-bottom: 22px; }
.ritual__lead { color: var(--muted); margin-bottom: 34px; font-size: 1.06rem; }
.ritual__steps { display: grid; gap: 16px; margin-bottom: 38px; }
.ritual__steps li { display: flex; align-items: baseline; gap: 16px; font-family: var(--font-serif); font-style: italic; font-size: 1.18rem; color: var(--cream); border-bottom: 1px solid var(--line-soft); padding-bottom: 16px; }
.ritual__steps li span { font-family: var(--font-sans); font-style: normal; font-size: .75rem; letter-spacing: .1em; color: var(--gold); font-weight: 600; }

/* ============================================================ STATS */
.stats { background: var(--bg-2); border-block: 1px solid var(--line); padding: clamp(54px, 7vw, 84px) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat { position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -15px; top: 10%; height: 80%; width: 1px; background: var(--line); }
.stat__num { font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--gold-soft); display: block; line-height: 1; }
.stat__label { color: var(--muted); font-size: .86rem; margin-top: 12px; display: block; letter-spacing: .02em; }

/* ============================================================ ESPECIALIDADES (abas) */
.spec__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 50px; }
.spec__tab { font-family: var(--font-sans); font-size: .86rem; letter-spacing: .04em; color: var(--muted); background: transparent; border: 1px solid var(--line-soft); padding: 13px 26px; cursor: pointer; border-radius: 100px; transition: .4s var(--ease); }
.spec__tab:hover { color: var(--cream); border-color: var(--line); }
.spec__tab.is-active { color: #1a120a; background: var(--gold); border-color: var(--gold); }
.spec__panels { position: relative; }
.spec__panel { display: none; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.spec__panel.is-active { display: grid; animation: panelin .7s var(--ease); }
@keyframes panelin { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.spec__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.spec__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.spec__index { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.spec__body h3 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 14px 0 16px; letter-spacing: -.01em; }
.spec__body > p { color: var(--muted); margin-bottom: 26px; max-width: 440px; }
.spec__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; max-width: 460px; }
.spec__list li { display: flex; align-items: center; gap: 10px; color: var(--cream); font-size: .98rem; padding-bottom: 10px; border-bottom: 1px solid var(--line-soft); }
.spec__list li::before { content: "✦"; color: var(--gold); font-size: .7rem; }
.spec__cta { text-align: center; margin-top: 54px; }

/* ============================================================ DIFERENCIAIS */
.feats { background: var(--bg-2); }
.feats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.feat { background: var(--bg-2); padding: 46px 38px; transition: background .5s var(--ease); }
.feat:hover { background: var(--surface); }
.feat__ico { color: var(--gold); font-size: 1.1rem; display: block; margin-bottom: 20px; }
.feat h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.4rem; margin-bottom: 10px; }
.feat p { color: var(--muted); font-size: .96rem; }

/* ============================================================ GALERIA */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; grid-auto-flow: dense; gap: 14px; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; opacity: 0; transform: translateY(30px) scale(.98); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.gallery__item.in { opacity: 1; transform: none; }
.gallery__item--big { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery__item:hover img { transform: scale(1.1); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(16,12,10,.82)); opacity: .55; transition: opacity .4s; }
.gallery__item:hover::after { opacity: .9; }
.gallery__item figcaption { position: absolute; left: 20px; bottom: 18px; z-index: 2; font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: var(--cream); transform: translateY(8px); opacity: 0; transition: .45s var(--ease); }
.gallery__item:hover figcaption { transform: none; opacity: 1; }

/* ============================================================ DEPOIMENTOS */
.reviews { background: var(--bg-2); }
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.review { background: var(--bg-2); padding: 42px 40px; transition: background .5s; }
.review:hover { background: var(--surface); }
.review__stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 18px; font-size: .9rem; }
.review p { font-family: var(--font-serif); font-style: italic; font-size: 1.22rem; line-height: 1.5; color: var(--cream); }
.review footer { margin-top: 18px; color: var(--gold-soft); font-family: var(--font-sans); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.reviews__actions { display: flex; justify-content: center; gap: 16px; margin-top: 44px; flex-wrap: wrap; }

/* ============================================================ INSTAGRAM */
.insta__feed { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; align-items: start; max-width: 1080px; margin: 0 auto; }
.insta__feed .instagram-media { margin: 0 !important; min-width: 0 !important; max-width: 100% !important; width: 100% !important; border-radius: var(--radius) !important; box-shadow: var(--shadow) !important; }
.insta__cta { text-align: center; margin-top: 44px; }

/* ============================================================ EVENTOS */
.eventos { position: relative; overflow: hidden; }
.eventos__bg { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.eventos__bg img { width: 100%; height: 116%; object-fit: cover; }
.eventos__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(16,12,10,.96) 32%, rgba(16,12,10,.55) 100%); }
.eventos__content { position: relative; z-index: 2; max-width: 600px; }
.eventos__content > p { color: var(--muted); margin: 22px 0 28px; font-size: 1.06rem; }
.eventos__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.eventos__tags span { border: 1px solid var(--line); color: var(--gold-soft); padding: 8px 18px; font-size: .82rem; letter-spacing: .04em; border-radius: 100px; }

/* ============================================================ FAQ */
.faq__grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.faq__intro { position: sticky; top: 120px; }
.faq__intro .display { margin: 16px 0 20px; }
.faq__intro > p { color: var(--muted); margin-bottom: 26px; }
.faq__list { display: grid; gap: 0; border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); transition: background .3s; }
.faq-item summary { cursor: pointer; padding: 26px 8px 26px 0; font-family: var(--font-serif); font-size: 1.18rem; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 18px; transition: color .3s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-sans); font-size: 1.4rem; color: var(--gold); transition: transform .4s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold-soft); }
.faq-item[open] summary { color: var(--gold-soft); }
.faq-item__content { padding: 0 8px 26px 0; color: var(--muted); max-width: 640px; }
.faq-item__content a { color: var(--gold-soft); text-decoration: underline; }
.faq-item__content strong { color: var(--cream); }

/* ============================================================ CONTATO */
.contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.contato__info > p { color: var(--muted); margin-top: 18px; max-width: 420px; }
.contato__list { margin: 36px 0; display: grid; gap: 0; border-top: 1px solid var(--line-soft); }
.contato__list li { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); align-items: baseline; }
.contato__k { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.contato__v { color: var(--cream); font-size: .98rem; line-height: 1.5; }
.contato__v a:hover { color: var(--gold-soft); }
.contato__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.contato__map { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); display: block; aspect-ratio: 4/3.2; }
.contato__map img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.contato__map:hover img { transform: scale(1.05); }
.contato__map-pin { position: absolute; bottom: 18px; left: 18px; background: var(--red); color: #fff; font-size: .82rem; font-weight: 500; letter-spacing: .03em; padding: 11px 20px; box-shadow: 0 10px 26px rgba(0,0,0,.4); }

/* ============================================================ DECORAÇÕES (line-art animada) */
.section .container { position: relative; z-index: 1; }
.deco { position: absolute; z-index: 0; pointer-events: none; fill: none; stroke: var(--gold); stroke-width: 1.1; opacity: 0; }
.deco path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.deco.in { opacity: .13; transition: opacity 1.1s ease; }
.deco.in path { stroke-dashoffset: 0; transition: stroke-dashoffset 2s var(--ease); }
.deco--ritual { top: 8%; right: 3%; height: 80%; width: auto; }
.deco--spec { top: 7%; left: 2%; height: 150px; width: auto; }
.deco--reservas { top: 12%; right: 4%; height: 70%; width: auto; }

/* ============================================================ RESERVAS / FORM */
.reservas__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.reservas__intro .display { margin: 16px 0 18px; }
.reservas__intro > p { color: var(--muted); margin-bottom: 26px; max-width: 380px; }
.reservas__perks { display: grid; gap: 12px; }
.reservas__perks li { color: var(--cream); font-size: .95rem; display: flex; align-items: center; gap: 12px; }
.reservas__perks li::before { content: "✦"; color: var(--gold); font-size: .7rem; }
.reservas__form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; background: var(--surface); border: 1px solid var(--line-soft); padding: clamp(24px, 4vw, 40px); border-radius: var(--radius); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.field input, .field select, .field textarea { background: var(--bg-2); border: 1px solid var(--line-soft); color: var(--cream); padding: 13px 14px; font-family: var(--font-sans); font-size: .95rem; border-radius: 4px; transition: border-color .3s, box-shadow .3s; width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,165,92,.12); }
.field input[type="date"] { color-scheme: dark; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a55c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.field textarea { resize: vertical; min-height: 84px; }
.reservas__submit { display: flex; flex-direction: column; gap: 12px; }
.reservas__submit .btn { width: 100%; }
.reservas__note { color: var(--muted-2); font-size: .8rem; }

/* ============================================================ FOOTER */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 76px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; padding-bottom: 54px; }
.footer__brand img { height: 96px; margin-bottom: 20px; }
.footer__brand p { color: var(--muted); max-width: 320px; font-size: .94rem; }
.footer__work { margin-top: 22px; }
.footer__nav { display: flex; flex-direction: column; gap: 13px; }
.footer__nav a, .footer__contact a { color: var(--muted); transition: color .3s; font-size: .94rem; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--gold-soft); }
.footer__contact p { color: var(--muted); margin-bottom: 12px; font-size: .94rem; }
.footer__bottom { border-top: 1px solid var(--line-soft); padding: 24px 32px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer__bottom p { color: var(--muted-2); font-size: .82rem; }
.footer__bottom p.footer__credit { font-size: .66rem; opacity: .55; letter-spacing: .02em; }
.footer__credit a { color: inherit; transition: color .3s; }
.footer__credit a:hover { color: var(--gold-soft); }

/* ============================================================ FLUTUANTES */
.reserve-float {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 140%);
  z-index: 901; display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; font-family: var(--font-sans); font-weight: 600;
  font-size: .9rem; letter-spacing: .03em; padding: 15px 30px; border-radius: 100px;
  border: 1px solid rgba(221, 192, 138, .45); box-shadow: 0 16px 38px rgba(200, 32, 46, .42);
  opacity: 0; visibility: hidden; white-space: nowrap;
  transition: transform .55s var(--ease), opacity .45s, background .4s, box-shadow .4s;
}
.reserve-float.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.reserve-float:hover { background: var(--red-deep); box-shadow: 0 20px 46px rgba(249, 115, 22, .4); }
.reserve-float svg { color: var(--gold-soft); }
.reserve-float::after { content: ""; position: absolute; inset: 0; border-radius: 100px; box-shadow: 0 0 0 0 rgba(200,32,46,.5); animation: reservePulse 2.6s ease-out infinite; }
@keyframes reservePulse { 0% { box-shadow: 0 0 0 0 rgba(200,32,46,.45); } 70% { box-shadow: 0 0 0 14px rgba(200,32,46,0); } 100% { box-shadow: 0 0 0 0 rgba(200,32,46,0); } }

.wpp-float { position: fixed; bottom: 24px; right: 24px; z-index: 900; width: 56px; height: 56px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .4s var(--ease); }
.wpp-float:hover { transform: scale(1.1); }
.to-top { position: fixed; bottom: 92px; right: 30px; z-index: 900; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--surface); color: var(--cream); border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .4s var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--gold); color: var(--gold-soft); }

/* ============================================================ CURSOR */
@media (pointer: fine) {
  .cursor-ring { position: fixed; top: 0; left: 0; width: 34px; height: 34px; border: 1px solid var(--gold); border-radius: 50%; z-index: 9997; pointer-events: none; transform: translate(-50%, -50%); transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s, opacity .35s; opacity: 0; }
  .cursor-ring.show { opacity: .5; }
  .cursor-ring.active { width: 58px; height: 58px; background: rgba(201,165,92,.1); border-color: var(--gold-soft); opacity: 1; }
}

/* ============================================================ RESPONSIVO */
@media (max-width: 1000px) {
  .ritual__grid, .spec__panel.is-active, .contato__grid, .faq__grid, .reservas__grid { grid-template-columns: 1fr; }
  .deco--ritual, .deco--reservas { display: none; }
  .ritual__media { max-width: 460px; margin: 0 auto; }
  .spec__panel.is-active { gap: 30px; }
  .spec__media { order: -1; }
  .feats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat + .stat::before { display: none; }
  .insta__feed { grid-template-columns: 1fr; max-width: 380px; }
  .faq__intro { position: static; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 860px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px); flex-direction: column; justify-content: center; gap: 28px; background: var(--bg-2); padding: 40px; transform: translateX(100%); transition: transform .5s var(--ease); box-shadow: var(--shadow); border-left: 1px solid var(--line); }
  .nav.open { transform: none; }
  .nav__link { font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .hero__seals { gap: 18px; bottom: 28px; }
  .hero__seal-num { font-size: 1.2rem; }
}
@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .header__logo img { height: 60px; }
  .header.scrolled .header__logo img { height: 50px; }
  .hero__content { padding-top: 116px; padding-bottom: 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .feats__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery__item--big { grid-column: span 2; grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
  .spec__list { grid-template-columns: 1fr; }
  .reservas__form { grid-template-columns: 1fr; }
  .stats__grid { gap: 32px 16px; }
  .ritual__badge { width: 92px; height: 92px; right: 0; }
  .contato__list li { grid-template-columns: 1fr; gap: 4px; }
  .footer__bottom { flex-direction: column; }
  .hero__seals { display: none; }
  .reserve-float { padding: 12px 20px; font-size: .8rem; bottom: 18px; }
}

/* Links legais no rodapé */
.footer__bottom p a { color: inherit; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--line); transition: color .3s; }
.footer__bottom p a:hover { color: var(--gold-soft); }

/* ============================================================ LGPD / COOKIES */
.cookie { position: fixed; left: 50%; transform: translateX(-50%) translateY(140%); bottom: 22px; z-index: 3000;
  width: min(620px, calc(100% - 36px)); background: rgba(22, 15, 12, .96); border: 1px solid var(--line);
  border-radius: 8px; padding: 22px 24px; box-shadow: 0 24px 60px rgba(0,0,0,.55); backdrop-filter: blur(14px);
  transition: transform .55s var(--ease), opacity .55s; opacity: 0; }
.cookie.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie__title { font-family: var(--font-serif); font-size: 1.18rem; color: var(--cream); margin-bottom: 8px; }
.cookie__text { font-size: .86rem; color: var(--muted); line-height: 1.6; }
.cookie__text a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.cookie__actions .btn { padding: 11px 22px; font-size: .82rem; }
.cookie__btn-reject { background: transparent; color: var(--muted); border: 1px solid var(--line-soft); }
.cookie__btn-reject:hover { color: var(--cream); border-color: var(--gold); }
@media (max-width: 560px) { .cookie { padding: 18px 18px; } .cookie__actions .btn { flex: 1; } }

/* Placeholder de consentimento (Instagram bloqueado até aceite) */
.consent-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 14px; min-height: 420px; padding: 32px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; color: var(--muted); }
.consent-ph svg { width: 38px; height: 38px; color: var(--gold); opacity: .85; }
.consent-ph p { font-size: .9rem; max-width: 320px; }
.consent-ph .btn { margin-top: 4px; }

/* ============================================================ PÁGINAS LEGAIS / 404 */
.page-hero { padding: clamp(140px, 18vw, 200px) 0 clamp(40px, 6vw, 70px); position: relative; border-bottom: 1px solid var(--line-soft); }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-family: var(--font-serif); font-weight: 400; line-height: 1.05; letter-spacing: -.015em;
  font-size: clamp(2.1rem, 5vw, 3.4rem); }
.page-hero h1 em { font-style: italic; color: var(--gold-soft); }
.page-hero__meta { color: var(--muted-2); font-size: .82rem; margin-top: 18px; letter-spacing: .02em; }

.legal { padding: clamp(50px, 7vw, 80px) 0 clamp(80px, 10vw, 130px); }
.legal__wrap { max-width: 820px; margin: 0 auto; }
.legal h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  color: var(--cream); margin: 44px 0 14px; letter-spacing: -.01em; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-family: var(--font-sans); font-weight: 600; font-size: 1rem; color: var(--gold-soft); margin: 26px 0 8px; }
.legal p, .legal li { color: var(--muted); font-size: .98rem; line-height: 1.8; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 18px; padding-left: 0; }
.legal ul li { position: relative; padding-left: 22px; margin-bottom: 8px; }
.legal ul li::before { content: ""; position: absolute; left: 0; top: .8em; width: 7px; height: 1px; background: var(--gold); }
.legal a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--cream); font-weight: 600; }
.legal__toc { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 22px 26px; margin-bottom: 40px; }
.legal__toc p { color: var(--gold); font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 12px; }
.legal__toc a { display: block; color: var(--muted); text-decoration: none; padding: 4px 0; font-size: .92rem; transition: color .3s; }
.legal__toc a:hover { color: var(--gold-soft); }

/* Header simplificado das páginas internas */
.subheader { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 16px 0;
  background: rgba(16,12,10,.9); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.subheader__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.subheader__logo img { height: 52px; width: auto; }
.subheader__back { font-size: .84rem; color: var(--cream); letter-spacing: .03em; transition: color .3s; }
.subheader__back:hover { color: var(--gold-soft); }

/* 404 */
.notfound { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 120px 24px; position: relative; }
.notfound__code { font-family: var(--font-serif); font-size: clamp(5rem, 18vw, 11rem); line-height: 1;
  color: var(--gold-soft); font-style: italic; }
.notfound h1 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 10px 0 14px; }
.notfound p { color: var(--muted); max-width: 440px; margin: 0 auto 28px; }
.notfound__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
