/* ==========================================================================
   Illy Nails — estilos
   Paleta: branco, dourado #e0c087, preto
   Fontes: Garet (corpo), Great Vibes + Cinzel Decorative (decorativas)
   ========================================================================== */

/* ---- Garet: usa o arquivo local se existir, senao cai para Jost/sistema ---- */
@font-face {
  font-family: "Garet";
  src: url("../assets/fonts/Garet-Book.woff2") format("woff2"),
       url("../assets/fonts/Garet-Book.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Garet";
  src: url("../assets/fonts/Garet-Heavy.woff2") format("woff2"),
       url("../assets/fonts/Garet-Heavy.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

:root {
  --gold: #e0c087;
  --gold-soft: #ecd5a6;
  --gold-deep: #c39c58;
  --black: #0e0e0e;
  --ink: #1a1a1a;
  --white: #ffffff;
  --cream: #faf6ef;
  --cream-2: #f3ece0;
  --muted: #6b6357;
  --line: rgba(197, 165, 100, .28);

  --font-body: "Garet", "Jost", "Century Gothic", "Questrial", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --font-title: "Cinzel Decorative", "Cinzel", serif;

  --shadow-sm: 0 6px 20px rgba(20, 16, 8, .08);
  --shadow-md: 0 18px 50px rgba(20, 16, 8, .16);
  --radius: 18px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--dark { background: var(--black); color: var(--cream); }
.section--cream2 { background: var(--cream-2); }

/* ---- Tipografia decorativa ---- */
.script { font-family: var(--font-script); font-weight: 400; line-height: 1; }
.eyebrow {
  font-size: .78rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin: 0 0 14px;
}
.section--dark .eyebrow { color: var(--gold); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(38px, 6vw, 64px); }
.section-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.4vw, 2.9rem);
  letter-spacing: .01em;
  margin: 0 0 16px;
  line-height: 1.15;
}
.section-title .script {
  display: block; font-size: 1.55em; color: var(--gold-deep); margin-top: -.1em;
}
.section--dark .section-title .script { color: var(--gold); }
.lead { color: var(--muted); font-size: 1.06rem; margin: 0; }
.section--dark .lead { color: rgba(250, 246, 239, .78); }

/* ---- Botoes ---- */
.btn {
  --_bg: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 30px; border-radius: 100px; border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 700; font-size: .96rem;
  letter-spacing: .04em; cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: #2a2110; box-shadow: 0 10px 26px rgba(196, 156, 88, .38);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(196, 156, 88, .5); }
.btn--outline { background: transparent; border-color: var(--gold-deep); color: var(--gold-deep); }
.btn--outline:hover { background: var(--gold); border-color: var(--gold); color: #2a2110; transform: translateY(-3px); }
.btn--light { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost-light { background: transparent; border-color: rgba(224, 192, 135, .55); color: var(--gold); }
.btn--ghost-light:hover { background: var(--gold); color: #2a2110; transform: translateY(-3px); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 40px; font-size: 1.02rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
.header.scrolled {
  background: rgba(14, 14, 14, .92);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 52px; width: auto; transition: height .4s var(--ease); filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); }
.header.scrolled .brand__logo { height: 44px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-title); font-weight: 700; color: var(--gold); font-size: 1.1rem; letter-spacing: .06em; }
.brand__sub { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 5px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__link { color: rgba(255,255,255,.82); font-size: .92rem; letter-spacing: .04em; position: relative; padding: 4px 0; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }
.nav > .btn { display: none; } /* CTA do menu só aparece no mobile */

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--gold); margin: 6px 0; transition: transform .35s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .header__cta.btn { display: none; }
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 26px;
    background: rgba(14, 14, 14, .98); backdrop-filter: blur(8px);
    transform: translateX(100%); transition: transform .45s var(--ease); padding: 40px;
  }
  .nav.open { transform: translateX(0); }
  .nav__link { font-size: 1.3rem; }
  .nav > .btn { display: inline-flex; margin-top: 10px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--cream); overflow: hidden;
  padding: 130px 0 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,10,.9) 0%, rgba(12,11,9,.72) 42%, rgba(12,11,9,.35) 100%),
    linear-gradient(0deg, rgba(10,10,10,.75), rgba(10,10,10,0) 45%);
}
.hero__inner { position: relative; z-index: 2; max-width: 660px; }
.hero__diamond { width: 46px; margin-bottom: 22px; opacity: 0; animation: dropIn 1s var(--ease) .1s forwards; }
.hero__brand { font-family: var(--font-script); font-size: clamp(3.4rem, 11vw, 6.4rem); color: var(--gold); line-height: .95; margin: 0; text-shadow: 0 6px 30px rgba(0,0,0,.5); }
.hero__sig { display: block; font-family: var(--font-title); font-size: clamp(.8rem, 2.4vw, 1.05rem); letter-spacing: .42em; text-transform: uppercase; color: var(--cream); margin: 18px 0 0; padding-left: .42em; }
.hero__desc { font-size: clamp(1rem, 2.4vw, 1.18rem); color: rgba(250,246,239,.9); max-width: 34ch; margin: 26px 0 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  color: var(--gold); font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: .85;
}
.hero__scroll::after { content: ""; width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2s ease-in-out infinite; }

