/* ═══════════════════════════════════════════════════════════════
   Al Amirat – Casa da Esfiha · Landing Page
   Paleta: Cream Tahini · Ruby Sfiha · Canary Zest · Gold Harvest
           Peach Hummus · Olive Branch · Charcoal Date
   ═══════════════════════════════════════════════════════════════ */

:root {
  --cream:       #F8F3E9;
  --cream-2:     #F1E7D2;
  --cream-card:  #FFFFFF;
  --ruby:        #D81D23;
  --ruby-dark:   #B0151B;
  --canary:      #FFD100;
  --gold:        #C6A664;
  --gold-soft:   #E6D5AE;
  --peach:       #E9967A;
  --olive:       #A4B066;
  --charcoal:    #2A2821;
  --ink-soft:    #5A5548;

  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', Arial, Helvetica, sans-serif;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 6px 18px -12px rgba(42,40,33,.22);
  --shadow-md: 0 18px 40px -22px rgba(42,40,33,.30);
  --shadow-ruby: 0 14px 28px -14px rgba(216,29,35,.55);
  --border-gold: 1px solid rgba(198,166,100,.45);
  --container: 1160px;
}

/* ── Reset / base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0 0 .5em; line-height: 1.12; font-weight: 700; }
em { font-style: italic; }
strong { font-weight: 800; }
section[id], footer[id] { scroll-margin-top: 92px; }
section[id] { scroll-margin-top: 96px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--charcoal);
  color: var(--cream);
  padding: 10px 16px;
  z-index: 2000;
  border-radius: 0 0 10px 0;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

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

/* ── Botões ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 15px 26px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { flex: none; }
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--full { width: 100%; }
.btn--primary {
  background: var(--ruby);
  color: #fff;
  box-shadow: var(--shadow-ruby);
}
.btn--primary:hover {
  background: var(--ruby-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -14px rgba(216,29,35,.62);
}
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(42,40,33,.35);
}
.btn--ghost:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--cream);
  color: var(--ruby);
}
.btn--light:hover {
  background: var(--canary);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* ── Eyebrow / títulos de seção ─────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--canary), var(--gold));
}
.section { padding: 96px 0; }
.section--tint { background: var(--cream-2); }
.section__head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section__head .eyebrow { justify-content: center; }
.section__head .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(270deg, var(--canary), var(--gold));
}
.section__title {
  font-size: clamp(30px, 4.4vw, 46px);
  margin: 16px 0 18px;
  color: var(--charcoal);
}
.section__title em { color: var(--ruby); }
.section__lead { color: var(--ink-soft); font-size: 18px; margin: 0; }
.section__footnote { color: var(--ink-soft); font-size: 14px; }

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248,243,233,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--border-gold);
  transition: box-shadow .25s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding-block: 10px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--ruby);
  color: var(--canary);
  box-shadow: 0 8px 18px -10px rgba(216,29,35,.6);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong {
  font-family: var(--font-head);
  font-size: 21px;
  letter-spacing: .02em;
}
.brand__text small {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--gold);
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; align-items: center; gap: 26px; }
.nav__list a {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
  position: relative;
  padding-block: 6px;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--ruby);
  transition: right .22s ease;
}
.nav__list a:hover::after { right: 0; }
.nav__list a:hover { color: var(--ruby); }
.header__cta { padding: 12px 20px; font-size: 15px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: var(--charcoal);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  padding: 0 11px;
}
.nav-toggle span {
  display: block;
  height: 2.6px;
  border-radius: 3px;
  background: var(--cream);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 400px at 92% 12%, rgba(233,150,122,.28), transparent 65%),
    radial-gradient(480px 380px at 4% 90%, rgba(255,209,0,.18), transparent 62%),
    radial-gradient(600px 520px at 60% 60%, rgba(198,166,100,.10), transparent 70%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23C6A664' stroke-width='1'%3E%3Ccircle cx='60' cy='60' r='46'/%3E%3Ccircle cx='60' cy='60' r='38'/%3E%3Cpath d='M60 14v16M60 90v16M14 60h16M90 60h16'/%3E%3Cpath d='M28 28l11 11M81 81l11 11M92 28L81 39M39 81l-11 11'/%3E%3Ccircle cx='60' cy='60' r='2.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 150px 150px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: var(--border-gold);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--ruby);
  box-shadow: var(--shadow-sm);
}
.hero__eyebrow svg { color: var(--gold); }
.hero__title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  margin: 22px 0 20px;
  letter-spacing: -.01em;
}
.hero__title em {
  color: var(--ruby);
  position: relative;
  white-space: nowrap;
  z-index: 0;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='12' viewBox='0 0 120 12'%3E%3Cpath d='M2 8c26-6 60-6 116-3' fill='none' stroke='%23FFD100' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x;
  background-size: 120px 12px;
  opacity: .9;
  z-index: -1;
}
.hero__sub {
  font-size: 18.5px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0; }
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}
.hero__trust svg { color: var(--olive); }

.hero__media { position: relative; }
.hero__media figure { margin: 0; position: relative; }
.hero__media img {
  width: 100%;
  height: auto;
  border-radius: 36px;
  box-shadow: var(--shadow-md);
  border: 6px solid #fff;
  transform: rotate(1.2deg);
}
.hero__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: var(--border-gold);
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.2;
}
.hero__badge strong { display: block; font-size: 15.5px; }
.hero__badge--fresca { left: -14px; bottom: 34px; }
.hero__badge--rapida { right: -10px; top: 26px; }
.hero__badge-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: var(--cream);
  font-size: 22px;
}
.hero__badge--rapida svg { color: var(--ruby); width: 40px; height: 40px; padding: 8px; box-sizing: border-box; background: var(--cream); border-radius: 13px; }
.hero__badge--rapida { border-color: rgba(216,29,35,.35); }

/* ── Barra de prova social ───────────────────────────────────── */
.proof { padding-bottom: 20px; }
.proof__inner {
  background: #fff;
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.proof__google {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--charcoal);
}
.proof__g {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream);
}
.proof__text { display: flex; flex-direction: column; line-height: 1.25; }
.proof__text strong { font-size: 16px; }
.proof__text small { font-size: 13px; color: var(--ink-soft); }
.proof__stars {
  color: var(--canary);
  letter-spacing: 2px;
  font-size: 17px;
  text-shadow: 0 1px 0 rgba(198,166,100,.4);
}
.proof__go {
  font-weight: 800;
  font-size: 14.5px;
  color: var(--ruby);
  white-space: nowrap;
}
.proof__google:hover .proof__go { text-decoration: underline; }
.proof__chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; }
.proof__chips li {
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13.5px;
  font-weight: 700;
}

