/* ==========================================================================
   Mercadinho e Padaria Silva
   Design: warm artisanal + premium dark/gold (brand logo palette)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg: #fff8ef;
  --bg-soft: #fffdf9;
  --bg-alt: #fdf3e3;
  --ink: #22160b;
  --ink-soft: #6b5844;
  --ink-faint: #9a8672;

  --gold: #d97706;
  --gold-2: #f59e0b;
  --orange: #ea580c;
  --dark: #17110a;
  --dark-2: #241a10;
  --dark-3: #2f2113;

  --wa: #25d366;
  --wa-deep: #1da851;
  --wa-bg: #0f4024;

  --line: #f0ddc0;
  --card: #ffffff;

  --shadow-sm: 0 4px 14px rgba(34, 22, 11, 0.08);
  --shadow-md: 0 14px 40px rgba(34, 22, 11, 0.12);
  --shadow-gold: 0 12px 32px rgba(217, 119, 6, 0.35);

  --radius: 18px;
  --radius-lg: 26px;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Cabin', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;

  --container: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; font-weight: 700; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); }

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

::selection { background: var(--gold); color: #fff; }

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

/* ---------- Utilities: icons ---------- */
.ico { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, filter 0.25s;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.92rem; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

.btn--wa {
  background: linear-gradient(135deg, var(--wa), var(--wa-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37, 211, 102, 0.45); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(217, 119, 6, 0.45); }

.btn--outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.95); color: var(--ink); border-color: transparent; transform: translateY(-3px); }

/* Shine sweep effect on buttons */
.btn--shine::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  z-index: 1;
  transition: left 0.6s var(--ease);
  pointer-events: none;
}
.btn--shine:hover::after { left: 130%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--dark);
  color: rgba(255, 250, 240, 0.85);
  font-size: 0.86rem;
  position: relative;
  z-index: 60;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; flex-wrap: wrap; }
.topbar__info { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 0.45rem; color: inherit; transition: color 0.2s; }
.topbar__item svg { width: 14px; height: 14px; color: var(--gold-2); }
a.topbar__item:hover { color: var(--gold-2); }
.topbar__social { display: flex; align-items: center; gap: 0.35rem; }
.topbar__social a {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: rgba(255, 250, 240, 0.85);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.topbar__social a svg { width: 15px; height: 15px; }
.topbar__social a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 239, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.navbar.is-scrolled {
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 8px 30px rgba(34, 22, 11, 0.1);
  border-color: var(--line);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__logo { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.18)); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-family: var(--font-head); font-size: 0.98rem; font-weight: 700; letter-spacing: 0.02em; }
.brand__name { font-family: var(--font-script); font-size: 1.5rem; color: var(--gold); line-height: 0.9; }
.brand--footer .brand__logo { width: 62px; height: 62px; }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav__link {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color 0.2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 96svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--dark);
}
@media (min-width: 1024px) {
  .hero { min-height: min(100svh, 56.25vw); }
}

.hero__stage { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: -12% 0 -18% 0;   /* extra bleed for parallax translate */
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  will-change: transform;
}
.hero__slide.is-active { opacity: 1; }

.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15, 10, 5, 0.82) 0%, rgba(15, 10, 5, 0.55) 42%, rgba(15, 10, 5, 0.15) 75%),
    linear-gradient(to top, rgba(15, 10, 5, 0.7), transparent 45%);
}