@keyframes dropIn { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }
@keyframes scrollpulse { 0%,100% { transform: scaleY(.5); opacity: .4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; } }

/* Faixa de destaques */
.hero-strip { background: var(--black); border-top: 1px solid rgba(224,192,135,.16); }
.hero-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 26px 0; }
.hero-strip__item { display: flex; align-items: center; gap: 14px; justify-content: center; color: var(--cream); }
.hero-strip__item svg { width: 26px; height: 26px; color: var(--gold); flex: none; }
.hero-strip__item strong { display: block; font-size: .98rem; }
.hero-strip__item span { font-size: .8rem; color: rgba(250,246,239,.6); }
@media (max-width: 720px) { .hero-strip__grid { grid-template-columns: 1fr; gap: 12px; } }

/* ==========================================================================
   Sobre
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__media::before {
  content: ""; position: absolute; inset: -16px -16px auto auto; width: 62%; height: 62%;
  border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1;
}
.about__badge {
  position: absolute; left: -22px; bottom: 26px; background: var(--black); color: var(--gold);
  border-radius: 14px; padding: 16px 22px; box-shadow: var(--shadow-md); text-align: center;
}
.about__badge b { font-family: var(--font-title); font-size: 1.5rem; display: block; }
.about__badge span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(250,246,239,.7); }
.about__text .section-title { text-align: left; }
.about__text .section-head { text-align: left; margin: 0; max-width: none; }
.about__values { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 14px; }
.about__values li { display: flex; gap: 12px; align-items: flex-start; }
.about__values svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; margin-top: 2px; }
@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .about__badge { left: 0; }
}

/* ==========================================================================
   Servicos
   ========================================================================== */
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 24px; }
.svc-card {
  background: var(--white); border-radius: var(--radius); padding: 38px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(197,165,100,.14);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep)); transform: scaleX(0);
  transform-origin: left; transition: transform .45s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--line); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card__icon {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, var(--cream), var(--cream-2));
  border: 1px solid var(--line); margin-bottom: 20px;
}
.svc-card__icon svg { width: 28px; height: 28px; color: var(--gold-deep); }
.svc-card h3 { font-family: var(--font-title); font-size: 1.22rem; margin: 0 0 10px; }
.svc-card p { color: var(--muted); font-size: .96rem; margin: 0 0 18px; }
.svc-card__link { color: var(--gold-deep); font-weight: 700; font-size: .9rem; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 6px; }
.svc-card__link svg { width: 16px; transition: transform .3s var(--ease); }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* ==========================================================================
   Agendamento
   ========================================================================== */
.booking__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 60px); align-items: stretch; }
.booking__intro .section-title, .booking__intro .section-head { text-align: left; }
.booking__intro .section-head { margin: 0; max-width: none; }
.booking__steps { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 22px; }
.booking__steps li { display: flex; gap: 16px; align-items: flex-start; }
.booking__steps .num {
  flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-title); color: var(--gold); border: 1px solid rgba(224,192,135,.4);
}
.booking__steps b { color: var(--cream); display: block; }
.booking__steps span { color: rgba(250,246,239,.65); font-size: .92rem; }

.booking__card {
  background: var(--white); color: var(--ink); border-radius: 22px; padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.booking__card h3 { font-family: var(--font-title); font-size: 1.3rem; margin: 0 0 6px; }
.booking__card .muted { color: var(--muted); font-size: .92rem; margin: 0 0 24px; }
.field { margin-bottom: 20px; }
.field > label { display: block; font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line); background: var(--cream); color: var(--ink);
  padding: 10px 16px; border-radius: 100px; font-family: inherit; font-size: .9rem; cursor: pointer;
  transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--gold-deep); }