/* ── Cardápio (cards) ────────────────────────────────────────── */
.menu { position: relative; }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--cream-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card__media { position: relative; margin: 0; }
.card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--gold-soft);
}
.card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--canary);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 999px;
  padding: 6px 13px;
  box-shadow: var(--shadow-sm);
}
.card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.card__title { font-size: 23px; margin-bottom: 8px; }
.card__desc { font-size: 15px; color: var(--ink-soft); margin-bottom: 16px; }
.card__list { margin: 0 0 20px; display: grid; gap: 8px; }
.card__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  font-weight: 600;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--olive);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.card .btn { margin-top: auto; }
.menu__note {
  text-align: center;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}
.menu__note a { color: var(--ruby); text-decoration: none; }
.menu__note a:hover { text-decoration: underline; }

/* ── Diferenciais ────────────────────────────────────────────── */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff__card {
  background: #fff;
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.diff__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.diff__icon {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 18px;
  margin-bottom: 18px;
}
.diff__icon--ruby  { background: rgba(216,29,35,.10); color: var(--ruby); }
.diff__icon--gold  { background: rgba(198,166,100,.18); color: #a3813f; }
.diff__icon--canary{ background: rgba(255,209,0,.22); color: #9c7a00; }
.diff__icon--olive { background: rgba(164,176,102,.18); color: #6c7a34; }
.diff__icon--peach { background: rgba(233,150,122,.18); color: #c25a38; }
.diff__card h3 { font-size: 20px; margin-bottom: 8px; }
.diff__card p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* ── Galeria ─────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__item { margin: 0; border-radius: var(--radius-lg); overflow: hidden; cursor: zoom-in; position: relative; border: var(--border-gold); background: #fff; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 16px 13px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(transparent, rgba(42,40,33,.82));
}

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20,17,10,.92);
  padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1080px);
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,.5);
  object-fit: contain;
  background: #fff;
}
.lightbox__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s ease;
}
.lightbox__close:hover { background: var(--ruby); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s ease;
}
.lightbox__nav:hover { background: var(--ruby); }
.lightbox__nav svg { width: 26px; height: 26px; }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }
.lightbox__count {
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.75);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
}
.lightbox__caption {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  background: rgba(20,17,10,.6);
  padding: 8px 16px;
  border-radius: 999px;
}