.hero__content { position: relative; z-index: 3; width: 100%; }
.hero__content .container { padding-top: 1rem; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.42rem 1.05rem;
  border: 1px solid rgba(255, 214, 150, 0.4);
  background: rgba(23, 17, 10, 0.45);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffe9c2;
  backdrop-filter: blur(6px);
  margin-bottom: 1.4rem;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.hero__title {
  font-size: clamp(2.3rem, 5.4vw, 4.3rem);
  max-width: 16ch;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
  margin-bottom: 1.1rem;
}
.hero__title em {
  background: linear-gradient(115deg, var(--gold-2), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  max-width: 56ch;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  color: rgba(255, 246, 232, 0.92);
  margin-bottom: 1.9rem;
}

.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.4rem; }

.hero__badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.1rem;
  background: rgba(23, 17, 10, 0.5);
  border: 1px solid rgba(255, 214, 150, 0.28);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  animation: float-badge 5s ease-in-out infinite;
}
.hero__badge:nth-child(2) { animation-delay: 0.9s; }
.hero__badge:nth-child(3) { animation-delay: 1.8s; }
.hero__badge:hover { transform: translateY(-4px); border-color: rgba(245, 158, 11, 0.6); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35); }
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero__badge-ico { width: 26px; height: 26px; color: var(--gold-2); flex: none; }
.hero__badge strong { display: block; font-size: 0.95rem; line-height: 1.2; }
.hero__badge span { display: block; font-size: 0.78rem; color: rgba(255, 246, 232, 0.75); }

.hero__dots {
  position: absolute;
  right: 2rem; bottom: 2.2rem;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}
.hero__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s, transform 0.3s;
}
.hero__dot.is-active { background: var(--gold-2); transform: scale(1.35); box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25); }

.hero__scroll {
  position: absolute;
  left: 2rem; bottom: 1.8rem;
  z-index: 5;
}
.hero__scroll-mouse {
  display: block;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  position: relative;
}
.hero__scroll-wheel {
  position: absolute;
  left: 50%; top: 7px;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 3px;
  background: var(--gold-2);
  animation: wheel 1.8s infinite;
}
@keyframes wheel {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- Section scaffolding ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(234, 88, 12, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-tag--center { display: table; margin-inline: auto; margin-bottom: 1.1rem; }
.section-tag--light { color: #ffd98a; background: rgba(255, 214, 150, 0.12); }

.section-title { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 1rem; max-width: 24ch; }
.section-title--center { text-align: center; margin-inline: auto; }
.section-sub { color: var(--ink-soft); max-width: 60ch; }
.section-sub--center { margin-inline: auto; text-align: center; }
.section-title--light { color: #fff; }

/* ---------- Features ---------- */
.features { padding: 4.5rem 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.feature {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-2), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: #f3d39a; }
.feature:hover::before { transform: scaleX(1); }

.feature__icon {
  display: inline-grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 16px;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(234, 88, 12, 0.15));
  color: var(--orange);
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature:hover .feature__icon {
  transform: rotate(-6deg) scale(1.08);
  background: linear-gradient(135deg, var(--gold-2), var(--orange));
  color: #fff;
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.35);
}
.feature h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- About ---------- */
.about { padding: 5.5rem 0; background: var(--bg-soft); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid #fff;
  outline: 1px solid var(--line);
  aspect-ratio: 2/3;
  max-height: 620px;
  margin-inline: auto;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__float {
  position: absolute;
  top: -1.6rem; right: -1rem;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 4px solid #fff;
  animation: float-badge 6s ease-in-out infinite;
}
.about__float img { width: 100%; height: 100%; object-fit: contain; }
.about__stamp {
  position: absolute;
  bottom: -1.4rem; left: -1rem;
  display: grid;
  place-items: center;
  gap: 0.2rem;
  width: 128px; height: 128px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--orange));
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  box-shadow: var(--shadow-gold);
  padding: 1rem;
  animation: float-badge 7s ease-in-out infinite;
}
.about__stamp svg { width: 26px; height: 26px; opacity: 0.9; }

.about__content p { color: var(--ink-soft); margin-bottom: 1rem; }
.about__content p strong { color: var(--ink); }

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.8rem 0;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 0.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat__num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat__suffix { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--gold); margin-left: 2px; }
.stat__label { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.3rem; }

/* ---------- Menu ---------- */
.menu { padding: 5.5rem 0; }
.menu__head { margin-bottom: 2rem; }

.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
.menu__tab {
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink-soft);
  background: #fff;
  border: 1.5px solid var(--line);
  transition: all 0.25s var(--ease);
}
.menu__tab:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.menu__tab.is-active {
  background: linear-gradient(135deg, var(--gold-2), var(--orange));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.4rem;
}

.mcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  overflow: hidden;
}
.mcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(245, 158, 11, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.mcard:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: #f3d39a; }
.mcard:hover::after { opacity: 1; }

.mcard__badge {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold-2), var(--orange));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
}
.mcard__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(234, 88, 12, 0.16));
  color: var(--orange);
  margin-bottom: 1rem;
  transition: transform 0.3s var(--ease);
}
.mcard__icon svg { width: 24px; height: 24px; }
.mcard:hover .mcard__icon { transform: rotate(-6deg) scale(1.1); }
.mcard__cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.mcard h3 { font-size: 1.3rem; margin: 0.2rem 0 0.45rem; }
.mcard p { font-size: 0.93rem; color: var(--ink-soft); flex: 1; }
.mcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--line);
}
.mcard__price { font-family: var(--font-head); font-size: 1.55rem; font-weight: 800; color: var(--orange); }
.mcard__price small { font-size: 0.75rem; font-weight: 600; color: var(--ink-faint); font-family: var(--font-body); }
.mcard__order {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wa), var(--wa-deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.mcard__order svg { width: 17px; height: 17px; }
.mcard__order:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 26px rgba(37, 211, 102, 0.42); }