.chip.active { background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); color: #2a2110; border-color: transparent; font-weight: 700; }
.input {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--cream); font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.input:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(224,192,135,.25); }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 10px; }
.slot {
  padding: 12px 8px; border-radius: 12px; border: 1px solid var(--line); background: var(--cream);
  font-family: inherit; font-size: .95rem; cursor: pointer; text-align: center; transition: all .25s var(--ease);
}
.slot:hover { border-color: var(--gold-deep); }
.slot.active { background: var(--black); color: var(--gold); border-color: var(--black); font-weight: 700; }
.booking__hint { font-size: .82rem; color: var(--muted); margin: 4px 0 0; }
.booking__error { color: #b23c3c; font-size: .86rem; margin: 0 0 14px; min-height: 1.2em; }
.booking__summary {
  background: var(--cream); border: 1px dashed var(--line); border-radius: 12px; padding: 14px 18px;
  font-size: .92rem; margin-bottom: 20px; display: none;
}
.booking__summary.show { display: block; }
.booking__summary b { color: var(--gold-deep); }
@media (max-width: 860px) { .booking__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Feed / Galeria
   ========================================================================== */
.feed__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.feed__head .section-head { text-align: left; margin: 0; max-width: 560px; }
.feed__ig { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-deep); font-weight: 700; }
.feed__ig svg { width: 22px; }
.feed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feed-item {
  position: relative; border-radius: 14px; overflow: hidden; cursor: pointer; aspect-ratio: 1;
  background: var(--cream-2); box-shadow: var(--shadow-sm);
}
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.feed-item:hover img { transform: scale(1.08); }
.feed-item__overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,14,14,.7), rgba(14,14,14,0) 55%);
  opacity: 0; transition: opacity .4s var(--ease); display: flex; align-items: flex-end; padding: 16px;
  color: var(--cream);
}
.feed-item:hover .feed-item__overlay { opacity: 1; }
.feed-item__overlay svg { width: 22px; height: 22px; color: var(--gold); }
.feed-item__badge {
  position: absolute; top: 10px; right: 10px; background: rgba(14,14,14,.66); color: var(--gold);
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; backdrop-filter: blur(3px);
}
.feed-item__badge svg { width: 16px; }
@media (max-width: 860px) { .feed-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .feed-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center;
  padding: 20px; background: rgba(8,8,8,.9); backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lb {
  background: var(--black); border-radius: 20px; overflow: hidden; width: min(940px, 100%);
  max-height: 92svh; display: grid; grid-template-columns: 1.15fr .85fr; box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lb__media { position: relative; background: #000; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.lb__track { display: flex; width: 100%; height: 100%; transition: transform .5s var(--ease); }
.lb__slide { min-width: 100%; display: flex; align-items: center; justify-content: center; }
.lb__slide img { width: 100%; height: 100%; max-height: 92svh; object-fit: contain; }
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%;
  background: rgba(14,14,14,.6); border: 1px solid rgba(224,192,135,.4); color: var(--gold); cursor: pointer;
  display: grid; place-items: center; transition: background .25s;
}
.lb__nav:hover { background: var(--gold); color: #2a2110; }
.lb__nav--prev { left: 12px; } .lb__nav--next { right: 12px; }
.lb__nav svg { width: 20px; }
.lb__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; }
.lb__dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.4); transition: all .3s; }
.lb__dot.active { background: var(--gold); width: 20px; border-radius: 4px; }
.lb__info { padding: 34px 30px; color: var(--cream); display: flex; flex-direction: column; }
.lb__info .brand__name { font-size: 1rem; }
.lb__ig { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid rgba(224,192,135,.2); margin-bottom: 18px; }
.lb__ig-logo { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold); object-fit: contain; background: #000; padding: 3px; }
.lb__ig b { display: block; font-size: .95rem; } .lb__ig span { font-size: .78rem; color: rgba(250,246,239,.6); }
.lb__caption { font-size: .98rem; color: rgba(250,246,239,.85); flex: 1; }
.lb__caption .tag { color: var(--gold); }
.lb__actions { display: grid; gap: 12px; margin-top: 22px; }
.lb__close {
  position: absolute; top: 14px; right: 14px; z-index: 5; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(14,14,14,.6); border: 1px solid rgba(224,192,135,.35); color: var(--gold); cursor: pointer;
  display: grid; place-items: center;
}
.lb__close:hover { background: var(--gold); color: #2a2110; }
.lb__close svg { width: 20px; }
@media (max-width: 720px) {
  .lb { grid-template-columns: 1fr; max-height: 94svh; overflow-y: auto; }
  .lb__media { max-height: 60svh; }
}

/* ==========================================================================
   Localizacao / Mapa
   ========================================================================== */
.loc__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: stretch; }
.loc__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; position: relative; }
.loc__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.loc__side { display: flex; flex-direction: column; gap: 20px; }
.loc__photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); flex: 1; min-height: 200px; position: relative; }
.loc__photo img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.loc__photo figcaption {
  position: absolute; left: 14px; bottom: 14px; background: rgba(14,14,14,.72); color: var(--gold);
  padding: 7px 14px; border-radius: 100px; font-size: .8rem; letter-spacing: .04em; backdrop-filter: blur(4px);
}
.loc__card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.loc__card h3 { font-family: var(--font-title); font-size: 1.1rem; margin: 0 0 6px; }
.loc__card address { font-style: normal; color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
@media (max-width: 860px) { .loc__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Horarios
   ========================================================================== */
.hours__wrap { max-width: 560px; margin: 0 auto; background: var(--white); border-radius: 22px; box-shadow: var(--shadow-md); overflow: hidden; }
.hours__row { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; border-bottom: 1px solid rgba(197,165,100,.14); }
.hours__row:last-child { border-bottom: 0; }
.hours__row.today { background: linear-gradient(90deg, rgba(224,192,135,.16), transparent); }
.hours__row .day { font-weight: 700; display: flex; align-items: center; gap: 10px; }
.hours__row .day .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-deep); }
.hours__row .time { color: var(--muted); }
.hours__row.closed .time { color: #b23c3c; font-weight: 700; }
.hours__row .badge-today { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; background: var(--gold); color: #2a2110; padding: 3px 9px; border-radius: 100px; font-weight: 700; }

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta-final { text-align: center; }
.cta-final .script { font-size: clamp(2.6rem, 8vw, 4.6rem); color: var(--gold); }
.cta-final p { max-width: 44ch; margin: 12px auto 30px; color: rgba(250,246,239,.8); }
.cta-final .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: #0a0a0a; color: rgba(250,246,239,.7); padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__logo { height: 78px; margin-bottom: 16px; }
.footer__grid h4 { color: var(--gold); font-family: var(--font-title); font-size: .95rem; letter-spacing: .08em; margin: 0 0 16px; }
.footer__grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__grid a:hover { color: var(--gold); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; }
.footer__contact svg { width: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(224,192,135,.3); display: grid; place-items: center; color: var(--gold); transition: all .3s var(--ease); }
.footer__social a:hover { background: var(--gold); color: #2a2110; transform: translateY(-3px); }
.footer__social svg { width: 20px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; text-align: center; font-size: .82rem; color: rgba(250,246,239,.45); }
.footer__bottom a { color: var(--gold-deep); }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 30px; text-align: left; } }

/* WhatsApp flutuante */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .3s var(--ease); animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; }
@keyframes waPulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.45); } 50% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,0); } }