/* ── Depoimentos ─────────────────────────────────────────────── */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: #fff;
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.review::before {
  content: "“";
  position: absolute;
  top: 6px; right: 20px;
  font-family: var(--font-head);
  font-size: 78px;
  line-height: 1;
  color: var(--gold-soft);
  pointer-events: none;
}
.review__head { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--canary);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
}
.review__name { display: block; font-size: 16px; }
.review__source { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.review__stars { margin-left: auto; color: var(--canary); letter-spacing: 1.5px; font-size: 15px; }
.review__text { font-size: 15px; color: var(--charcoal); margin: 0; }
.testimonials__cta { text-align: center; margin-top: 36px; }

/* ── Localização / contato ───────────────────────────────────── */
.location__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: stretch; }
.location__info { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-content: start; }
.info-block {
  display: flex;
  gap: 16px;
  background: #fff;
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.info-block__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--ruby);
}
.info-block h3 { font-size: 17px; margin-bottom: 4px; }
.info-block p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 6px; }
.info-block p small { font-size: 12.5px; }
.info-block a { font-size: 13.5px; font-weight: 800; color: var(--ruby); text-decoration: none; }
.info-block a:hover { text-decoration: underline; }
.info-block__phone { font-size: 17px !important; color: var(--charcoal) !important; text-decoration: none !important; }
.info-block__phone:hover { color: var(--ruby) !important; }
.location__map { display: flex; flex-direction: column; gap: 16px; }
.map-wrap {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
  min-height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.faq__grid .section__head { text-align: left; margin: 0 0 26px; }
.faq__grid .section__head .eyebrow { justify-content: flex-start; }
.faq__grid .section__head .eyebrow::after { display: none; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: #fff;
  border: var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq__item.is-open { box-shadow: var(--shadow-sm); border-color: rgba(216,29,35,.35); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 19px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 800;
  color: var(--charcoal);
}
.faq__q svg { flex: none; color: var(--gold); transition: transform .25s ease; }
.faq__item.is-open .faq__q svg { transform: rotate(180deg); color: var(--ruby); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__item.is-open .faq__a { max-height: 320px; }
.faq__a p { margin: 0; padding: 0 22px 20px; font-size: 15px; color: var(--ink-soft); }

/* ── CTA final ───────────────────────────────────────────────── */
.final-cta { position: relative; overflow: hidden; background: linear-gradient(125deg, var(--ruby) 0%, #A80F15 78%); padding: 84px 0; }
.final-cta__dec { position: absolute; inset: 0; pointer-events: none; opacity: .5; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23FFD100' stroke-width='1'%3E%3Ccircle cx='60' cy='60' r='46'/%3E%3Ccircle cx='60' cy='60' r='38'/%3E%3Cpath d='M60 14v16M60 90v16M14 60h16M90 60h16'/%3E%3Ccircle cx='60' cy='60' r='2.4'/%3E%3C/g%3E%3C/svg%3E"); background-size: 160px 160px; }
.final-cta__inner { position: relative; text-align: center; max-width: 780px; }
.final-cta__title { color: #fff; font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 16px; }
.final-cta__title em { color: var(--canary); }
.final-cta__text { color: rgba(255,255,255,.9); font-size: 18px; max-width: 620px; margin: 0 auto 32px; }
.final-cta__actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.final-cta__hint { color: rgba(255,255,255,.82); font-size: 13.5px; font-weight: 700; }

/* ── Rodapé ──────────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: #EDE3CE; padding: 64px 0 0; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
}
.brand--footer .brand__mark { background: rgba(255,209,0,.12); color: var(--canary); box-shadow: none; border: 1px solid rgba(198,166,100,.4); }
.site-footer__desc { font-size: 14.5px; color: #C8BCA2; max-width: 340px; margin: 16px 0; }
.site-footer__google { color: var(--canary); font-weight: 800; font-size: 14.5px; text-decoration: none; }
.site-footer__google:hover { color: #fff; }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 18px;
}
.site-footer__links, .site-footer__contact { display: grid; gap: 11px; }
.site-footer__links a { color: #C8BCA2; text-decoration: none; font-size: 15px; transition: color .15s ease, padding-left .15s ease; }
.site-footer__links a:hover { color: var(--canary); padding-left: 5px; }
.site-footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: #C8BCA2; }
.site-footer__contact a { color: var(--canary); text-decoration: none; font-weight: 700; }
.site-footer__contact a:hover { color: #fff; }
.site-footer__cicon { font-size: 15px; line-height: 1.5; }
.site-footer__bottom {
  border-top: 1px solid rgba(198,166,100,.22);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: #8f856f;
}
.site-footer__bottom p { margin: 0; }

/* ── Botão flutuante WhatsApp ────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.65);
  transition: transform .2s ease;
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.2s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ── Animações de revelação (com <html class="js">) ──────────── */
.js .reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

/* ═══════════════ Responsivo ═══════════════ */
@media (max-width: 1020px) {
  .menu__grid, .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery, .reviews { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__media { max-width: 520px; margin-inline: auto; }
  .hero__trust { margin-bottom: 8px; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 86vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--charcoal);
    color: var(--cream);
    padding: 92px 30px 30px;
    transform: translateX(100%);
    transition: transform .28s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,.25);
    z-index: -1;
  }
  .nav.open { transform: translateX(0); z-index: 900; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .nav__list a { color: var(--cream); font-size: 18px; display: block; padding: 10px 0; width: 100%; }
  .nav__list a::after { background: var(--canary); }
  .header__cta { width: 100%; margin-top: 22px; }
  .site-header { z-index: 950; }

  .faq__grid, .location__grid { grid-template-columns: 1fr; gap: 36px; }
  .map-wrap iframe { min-height: 300px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(var(--container), 100% - 40px); }
  .hero { padding: 44px 0 56px; }
  .hero__title em { white-space: normal; }
  .menu__grid, .diff__grid, .gallery, .reviews { grid-template-columns: 1fr; }
  .location__info { grid-template-columns: 1fr; }
  .hero__badge--fresca { left: 6px; bottom: 22px; }
  .hero__badge--rapida { right: 6px; top: 14px; }
  .proof__inner { flex-direction: column; align-items: flex-start; }
  .section__title { font-size: 30px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .btn--lg { width: 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; }
}