.menu__cta {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(115deg, #2a1d0f, var(--dark-2));
  border-radius: var(--radius-lg);
  padding: 2.6rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.menu__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 90% at 85% 10%, rgba(245, 158, 11, 0.28), transparent 60%);
}
.menu__cta p { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.3rem; position: relative; z-index: 1; }

/* ---------- How to order ---------- */
.how {
  padding: 5.5rem 0;
  background:
    radial-gradient(90% 70% at 85% 0%, rgba(245, 158, 11, 0.16), transparent 55%),
    var(--dark);
  color: #fff;
}
.how__head { margin-bottom: 3rem; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 214, 150, 0.18);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.7rem;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-2), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.step:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.07); border-color: rgba(245, 158, 11, 0.5); }
.step:hover::before { transform: scaleX(1); }

.step__num {
  position: absolute;
  top: 0.9rem; right: 1.2rem;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.22);
  line-height: 1;
  transition: color 0.3s;
}
.step:hover .step__num { color: rgba(245, 158, 11, 0.5); }

.step__icon {
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--gold-2), var(--orange));
  color: #fff;
  box-shadow: var(--shadow-gold);
  margin-bottom: 1rem;
  transition: transform 0.3s var(--ease);
}
.step__icon svg { width: 26px; height: 26px; }
.step:hover .step__icon { transform: rotate(-6deg) scale(1.1); }
.step h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.92rem; color: rgba(255, 246, 232, 0.72); }

/* ---------- Testimonials ---------- */
.testimonials { padding: 5.5rem 0; background: var(--bg-soft); }
.testimonials__head { margin-bottom: 2.6rem; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative;
}
.tcard::before {
  content: "“";
  position: absolute;
  top: -0.6rem; right: 1rem;
  font-family: var(--font-head);
  font-size: 5rem;
  color: rgba(217, 119, 6, 0.16);
  line-height: 1;
}
.tcard:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: #f3d39a; }
.tcard__stars { color: var(--gold); letter-spacing: 0.15em; font-size: 1.05rem; }
.tcard p { font-size: 0.97rem; color: var(--ink-soft); flex: 1; }
.tcard footer { display: flex; align-items: center; gap: 0.8rem; }
.tcard__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-2), var(--orange));
  flex: none;
}
.tcard footer strong { display: block; font-size: 0.98rem; }
.tcard footer span { font-size: 0.8rem; color: var(--ink-faint); }

