/* ============================================================
   Delícia do Vale — Blumenau · deliciadovaleblu.com.br
   Identidade: bordô profundo · creme · dourado champagne
   ============================================================ */

:root {
  /* Cores da marca (extraídas dos materiais oficiais) */
  --bordo-950: #2b060d;
  --bordo-900: #3a0c13;
  --bordo-800: #4a0d16;
  --bordo-700: #6e1423;
  --bordo-600: #7a1e2b;
  --bordo-500: #8f2a38;
  --choc-900: #241014;
  --choc-800: #2a1215;
  --cream: #f2e8d5;
  --cream-2: #efe3cc;
  --cream-soft: #f7f0e3;
  --cream-deep: #e6d7b8;
  --gold: #c9a24b;
  --gold-light: #e3c685;
  --gold-deep: #a37f2e;
  --ink: #2b1418;
  --ink-soft: #5c3a40;

  /* Tipografia */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Grand Hotel", cursive;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;

  /* Ritmo */
  --space-section: clamp(4rem, 9vw, 7.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1160px;

  --shadow-soft: 0 10px 40px rgba(43, 6, 13, 0.12);
  --shadow-lift: 0 22px 60px rgba(43, 6, 13, 0.22);
  --gold-grad: linear-gradient(115deg, #a37f2e 0%, #c9a24b 30%, #efd9a0 50%, #c9a24b 70%, #a37f2e 100%);
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--bordo-700);
  color: var(--cream-soft);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Tipografia ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--bordo-800);
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { max-width: 68ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--gold-grad);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.script-accent {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--gold-deep);
  line-height: 1.2;
}

.lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}
.section { padding-block: var(--space-section); }
.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head h2 { margin-top: 0.6rem; }
.section-head p { margin-top: 0.9rem; }

.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }

/* Seções escuras (noite / sopas) */
.dark {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(201, 162, 75, 0.14), transparent 60%),
    linear-gradient(175deg, var(--bordo-900) 0%, var(--bordo-950) 55%, var(--choc-900) 100%);
  color: var(--cream-2);
}
.dark h1, .dark h2, .dark h3 { color: var(--cream-soft); }
.dark .lead, .dark p { color: rgba(242, 232, 213, 0.86); }
.dark .eyebrow { color: var(--gold-light); }