/* ==========================================================================
   Animacoes de entrada (reveal)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ==========================================================================
   Multi-páginas: estado ativo do menu
   ========================================================================== */
.nav__link[aria-current="page"] { color: var(--gold); }
.nav__link[aria-current="page"]::after { width: 100%; }

/* ==========================================================================
   Banner de página (topo das páginas internas)
   ========================================================================== */
.page-banner {
  position: relative; padding: 150px 0 60px; color: var(--cream);
  background: var(--black); overflow: hidden; text-align: center;
}
.page-banner__bg { position: absolute; inset: 0; z-index: 0; opacity: .28; }
.page-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,.7), rgba(10,10,10,.92));
}
.page-banner__inner { position: relative; z-index: 2; }
.page-banner .eyebrow { color: var(--gold); }
.page-banner h1 {
  font-family: var(--font-title); font-weight: 700; margin: 8px 0 0;
  font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.1;
}
.page-banner h1 .script { display: block; font-size: 1.4em; color: var(--gold); }
.page-banner p { color: rgba(250,246,239,.8); max-width: 56ch; margin: 18px auto 0; }

/* Breadcrumb */
.breadcrumb { position: relative; z-index: 2; margin-bottom: 22px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 0; margin: 0; font-size: .82rem; letter-spacing: .04em; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: rgba(250,246,239,.6); }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--gold-deep); }
.breadcrumb a { color: rgba(250,246,239,.75); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li[aria-current] { color: var(--gold); }

/* ==========================================================================
   "Continue navegando" — grade de links entre páginas (ajuda os sitelinks)
   ========================================================================== */
.pagenav__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.pagenav__card {
  display: flex; align-items: center; gap: 16px; padding: 22px; border-radius: var(--radius);
  background: var(--white); border: 1px solid rgba(197,165,100,.16); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.pagenav__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line); }
.pagenav__ico { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: radial-gradient(circle at 30% 30%, var(--cream), var(--cream-2)); border: 1px solid var(--line); }
.pagenav__ico svg { width: 24px; height: 24px; color: var(--gold-deep); }
.pagenav__card b { display: block; font-family: var(--font-title); font-size: 1rem; }
.pagenav__card span { font-size: .85rem; color: var(--muted); }
.section--dark .pagenav__card { background: rgba(255,255,255,.04); border-color: rgba(224,192,135,.18); }
.section--dark .pagenav__card b { color: var(--cream); }
.section--dark .pagenav__card span { color: rgba(250,246,239,.6); }

/* Link "ver tudo" no topo das seções de prévia */
.section-head .more-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--gold-deep); font-weight: 700; font-size: .92rem; }
.section-head .more-link svg { width: 16px; transition: transform .3s var(--ease); }
.section-head .more-link:hover svg { transform: translateX(4px); }
.section--dark .section-head .more-link { color: var(--gold); }