/* ---------- FAQ ---------- */
.faq { padding: 5.5rem 0; }
.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.faq__side p { color: var(--ink-soft); margin-bottom: 1.6rem; max-width: 40ch; }

.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 0.9rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq__item[open] { border-color: #f3d39a; box-shadow: var(--shadow-md); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg {
  width: 22px; height: 22px;
  flex: none;
  color: var(--orange);
  transition: transform 0.35s var(--ease);
}
.faq__item[open] summary { color: var(--orange); }
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__body { padding: 0 1.4rem 1.25rem; }
.faq__body p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Contact ---------- */
.contact { padding: 5.5rem 0; background: var(--bg-soft); }
.contact__head { margin-bottom: 2.6rem; }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.ccard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
a.ccard:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: #8fe3b0; }
.ccard:hover:not(a) { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: #f3d39a; }
.ccard__icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(234, 88, 12, 0.16));
  color: var(--orange);
  margin-bottom: 0.4rem;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}
.ccard__icon svg { width: 26px; height: 26px; }
.ccard:hover .ccard__icon { transform: rotate(-6deg) scale(1.08); }
.ccard--wa:hover .ccard__icon { background: linear-gradient(135deg, var(--wa), var(--wa-deep)); color: #fff; }
.ccard h3 { font-size: 1.12rem; }
.ccard p { font-size: 0.95rem; color: var(--ink-soft); }
.ccard__cta { margin-top: 0.3rem; font-weight: 700; font-size: 0.9rem; color: var(--wa-deep); }

.contact__cta {
  margin-top: 2.8rem;
  text-align: center;
  padding: 2.6rem 2rem;
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--gold);
  background: linear-gradient(115deg, #fffdf6, #fdf1dc);
}
.contact__cta h3 { font-size: 1.6rem; margin-bottom: 1.3rem; }
.contact__social-note { margin-top: 1.1rem; font-size: 0.95rem; color: var(--ink-soft); }
.contact__social-note a { color: var(--orange); font-weight: 700; transition: color 0.2s; }
.contact__social-note a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 246, 232, 0.8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 4rem 0 2.5rem;
}
.footer__brand p { font-size: 0.95rem; margin: 1rem 0 1.2rem; max-width: 34ch; }
.footer__brand .brand__text strong { color: #fff; }
.footer__social { display: flex; gap: 0.5rem; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 214, 150, 0.2);
  color: #ffe9c2;
  transition: all 0.25s var(--ease);
}
.footer__social a svg { width: 18px; height: 18px; }
.footer__social a:hover { background: var(--gold); color: #fff; border-color: transparent; transform: translateY(-3px); }

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-2);
  margin-bottom: 1.1rem;
}
.footer__col ul li { margin-bottom: 0.55rem; }
.footer__col ul a { transition: color 0.2s, padding-left 0.2s; }
.footer__col ul a:hover { color: var(--gold-2); padding-left: 5px; }

.footer__contact li { display: flex; align-items: flex-start; gap: 0.6rem; }
.footer__contact svg { width: 17px; height: 17px; flex: none; color: var(--gold-2); margin-top: 3px; }
.footer__contact a:hover { color: var(--gold-2); }

.footer__bottom {
  border-top: 1px solid rgba(255, 214, 150, 0.14);
  padding: 1.2rem 0;
}
.footer__bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.86rem; color: rgba(255, 246, 232, 0.55); }
.footer__heart { color: #ff5d5d; width: 14px; height: 14px; display: inline-block; vertical-align: -2px; }

/* ---------- WhatsApp flutuante (formulário) ---------- */
.wa-widget { position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 100; }

.wa-widget__fab {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa), var(--wa-deep));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-widget__fab:hover { transform: scale(1.08); box-shadow: 0 16px 38px rgba(37, 211, 102, 0.6); }
.wa-widget__fab-icon { width: 32px; height: 32px; }
.wa-widget__close { width: 26px; height: 26px; display: none; }