/* Divisor ornamental (filigrana dourada das artes) */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--gold);
  margin-block: 0.4rem;
}
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  width: clamp(40px, 8vw, 90px);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(270deg, transparent, var(--gold)); }
.ornament svg { width: 16px; height: 16px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.9rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-gold {
  position: relative;
  overflow: hidden;
  background: var(--gold-grad);
  background-size: 220% 100%;
  color: var(--bordo-950);
  box-shadow: 0 8px 26px rgba(201, 162, 75, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201, 162, 75, 0.5);
  animation: gold-shimmer 1.6s ease forwards;
}
@keyframes gold-shimmer {
  from { background-position: 0% 0; }
  to { background-position: 100% 0; }
}

.btn-outline {
  border-color: rgba(201, 162, 75, 0.7);
  color: var(--cream-soft);
  background: rgba(201, 162, 75, 0.08);
}
.btn-outline:hover {
  background: rgba(201, 162, 75, 0.18);
  transform: translateY(-2px);
}
.btn-outline.on-light { color: var(--bordo-700); border-color: var(--bordo-600); background: transparent; }
.btn-outline.on-light:hover { background: rgba(110, 20, 35, 0.07); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header.scrolled,
html:not(.js) .site-header {
  background: rgba(43, 6, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream-soft);
}
.brand img, .brand svg { width: 46px; height: 48px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name .script { font-size: 1.55rem; }
.brand-name small {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.28rem;
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  list-style: none;
  padding: 0;
}
.nav-links a:not(.btn) {
  color: var(--cream-2);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  padding-block: 0.4rem;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:not(.btn):hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links .btn { padding: 0.6rem 1.3rem; font-size: 0.9rem; }

/* Menu mobile — checkbox hack (funciona sem JS) */
.nav-toggle-input { position: absolute; opacity: 0; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 75, 0.5);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream-soft);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  /* referência de posicionamento passa a ser o .site-header (fixed, full-width) */
  .main-nav { position: static; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(43, 6, 13, 0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(201, 162, 75, 0.25);
    padding: 0.8rem 1.4rem 1.4rem;
    display: none;
  }
  .nav-links li { border-bottom: 1px solid rgba(242, 232, 213, 0.08); }
  .nav-links li:last-child { border: none; padding-top: 0.9rem; }
  .nav-links a:not(.btn) { display: block; padding: 0.9rem 0.2rem; font-size: 1.05rem; }
  .nav-toggle-input:checked ~ .nav-links { display: flex; }
  .nav-toggle-input:checked ~ .nav-toggle .icon-open { display: none; }
  .nav-toggle-input:checked ~ .nav-toggle .icon-close { display: block; }
  .nav-toggle-input:focus-visible ~ .nav-toggle { outline: 3px solid var(--gold); outline-offset: 3px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: -2;
  background:
    radial-gradient(900px 480px at 12% 8%, rgba(201, 162, 75, 0.16), transparent 55%),
    radial-gradient(1100px 600px at 95% 100%, rgba(122, 30, 43, 0.55), transparent 60%),
    linear-gradient(160deg, var(--bordo-800) 0%, var(--bordo-950) 62%, var(--choc-900) 100%);
}
/* textura sutil de "toalha" */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(45deg, var(--cream) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, var(--cream) 0 1px, transparent 1px 14px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--cream-soft); margin-top: 1rem; }
.hero h1 em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead { margin-top: 1.3rem; color: rgba(242, 232, 213, 0.85); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.6rem;
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(201, 162, 75, 0.3);
  list-style: none;
  padding-left: 0;
}
.hero-facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-light);
}
.hero-facts span { font-size: 0.86rem; color: rgba(242, 232, 213, 0.75); letter-spacing: 0.04em; }

/* Vapor de sopa (CSS puro) */
.steam {
  position: absolute;
  bottom: 96%;
  left: 50%;
  width: 130px;
  height: 110px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}
.steam i {
  position: absolute;
  bottom: 0;
  width: 14px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(to top, rgba(247, 240, 227, 0), rgba(247, 240, 227, 0.55), rgba(247, 240, 227, 0));
  filter: blur(6px);
  opacity: 0;
  animation: steam-rise 3.6s ease-in-out infinite;
}
.steam i:nth-child(1) { left: 22%; animation-delay: 0s; }
.steam i:nth-child(2) { left: 46%; height: 74px; animation-delay: 1.1s; }
.steam i:nth-child(3) { left: 68%; animation-delay: 2.2s; }
@keyframes steam-rise {
  0% { transform: translateY(18px) scaleY(0.7) rotate(-3deg); opacity: 0; }
  35% { opacity: 0.8; }
  100% { transform: translateY(-64px) scaleY(1.25) rotate(4deg); opacity: 0; }
}

/* ---------- Placeholder de foto (troca óbvia) ---------- */
.ph {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(420px 260px at 30% 20%, rgba(201, 162, 75, 0.28), transparent 60%),
    linear-gradient(150deg, var(--bordo-600), var(--bordo-900));
  border: 1px solid rgba(201, 162, 75, 0.45);
  outline: 2px dashed rgba(201, 162, 75, 0.55);
  outline-offset: -12px;
  color: var(--cream-2);
  text-align: center;
  padding: 1.4rem;
  min-height: 240px;
}
.ph.ratio-45 { aspect-ratio: 4 / 5; }
.ph.ratio-32 { aspect-ratio: 3 / 2; }
.ph.ratio-169 { aspect-ratio: 16 / 9; }
.ph.on-cream {
  background:
    radial-gradient(420px 260px at 30% 20%, rgba(201, 162, 75, 0.22), transparent 60%),
    linear-gradient(150deg, #fbf6ea, var(--cream-deep));
  color: var(--ink-soft);
  border-color: rgba(163, 127, 46, 0.5);
  outline-color: rgba(163, 127, 46, 0.5);
}
.ph svg { width: 42px; height: 42px; opacity: 0.85; }
.ph figcaption strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ph figcaption span { font-size: 0.78rem; opacity: 0.75; }

/* ---------- Foto real (substitui .ph após processar-imagens.js) ---------- */
.media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bordo-900);
  box-shadow: var(--shadow-soft);
}
.media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media.ratio-45 { aspect-ratio: 4 / 5; }
.media.ratio-32 { aspect-ratio: 3 / 2; }
.media.ratio-169 { aspect-ratio: 16 / 9; }
.card .media { border-radius: 0; box-shadow: none; }

/* ---------- Cards de serviço ---------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fdfaf2;
  border: 1px solid rgba(163, 127, 46, 0.28);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold);
}
.card .ph { border-radius: 0; border: none; outline-offset: -10px; min-height: 210px; }
.card-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.card-body h3 { color: var(--bordo-700); }
.card-body .badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bordo-700);
  background: rgba(201, 162, 75, 0.18);
  border: 1px solid rgba(163, 127, 46, 0.35);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.card-link {
  margin-top: auto;
  font-weight: 800;
  color: var(--bordo-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.card-link svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.card-link:hover svg { transform: translateX(5px); }
.card-link:hover { text-decoration: underline; text-underline-offset: 4px; }
/* link estendido: card inteiro clicável mantendo um único <a> real */
.card-link::before { content: ""; position: absolute; inset: 0; }