.wa-widget__ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--wa);
  animation: wa-ping 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.9); opacity: 0; }
}

.wa-widget.is-open .wa-widget__fab-icon { display: none; }
.wa-widget.is-open .wa-widget__close { display: block; }
.wa-widget.is-open .wa-widget__fab { background: linear-gradient(135deg, #e24a2a, #b3341c); box-shadow: 0 12px 30px rgba(226, 74, 42, 0.45); }
.wa-widget.is-open .wa-widget__ping { animation: none; }

.wa-widget__panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(380px, calc(100vw - 2.6rem));
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease), visibility 0.3s;
  border: 1px solid var(--line);
}
.wa-widget.is-open .wa-widget__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
}

.wa-widget__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, #0f4024, #0a2b18);
  color: #fff;
}
.wa-widget__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  padding: 4px;
  flex: none;
}
.wa-widget__head strong { font-size: 1rem; display: block; line-height: 1.25; }
.wa-widget__status { font-size: 0.78rem; color: #a9e6bd; display: flex; align-items: center; gap: 0.35rem; }
.wa-widget__status i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wa);
  display: inline-block;
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.wa-widget__closebtn {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.wa-widget__closebtn:hover { background: rgba(255, 255, 255, 0.15); }

.wa-widget__body { padding: 1.1rem; max-height: min(560px, calc(100vh - 200px)); overflow-y: auto; }
.wa-widget__hello {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  padding: 0.85rem 1rem;
  font-size: 0.93rem;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.wa-widget__chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; }
.wa-chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wa-deep);
  background: #eafaf0;
  border: 1px solid #cdeedb;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  transition: all 0.2s;
}
.wa-chip:hover { background: var(--wa); color: #fff; border-color: var(--wa); transform: translateY(-2px); }

.wa-field { margin-bottom: 0.85rem; }
.wa-field label { display: block; font-size: 0.83rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--ink); }
.wa-field label small { font-weight: 500; color: var(--ink-faint); }
.wa-field input,
.wa-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fffdf8;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.wa-field input:focus,
.wa-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.14);
}
.wa-field.has-error input,
.wa-field.has-error textarea { border-color: #dc2626; box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12); }
.wa-field__error { display: none; font-size: 0.78rem; color: #dc2626; margin-top: 0.3rem; }
.wa-field.has-error .wa-field__error { display: block; }

.wa-widget__direct {
  display: block;
  text-align: center;
  margin-top: 0.9rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wa-deep);
  transition: color 0.2s;
}
.wa-widget__direct:hover { color: var(--gold); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 1.3rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.3s var(--ease);
}
.to-top svg { width: 22px; height: 22px; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Menu grid pop-in ---------- */
.mcard { animation: card-in 0.45s var(--ease) both; }
@keyframes card-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__media { max-width: 460px; margin-inline: auto; }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .faq__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.3rem;
    padding: 5.5rem 1.6rem 2rem;
    background: var(--bg-soft);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.2);
    transform: translateX(105%);
    transition: transform 0.35s var(--ease);
    z-index: 55;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { font-size: 1.1rem; padding: 0.85rem 0.8rem; border-bottom: 1px solid var(--line); }
  .nav__cta { margin: 1rem 0 0; justify-content: center; }
  .nav-toggle { display: flex; position: relative; z-index: 60; }

  .hero__title { max-width: 14ch; }
  .hero__scroll { display: none; }

  .hero { aspect-ratio: 4 / 3; min-height: 92svh; }
  .hero__dots { right: 1.2rem; bottom: 1.4rem; }
}

@media (max-width: 560px) {
  .topbar__hours { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .menu__grid { grid-template-columns: 1fr; }
  .hero__badges { gap: 0.7rem; }
  .hero__badge { flex: 1 1 100%; }
  .hero__actions .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__slide { transition: opacity 0.01s; }
}