/* ---------- Diferenciais ---------- */
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(253, 250, 242, 0.7);
  border: 1px solid rgba(163, 127, 46, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--gold); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  border: 1.5px solid rgba(163, 127, 46, 0.5);
  background: radial-gradient(circle at 30% 25%, #fff9ec, #f3e7cd);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.feature p { font-size: 0.98rem; color: var(--ink-soft); }

/* ---------- Marquee de sabores ---------- */
.marquee {
  --gap: 3.2rem;
  overflow: hidden;
  padding-block: 1.1rem;
  border-block: 1px solid rgba(201, 162, 75, 0.35);
  background: rgba(43, 6, 13, 0.35);
  display: flex;
}
.marquee-track {
  display: flex;
  gap: var(--gap);
  padding-right: var(--gap);
  flex: none;
  align-items: center;
  animation: marquee 36s linear infinite;
  will-change: transform;
}
.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--cream-2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
}
.marquee span::after { content: "✦"; color: var(--gold); font-size: 0.8em; }
@keyframes marquee {
  to { transform: translateX(-100%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Lista de sopas ---------- */
.soup-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 1rem; }
.soup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(247, 240, 227, 0.06);
  border: 1px solid rgba(201, 162, 75, 0.3);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.soup:hover { background: rgba(201, 162, 75, 0.12); border-color: var(--gold); transform: translateY(-3px); }
.soup .dot {
  width: 12px;
  height: 12px;
  flex: none;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 12px rgba(201, 162, 75, 0.7);
}
.soup strong { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--cream-soft); }

/* ---------- Avaliações ---------- */
.review {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.8rem 1.7rem;
  border-radius: var(--radius-lg);
  background: #fdfaf2;
  border: 1px solid rgba(163, 127, 46, 0.25);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.review .stars { color: var(--gold-deep); letter-spacing: 0.2em; font-size: 1rem; }
.review blockquote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink);
  padding: 0;
  border: none;
}
.review blockquote::before { content: "“"; color: var(--gold); font-size: 1.6em; line-height: 0; margin-right: 0.1em; }
.review blockquote::after { content: "”"; color: var(--gold); font-size: 1.6em; line-height: 0; margin-left: 0.1em; }
.review footer { margin-top: auto; font-size: 0.9rem; color: var(--ink-soft); }
.review footer strong { color: var(--bordo-700); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.9rem; max-width: 860px; }
.faq details {
  border: 1px solid rgba(163, 127, 46, 0.3);
  border-radius: var(--radius);
  background: #fdfaf2;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq details[open] { border-color: var(--gold); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.4rem;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--bordo-800);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-deep);
  transition: transform 0.3s ease;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }
.faq .faq-body p + p { margin-top: 0.6rem; }

/* ---------- Bloco localização / NAP ---------- */
.info-panel {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  border-radius: var(--radius-lg);
  background: rgba(247, 240, 227, 0.05);
  border: 1px solid rgba(201, 162, 75, 0.35);
}
.info-panel p, .info-panel address { color: rgba(242, 232, 213, 0.88); }
.info-item { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.info-item svg { width: 24px; height: 24px; color: var(--gold-light); margin-top: 0.2rem; }
.info-item strong { display: block; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.2rem; }
.info-item a { color: var(--cream-soft); text-decoration-color: rgba(201, 162, 75, 0.6); text-underline-offset: 4px; }
address { font-style: normal; }

/* ---------- CTA final ---------- */
.cta-final {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final .container { position: relative; z-index: 1; max-width: 780px; }
.cta-final .script-accent { color: var(--gold-light); }
.cta-final h2 { margin-top: 0.4rem; }
.cta-final .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--choc-900);
  color: rgba(242, 232, 213, 0.8);
  padding-block: 3.5rem 2rem;
  border-top: 1px solid rgba(201, 162, 75, 0.25);
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: rgba(242, 232, 213, 0.85); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); text-decoration: underline; text-underline-offset: 4px; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(242, 232, 213, 0.12);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(242, 232, 213, 0.55);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.86rem; margin-bottom: 1rem; color: rgba(242, 232, 213, 0.7); }
.breadcrumb ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.breadcrumb li + li::before { content: "›"; margin-right: 0.5rem; color: var(--gold); }
.breadcrumb a { color: inherit; }

/* ---------- Página interna: hero compacto ---------- */
.page-hero {
  padding-top: clamp(7rem, 13vw, 9.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.page-hero .lead { margin-top: 1.1rem; }

/* ---------- Tabela de horários ---------- */
.hours { width: 100%; border-collapse: collapse; max-width: 560px; }
.hours th, .hours td { text-align: left; padding: 0.85rem 0.6rem; border-bottom: 1px solid rgba(163, 127, 46, 0.3); }
.hours th { font-family: var(--font-display); font-weight: 600; color: var(--bordo-700); }
.dark .hours th { color: var(--gold-light); }
.dark .hours th, .dark .hours td { border-color: rgba(201, 162, 75, 0.3); }

/* Lista com marcadores dourados */
.gold-list { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.gold-list li { position: relative; padding-left: 1.5em; }
.gold-list li::before { content: "✦"; position: absolute; left: 0; top: 0.18em; color: var(--gold-deep); font-size: 0.85em; }
.dark .gold-list li::before { color: var(--gold-light); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 32px; height: 32px; }

/* ---------- Reveal on scroll (progressivo: só com .js) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
html.js .reveal-stagger.in > * { opacity: 1; transform: none; }

/* ---------- Redução de movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal, html.js .reveal-stagger > * { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .steam { display: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .wa-float, .steam { display: none; }
  body { background: #fff; }
}
