:root {
  --blue: #054594;
  --blue-dark: #08346f;
  --red: #d31e25;
  --red-dark: #ad151b;
  --yellow: #efe508;
  --cream: #fff8ec;
  --cream-2: #f6ead9;
  --text: #202635;
  --muted: #5d6677;
  --line: #e8dccb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 69, 148, .16);
  --radius: 28px;
  --radius-sm: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fffaf2;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}


.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 220, 203, .75);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 12px 0;
}

.brand img {
  width: 150px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--muted);
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.desktop-nav a:hover::after {
  right: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  min-height: 48px;
  padding: 14px 22px;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(211, 30, 37, .24);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 40px rgba(211, 30, 37, .34);
}

.btn-secondary {
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--line);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1px solid rgba(5, 69, 148, .2);
}

.btn-lg {
  min-height: 56px;
  padding: 16px 26px;
  font-size: 1rem;
}

.btn-sm {
  min-height: 42px;
  padding: 10px 18px;
  font-size: .92rem;
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 52px;
  background:
    radial-gradient(circle at 14% 18%, rgba(239, 229, 8, .23), transparent 28%),
    radial-gradient(circle at 90% 16%, rgba(5, 69, 148, .15), transparent 26%),
    linear-gradient(180deg, #fffaf2 0%, #fff5e8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 560px;
  height: 560px;
  background: rgba(211, 30, 37, .08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: 44px;
  align-items: start;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: .83rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(239, 229, 8, .22);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--blue-dark);
  letter-spacing: -.04em;
  line-height: .98;
}

h1 {
  max-width: 960px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.1vw, 4.75rem);
  line-height: 1.02;
}

.hero-title {
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.6vw, 4.1rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  border-radius: 24px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .95) 0%, rgba(255, 246, 229, .92) 100%);
  box-shadow:
    0 20px 46px rgba(5, 69, 148, .10),
    inset 0 1px 0 rgba(255, 255, 255, .85);
  isolation: isolate;
}

.trust-list li::before {
  content: "";
  position: absolute;
  width: 148px;
  height: 148px;
  right: -52px;
  top: -58px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--card-glow) 0%, rgba(255, 255, 255, 0) 68%);
  z-index: -1;
}

.trust-list li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: var(--card-accent);
  box-shadow: 0 8px 20px var(--card-glow);
}

.trust-years {
  --card-accent: var(--yellow);
  --card-glow: rgba(239, 229, 8, .56);
  background:
    radial-gradient(circle at 86% 0%, rgba(239, 229, 8, .32), transparent 44%),
    linear-gradient(145deg, #fffdf4 0%, #fff0d8 100%) !important;
}

.trust-whatsapp {
  --card-accent: #25d366;
  --card-glow: rgba(37, 211, 102, .30);
  background:
    radial-gradient(circle at 86% 0%, rgba(37, 211, 102, .18), transparent 46%),
    linear-gradient(145deg, #ffffff 0%, #effcf5 100%) !important;
}

.trust-urgency {
  --card-accent: var(--red);
  --card-glow: rgba(211, 30, 37, .30);
  background:
    radial-gradient(circle at 86% 0%, rgba(211, 30, 37, .20), transparent 46%),
    linear-gradient(145deg, #fffafa 0%, #fff0ea 100%) !important;
}

.trust-kicker {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(232, 220, 203, .78);
  color: var(--blue-dark);
  font-size: .72rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 0 8px 18px rgba(32, 38, 53, .04);
}

.trust-list strong {
  display: block;
  margin-top: 8px;
  color: var(--red);
  font-size: clamp(1.55rem, 2.15vw, 1.95rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.trust-list span:not(.trust-kicker) {
  display: block;
  max-width: 190px;
  color: var(--blue-dark);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.25;
}

.microcopy {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 248, 236, .90));
  border: 1px solid rgba(232, 220, 203, .95);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--text);
  font-weight: 650;
  font-size: .94rem;
  box-shadow: 0 10px 24px rgba(32, 38, 53, .05);
}

.microcopy strong {
  color: var(--red);
}

.hero-card {
  position: relative;
  min-height: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 140px;
  height: 140px;
  background: rgba(239, 229, 8, .22);
  border-radius: 50%;
  filter: blur(2px);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto auto -70px -70px;
  width: 190px;
  height: 190px;
  background: rgba(5, 69, 148, .07);
  border-radius: 50%;
}

.hero-gallery-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.hero-gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin-bottom: 14px;
}

.gallery-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(5, 69, 148, .08);
  color: var(--blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero-gallery-head p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  text-align: right;
}

.hero-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff8ee 0%, #fff 58%, #fff4dd 100%);
  box-shadow: 0 18px 45px rgba(32, 38, 53, .08);
}

.gallery-track {
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  scroll-snap-align: center;
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
  isolation: isolate;
  background: #f8eee1;
}

.gallery-slide img {
  width: 100%;
  height: 420px;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 92px 22px 22px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(14, 18, 25, .78) 72%, rgba(14, 18, 25, .88) 100%);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.gallery-caption strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 4.2vw, 2.05rem);
  line-height: .95;
  margin-bottom: 8px;
}

.gallery-caption span {
  display: block;
  max-width: 92%;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
}

.gallery-controls {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
}

.gallery-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(5, 69, 148, .10);
  background: #fff;
  color: var(--blue);
  font-size: 1.75rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(32, 38, 53, .10);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.gallery-arrow:hover {
  transform: translateY(-2px);
  background: #fff9ec;
  box-shadow: 0 16px 28px rgba(32, 38, 53, .14);
}

.gallery-dots {
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  overflow: hidden;
  padding: 4px 2px;
}

.gallery-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(5, 69, 148, .18);
  cursor: pointer;
  transition: width .2s ease, background .2s ease, opacity .2s ease;
}

.gallery-dot.is-active {
  width: 28px;
  background: var(--red);
}

.order-box {
  position: relative;
  z-index: 2;
  padding: 26px;
  border-radius: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(5, 69, 148, .09);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.order-box h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.order-box p {
  color: var(--muted);
}

.search-intent {
  padding: 34px 0;
  background: var(--blue);
  color: #fff;
}

.intent-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 40px;
  align-items: center;
}

.search-intent h2 {
  color: #fff;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.search-intent p {
  margin-bottom: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
}

.search-intent .section-kicker {
  color: var(--yellow);
}

.section {
  padding: 84px 0;
}

.section-cream {
  background: var(--cream);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading p,
.split-grid p,
.quote-copy p,
.urgency p,
.region-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.narrow {
  max-width: 640px;
}

.cards {
  display: grid;
  gap: 18px;
}

.product-cards {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 45px rgba(32, 38, 53, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 69, 148, .24);
  box-shadow: 0 22px 60px rgba(5, 69, 148, .12);
}

.product-card.featured {
  border-color: rgba(211, 30, 37, .28);
  background: linear-gradient(180deg, #fff 0%, #fff7ee 100%);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(239, 229, 8, .28);
  font-size: 1.65rem;
}

.product-card p {
  min-height: 84px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  margin-left: 7px;
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.split-grid {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 54px;
  align-items: start;
}

.quote-box {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border-left: 6px solid var(--red);
  box-shadow: 0 16px 45px rgba(32, 38, 53, .06);
}

.quote-box p {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

.quote-box span {
  color: var(--muted);
  font-weight: 700;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.proof-item {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(32, 38, 53, .05);
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.25rem;
}

.proof-item span {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(32, 38, 53, .05);
}

.step span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-blue {
  background:
    radial-gradient(circle at 10% 20%, rgba(239, 229, 8, .16), transparent 24%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
}

.section-blue h2,
.section-blue p {
  color: #fff;
}

.section-blue p {
  opacity: .82;
}

.section-kicker-light {
  color: var(--yellow);
}

.region-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 42px;
  align-items: center;
}

.region-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.region-list span {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
}

.region-list span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  font-size: .9rem;
}

.final-cta {
  background: #fffaf2;
}

.quote-grid {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 46px;
  align-items: start;
}

.contact-note {
  margin-top: 28px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(5, 69, 148, .08);
  color: var(--blue-dark);
  border: 1px solid rgba(5, 69, 148, .12);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.field-full,
.quote-form .btn,
.form-help {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: .92rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8ccbc;
  border-radius: 16px;
  padding: 14px 15px;
  background: #fffdf9;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(5, 69, 148, .62);
  box-shadow: 0 0 0 4px rgba(5, 69, 148, .1);
  background: #fff;
}

.field textarea {
  resize: vertical;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  text-align: center;
}

.site-footer {
  padding: 42px 0 94px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-grid img {
  width: 132px;
  margin-bottom: 12px;
}

.footer-grid p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--blue);
  font-weight: 800;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .header-grid {
    grid-template-columns: auto 1fr;
  }

  .header-grid .btn {
    justify-self: end;
  }

  .hero-grid,
  .intent-grid,
  .split-grid,
  .region-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .product-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header .btn {
    display: none;
  }

  .brand img {
    width: 124px;
  }

  .hero {
    padding: 44px 0 34px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-list,
  .product-cards,
  .proof-grid,
  .steps,
  .region-list,
  .quote-form,
  .urgency-grid {
    grid-template-columns: 1fr;
  }

  .product-card p {
    min-height: auto;
  }

  .section {
    padding: 60px 0;
  }

  .hero-card {
    padding: 18px;
    border-radius: 32px;
  }

  .hero-gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-gallery-head p {
    text-align: left;
  }

  .gallery-slide {
    flex-basis: 100%;
    min-height: 320px;
  }

  .gallery-slide img {
    min-height: 320px;
  }

  .quote-form {
    padding: 20px;
    border-radius: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .mobile-sticky {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}





/* Galeria: uma foto por vez e sem deslocar a página */
.hero-gallery, .gallery-track, .gallery-slide {
  box-sizing: border-box;
}

@media (max-width: 760px) {
  .hero-gallery {
    border-radius: 24px;
  }

  .gallery-slide {
    flex: 0 0 100%;
    flex-basis: 100%;
    min-width: 100%;
    border-radius: 24px;
    min-height: 430px;
  }

  .gallery-slide img {
    height: 430px;
    min-height: 430px;
  }

  .gallery-caption {
    padding: 96px 18px 20px;
  }

  .gallery-caption strong {
    font-size: 1.6rem;
  }

  .gallery-caption span {
    font-size: .95rem;
  }

  .gallery-dots {
    gap: 6px;
  }

  .gallery-dot {
    width: 8px;
    height: 8px;
  }

  .gallery-dot.is-active {
    width: 24px;
  }
}

@media (min-width: 761px) {
  .gallery-slide {
    flex: 0 0 100%;
    flex-basis: 100%;
    min-width: 100%;
  }
}

/* Tema marrom escuro premium aplicado em toda a landing page */
:root {
  --blue: #f6d18f;
  --blue-dark: #fff1d6;
  --red: #d9262e;
  --red-dark: #a9151c;
  --yellow: #f7c65b;
  --cream: #4a2a1f;
  --cream-2: #5a3325;
  --text: #fff3df;
  --muted: #e7c9a5;
  --line: rgba(255, 226, 183, .20);
  --white: #fff8ec;
  --shadow: 0 28px 80px rgba(18, 8, 3, .38);
}

html,
body {
  background: #3a2118 !important;
  color: var(--text) !important;
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(247, 198, 91, .18), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(217, 38, 46, .12), transparent 25%),
    linear-gradient(180deg, #3a2118 0%, #2a1711 48%, #3f241a 100%) !important;
}

.site-header {
  background: rgba(49, 27, 20, .94) !important;
  border-bottom: 1px solid rgba(255, 226, 183, .16) !important;
  box-shadow: 0 12px 38px rgba(18, 8, 3, .24);
}

.desktop-nav {
  color: #f0d1ad !important;
}

.desktop-nav a:hover,
.footer-links,
.btn-secondary,
.btn-ghost {
  color: #ffe6bd !important;
}

.hero,
.section,
.section-cream,
.final-cta,
.site-footer,
.search-intent,
.section-blue {
  background:
    radial-gradient(circle at 12% 20%, rgba(247, 198, 91, .18), transparent 28%),
    linear-gradient(135deg, #2b1710 0%, #5b3324 100%) !important;
}

.hero::before {
  background: rgba(247, 198, 91, .13) !important;
}

h1,
h2,
h3,
.hero-title,
.search-intent h2,
.section-blue h2,
.section-blue p,
.section-kicker,
.eyebrow,
.gallery-kicker,
.badge,
.field label,
.quote-box p,
.proof-item strong,
.contact-note {
  color: #fff1d6 !important;
}

.hero-subtitle,
.section-heading p,
.split-grid p,
.quote-copy p,
.urgency p,
.region-grid p,
.product-card p,
.step p,
.proof-item span,
.quote-box span,
.order-box p,
.form-help,
.footer-grid p,
.hero-gallery-head p {
  color: #e7c9a5 !important;
}

.eyebrow,
.section-kicker,
.section-kicker-light,
.search-intent .section-kicker {
  color: #f7c65b !important;
}

.btn-primary {
  background: linear-gradient(135deg, #e32931 0%, #b8141c 100%) !important;
  color: #fff !important;
  box-shadow: 0 18px 44px rgba(217, 38, 46, .35), 0 0 0 1px rgba(255, 226, 183, .14) inset !important;
}

.btn-secondary,
.btn-ghost {
  background: rgba(255, 241, 214, .08) !important;
  border: 1px solid rgba(255, 226, 183, .26) !important;
  box-shadow: 0 14px 34px rgba(18, 8, 3, .18);
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: rgba(255, 241, 214, .14) !important;
}

.hero-card,
.order-box,
.card,
.step,
.proof-item,
.quote-box,
.quote-form,
.microcopy,
.contact-note {
  background:
    linear-gradient(145deg, rgba(92, 52, 37, .96) 0%, rgba(55, 31, 23, .98) 100%) !important;
  border: 1px solid rgba(255, 226, 183, .20) !important;
  box-shadow: 0 24px 70px rgba(18, 8, 3, .34) !important;
  color: #fff3df !important;
}

.hero-card::before {
  background: rgba(247, 198, 91, .20) !important;
}

.hero-card::after {
  background: rgba(255, 241, 214, .08) !important;
}

.trust-list li,
.trust-years,
.trust-whatsapp,
.trust-urgency,
.product-card.featured {
  background:
    radial-gradient(circle at 86% 0%, rgba(247, 198, 91, .20), transparent 44%),
    linear-gradient(145deg, #5d3527 0%, #3b2118 100%) !important;
  border: 1px solid rgba(255, 226, 183, .20) !important;
  box-shadow: 0 22px 58px rgba(18, 8, 3, .32) !important;
}

.trust-kicker,
.badge,
.gallery-kicker {
  background: rgba(255, 241, 214, .12) !important;
  border: 1px solid rgba(255, 226, 183, .18) !important;
  color: #f7c65b !important;
}

.trust-list strong,
.text-link,
.microcopy strong {
  color: #ff5a63 !important;
}

.trust-list span:not(.trust-kicker),
.microcopy {
  color: #ffe6bd !important;
}

.card-icon,
.step span,
.region-list span::before,
.dot {
  background: #f7c65b !important;
  color: #3a2118 !important;
  box-shadow: 0 0 0 4px rgba(247, 198, 91, .18);
}

.hero-gallery,
.gallery-slide {
  background: linear-gradient(135deg, #2f1a13 0%, #5c3425 100%) !important;
  box-shadow: 0 24px 70px rgba(18, 8, 3, .38) !important;
}

.gallery-arrow {
  background: #fff1d6 !important;
  color: #3a2118 !important;
  border: 1px solid rgba(255, 226, 183, .28) !important;
}

.gallery-dot {
  background: rgba(255, 226, 183, .32) !important;
}

.gallery-dot.is-active {
  background: #ff4d55 !important;
}

.region-list span {
  background: rgba(255, 241, 214, .10) !important;
  border: 1px solid rgba(255, 226, 183, .22) !important;
  color: #fff1d6 !important;
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 241, 214, .10) !important;
  border: 1px solid rgba(255, 226, 183, .26) !important;
  color: #fff3df !important;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(231, 201, 165, .72) !important;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: rgba(255, 241, 214, .16) !important;
  border-color: rgba(247, 198, 91, .70) !important;
  box-shadow: 0 0 0 4px rgba(247, 198, 91, .12) !important;
}

.mobile-sticky {
  background: rgba(49, 27, 20, .95) !important;
  border-top: 1px solid rgba(255, 226, 183, .18) !important;
}

/* Ajuste solicitado: seções de intenção e regiões em branco para contrastar com o fundo marrom */
.search-intent,
section#regioes.section-blue {
  background: #fffaf2 !important;
  color: #3a2118 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.search-intent .container,
section#regioes.section-blue .container {
  background: linear-gradient(135deg, #ffffff 0%, #fff8ec 100%) !important;
  border: 1px solid rgba(92, 52, 37, .14) !important;
  border-radius: 28px !important;
  box-shadow: 0 26px 70px rgba(18, 8, 3, .18) !important;
  padding: clamp(34px, 5vw, 64px) !important;
}

.search-intent h2,
section#regioes.section-blue h2 {
  color: #4a2a1f !important;
  text-shadow: none !important;
}

.search-intent p,
section#regioes.section-blue p,
section#regioes .region-grid p {
  color: #594238 !important;
  opacity: 1 !important;
}

.search-intent .section-kicker,
section#regioes .section-kicker,
section#regioes .section-kicker-light {
  color: #c9892f !important;
  text-shadow: none !important;
}

section#regioes .region-list span {
  background: #ffffff !important;
  border: 1px solid rgba(92, 52, 37, .16) !important;
  color: #4a2a1f !important;
  box-shadow: 0 14px 32px rgba(18, 8, 3, .08) !important;
}

section#regioes .region-list span::before {
  background: linear-gradient(135deg, #f7c65b 0%, #d89532 100%) !important;
  color: #3a2118 !important;
  box-shadow: 0 0 0 5px rgba(216, 149, 50, .16) !important;
}

@media (max-width: 720px) {
  .search-intent .container,
  section#regioes.section-blue .container {
    padding: 30px 22px !important;
    border-radius: 22px !important;
  }
}


/* Ajuste solicitado: seção "Por que escolher a Mine?" em versão clara */
section#diferenciais.section-cream {
  background:
    radial-gradient(circle at 12% 10%, rgba(239, 229, 8, .16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(211, 30, 37, .08), transparent 26%),
    linear-gradient(180deg, #fff8ec 0%, #ffffff 62%, #fff8ec 100%) !important;
  color: #202635 !important;
}

section#diferenciais .section-kicker {
  color: #d31e25 !important;
}

section#diferenciais h2,
section#diferenciais .quote-box p,
section#diferenciais .proof-item strong {
  color: #08346f !important;
}

section#diferenciais p,
section#diferenciais .quote-box span,
section#diferenciais .proof-item span {
  color: #5d6677 !important;
}

section#diferenciais .quote-box {
  background:
    linear-gradient(180deg, #ffffff 0%, #fff8ec 100%) !important;
  border: 1px solid #e8dccb !important;
  border-left: 6px solid #d31e25 !important;
  box-shadow: 0 18px 48px rgba(5, 69, 148, .10) !important;
  color: #202635 !important;
}

section#diferenciais .proof-item {
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf1 100%) !important;
  border: 1px solid #e8dccb !important;
  box-shadow: 0 16px 45px rgba(5, 69, 148, .08) !important;
  color: #202635 !important;
}

section#diferenciais .proof-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(5, 69, 148, .12) !important;
}

/* Ajuste v3 solicitado: seção "Por que escolher a Mine?" no mesmo visual do card claro de intenção */
section#diferenciais.section-cream {
  background: #fffaf2 !important;
  padding: clamp(38px, 5vw, 74px) 0 !important;
}

section#diferenciais > .container.split-grid {
  max-width: var(--container) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: .86fr 1fr !important;
  gap: clamp(34px, 6vw, 64px) !important;
  align-items: center !important;
  background: linear-gradient(135deg, #ffffff 0%, #fffaf2 100%) !important;
  border: 1px solid rgba(92, 52, 37, .14) !important;
  border-radius: 28px !important;
  box-shadow: 0 26px 70px rgba(18, 8, 3, .12) !important;
  padding: clamp(38px, 5vw, 64px) !important;
}

section#diferenciais .section-kicker {
  display: inline-block !important;
  margin-bottom: 18px !important;
  color: #c8791b !important;
  font-size: .82rem !important;
  font-weight: 900 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

section#diferenciais h2 {
  max-width: 560px !important;
  margin-bottom: 18px !important;
  color: #3a1f16 !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(2.75rem, 4.2vw, 4.55rem) !important;
  line-height: .94 !important;
  letter-spacing: -.045em !important;
  text-shadow: none !important;
}

section#diferenciais .split-grid > div:first-child > p {
  max-width: 600px !important;
  color: #5a3b31 !important;
  font-size: 1.08rem !important;
  line-height: 1.58 !important;
}

section#diferenciais .quote-box {
  margin-top: 30px !important;
  max-width: 520px !important;
  padding: 24px 26px !important;
  background: rgba(255, 250, 242, .76) !important;
  border: 1px solid rgba(92, 52, 37, .14) !important;
  border-left: 0 !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 48px rgba(18, 8, 3, .08) !important;
}

section#diferenciais .quote-box p {
  margin-bottom: 10px !important;
  color: #4a2a1f !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(1.35rem, 2vw, 1.7rem) !important;
  line-height: 1.16 !important;
  letter-spacing: -.02em !important;
}

section#diferenciais .quote-box span {
  color: #8b5a24 !important;
  font-weight: 800 !important;
}

section#diferenciais .proof-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

section#diferenciais .proof-item {
  min-height: 164px !important;
  padding: 26px 24px !important;
  background: rgba(255, 255, 255, .68) !important;
  border: 1px solid rgba(92, 52, 37, .14) !important;
  border-radius: 24px !important;
  box-shadow: 0 14px 38px rgba(18, 8, 3, .06) !important;
  color: #3a1f16 !important;
}

section#diferenciais .proof-item:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 52px rgba(18, 8, 3, .10) !important;
}

section#diferenciais .proof-item strong {
  display: block !important;
  margin-bottom: 10px !important;
  color: #3a1f16 !important;
  font-size: 1.18rem !important;
  font-weight: 900 !important;
}

section#diferenciais .proof-item span {
  color: #674a3f !important;
  font-size: .98rem !important;
  line-height: 1.55 !important;
}

@media (max-width: 980px) {
  section#diferenciais > .container.split-grid {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  section#diferenciais h2 {
    max-width: 720px !important;
    font-size: clamp(2.45rem, 8vw, 3.8rem) !important;
  }

  section#diferenciais .quote-box {
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  section#diferenciais.section-cream {
    padding: 28px 0 !important;
  }

  section#diferenciais > .container.split-grid {
    width: calc(100% - 28px) !important;
    padding: 30px 22px !important;
    border-radius: 24px !important;
    gap: 28px !important;
  }

  section#diferenciais h2 {
    font-size: clamp(2.1rem, 11vw, 3rem) !important;
    line-height: .98 !important;
  }

  section#diferenciais .proof-grid {
    grid-template-columns: 1fr !important;
  }

  section#diferenciais .proof-item {
    min-height: auto !important;
  }
}



/* ==============================
   Cardápios - seção refeita
   ============================== */
.menu-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(126, 78, 45, .42), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(215, 124, 28, .20), transparent 30%),
    linear-gradient(135deg, #3a1b12 0%, #5a2a1d 46%, #442015 100%);
  color: #fff7e8;
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 248, 236, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 236, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 92%);
}

.menu-section > .container {
  position: relative;
  z-index: 1;
}

.menu-hero {
  max-width: 940px;
  margin: 0 auto 34px;
  text-align: center;
}

.menu-kicker {
  color: #ffc846;
}

.menu-hero h2 {
  max-width: 920px;
  margin: 0 auto 16px;
  color: #fff4df;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.45rem, 5.6vw, 5.05rem);
  line-height: .92;
  letter-spacing: -.055em;
}

.menu-hero p {
  max-width: 790px;
  margin: 0 auto;
  color: rgba(255, 244, 223, .88);
  font-size: 1.08rem;
  line-height: 1.7;
}

.menu-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.menu-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 248, 236, .22);
  border-radius: 999px;
  background: rgba(255, 248, 236, .09);
  color: #fff4df;
  font-weight: 900;
  font-size: .86rem;
}

.menu-trust-row span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffc846;
  color: #3a1b12;
  font-size: .72rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.menu-card {
  --accent: #d37c1c;
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 248, 236, .20);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 251, 243, .98) 0%, rgba(255, 245, 228, .94) 100%);
  color: #3a1f16;
  box-shadow: 0 24px 70px rgba(18, 9, 5, .20);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  isolation: isolate;
  overflow: hidden;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--accent);
}

.menu-card::after {
  content: "";
  position: absolute;
  right: 20px;
  top: -2px;
  width: 42px;
  height: 70px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
  opacity: .92;
  z-index: -1;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 248, 236, .38);
  box-shadow: 0 30px 90px rgba(18, 9, 5, .30);
}

.menu-card--cake { --accent: #ef5061; }
.menu-card--sweet { --accent: #b7289d; }
.menu-card--savory { --accent: #d67b12; }
.menu-card--coffee { --accent: #8b4f24; }
.menu-card--metro { --accent: #7f9a16; }
.menu-card--pie { --accent: #6b4a2d; }

.menu-card.is-featured {
  background:
    radial-gradient(circle at 88% 4%, rgba(255, 200, 70, .30), transparent 28%),
    linear-gradient(180deg, rgba(255, 251, 243, .99) 0%, rgba(255, 240, 214, .96) 100%);
}

.menu-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.menu-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 5px solid color-mix(in srgb, var(--accent) 45%, #fff);
  border-radius: 21px;
  background: #ffd15f;
  font-size: 1.7rem;
  box-shadow: inset 0 -8px 18px rgba(58, 31, 22, .13);
}

.menu-card__badge {
  max-width: 145px;
  padding: 7px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: color-mix(in srgb, var(--accent) 76%, #31170e);
  font-weight: 950;
  font-size: .74rem;
  text-align: right;
}

.menu-card h3 {
  margin-bottom: 10px;
  color: #3a1b12;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.menu-card p {
  margin-bottom: 16px;
  color: #5f4135;
  line-height: 1.55;
}

.menu-card ul {
  display: grid;
  gap: 8px;
  min-height: 94px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.menu-card li {
  position: relative;
  padding-left: 20px;
  color: #4d3025;
  font-weight: 800;
  font-size: .95rem;
}

.menu-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.menu-card__action {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: #d31e25;
  color: #fff;
  font-weight: 950;
  font-size: .98rem;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(211, 30, 37, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.menu-card__action:hover {
  transform: translateY(-2px);
  background: #b9161d;
  box-shadow: 0 18px 38px rgba(211, 30, 37, .30);
}

.menu-bottom-note {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 248, 236, .20);
  border-radius: 22px;
  background: rgba(255, 248, 236, .09);
  color: rgba(255, 244, 223, .90);
  text-align: center;
}

.menu-bottom-note strong {
  color: #ffc846;
}

.menu-modal[hidden] {
  display: none !important;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
}

.menu-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 10, 6, .72);
  backdrop-filter: blur(8px);
}

.menu-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(86vh, 920px);
  overflow: auto;
  border: 1px solid rgba(255, 248, 236, .30);
  border-radius: 32px;
  background: #fff8ec;
  color: #3a1b12;
  box-shadow: 0 30px 120px rgba(0, 0, 0, .45);
}

.menu-modal__close {
  position: sticky;
  top: 14px;
  left: 100%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 14px 14px -60px auto;
  border: 0;
  border-radius: 999px;
  background: rgba(58, 27, 18, .90);
  color: #fff8ec;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.menu-modal__header {
  --modal-accent: #d67b12;
  padding: 38px 42px 34px;
  background:
    radial-gradient(circle at 90% 0%, color-mix(in srgb, var(--modal-accent) 36%, transparent), transparent 34%),
    linear-gradient(135deg, #4a2116 0%, #612c1e 100%);
  color: #fff4df;
}

.menu-modal__header--cake { --modal-accent: #ef5061; }
.menu-modal__header--sweet { --modal-accent: #b7289d; }
.menu-modal__header--savory { --modal-accent: #d67b12; }
.menu-modal__header--coffee { --modal-accent: #8b4f24; }
.menu-modal__header--metro { --modal-accent: #7f9a16; }
.menu-modal__header--pie { --modal-accent: #6b4a2d; }

.menu-modal__header span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #ffc846;
  font-weight: 950;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-modal__header h3 {
  max-width: 800px;
  margin-bottom: 12px;
  color: #fff4df;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.menu-modal__header p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 244, 223, .86);
  font-size: 1.02rem;
  line-height: 1.6;
}

.menu-modal__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(rgba(106, 67, 43, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 67, 43, .035) 1px, transparent 1px),
    #fff8ec;
  background-size: 38px 38px;
}

.menu-page {
  padding: 24px;
  border: 1px solid #ead7bf;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 10%, rgba(151, 106, 68, .08), transparent 32%),
    #fffaf1;
  box-shadow: 0 16px 36px rgba(58, 31, 22, .07);
}

.menu-page--wide {
  grid-column: 1 / -1;
}

.menu-page h4 {
  margin-bottom: 16px;
  color: #472318;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.menu-price-grid {
  display: grid;
  gap: 8px;
}

.menu-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(101, 61, 39, .24);
  color: #5a382b;
}

.menu-price-row:last-child {
  border-bottom: 0;
}

.menu-price-row span {
  min-width: 0;
}

.menu-price-row strong {
  flex: 0 0 auto;
  color: #b24d19;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.menu-price-row--highlight {
  margin: 16px 0 4px;
  padding: 14px 16px;
  border: 0;
  border-radius: 18px;
  background: #fff0d7;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-columns li {
  position: relative;
  padding-left: 18px;
  color: #5a382b;
  font-weight: 850;
}

.menu-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d67b12;
}

.menu-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.menu-extra h5 {
  width: 100%;
  margin: 0 0 2px;
  color: #472318;
  font-size: 1rem;
}

.menu-extra span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff0d7;
  color: #5a382b;
  font-weight: 850;
  font-size: .9rem;
}

.menu-small-note {
  margin: 14px 0 0;
  color: #6a493b;
  font-size: .94rem;
}

.menu-modal__footer {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid #ead7bf;
  background: rgba(255, 248, 236, .94);
  backdrop-filter: blur(10px);
}

.menu-modal__footer p {
  margin: 0;
  color: #4a2a1f;
  font-weight: 900;
}

body.menu-modal-open {
  overflow: hidden;
}

@media (max-width: 1020px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-modal__body {
    grid-template-columns: 1fr;
  }

  .menu-page--wide {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .menu-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .menu-hero {
    text-align: left;
  }

  .menu-hero h2,
  .menu-hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .menu-trust-row {
    justify-content: flex-start;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card {
    border-radius: 24px;
    padding: 22px;
  }

  .menu-card ul {
    min-height: auto;
  }

  .menu-modal {
    padding: 0;
    align-items: end;
  }

  .menu-modal__dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 28px 28px 0 0;
  }

  .menu-modal__header {
    padding: 34px 22px 28px;
  }

  .menu-modal__body {
    padding: 14px;
    gap: 14px;
  }

  .menu-page {
    padding: 18px;
    border-radius: 20px;
  }

  .menu-price-row {
    display: grid;
    gap: 4px;
  }

  .menu-price-row strong {
    text-align: left;
    white-space: normal;
  }

  .menu-columns {
    grid-template-columns: 1fr;
  }

  .menu-modal__footer {
    display: grid;
    padding: 14px;
  }

  .menu-modal__footer .btn {
    width: 100%;
  }
}


/* Header refinado - versão clara */
.site-header {
  background: rgba(255, 250, 242, 0.96) !important;
  border-bottom: 1px solid rgba(232, 220, 203, 0.92) !important;
  box-shadow: 0 12px 34px rgba(64, 39, 28, 0.08) !important;
  backdrop-filter: blur(16px);
}

.header-grid {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 152px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  padding: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(232, 220, 203, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(84, 55, 41, 0.08);
  color: #5f4335 !important;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #5f4335 !important;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.desktop-nav a::after {
  display: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #3e271d !important;
  background: linear-gradient(180deg, #fffefc 0%, #f8efe4 100%);
  box-shadow: inset 0 0 0 1px rgba(232, 220, 203, 0.95), 0 8px 18px rgba(84, 55, 41, 0.08);
  outline: none;
  transform: translateY(-1px);
}

@media (max-width: 1040px) {
  .header-grid {
    display: grid !important;
    grid-template-columns: auto 1fr;
  }

  .desktop-nav {
    display: none;
  }
}


/* Ajuste final: abas centralizadas no centro real da página */
@media (min-width: 1041px) {
  .site-header .header-grid {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    min-height: 118px;
  }

  .site-header .brand {
    position: relative;
    z-index: 2;
  }

  .site-header .desktop-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0 !important;
    width: max-content;
    max-width: calc(100vw - 520px);
    z-index: 1;
  }
}

@media (max-width: 1180px) and (min-width: 1041px) {
  .site-header .brand img {
    width: 136px;
  }

  .site-header .desktop-nav {
    max-width: calc(100vw - 360px);
    gap: 4px;
  }

  .site-header .desktop-nav a {
    padding: 0 14px;
    font-size: 0.9rem;
  }
}


/* Ajuste após remoção dos cards de confiança do hero */
.hero-copy .microcopy {
  margin-top: 18px;
}



/* Cards de cardápio com fotos reais - ajuste solicitado */
.menu-grid--photo {
  align-items: stretch;
  gap: clamp(18px, 2vw, 26px) !important;
}

.menu-grid--photo .menu-card {
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 560px;
  border-radius: 30px !important;
  background: linear-gradient(180deg, #fffaf2 0%, #fff4e6 100%) !important;
  border: 1px solid rgba(232, 220, 203, 0.88) !important;
  color: #442418 !important;
  box-shadow: 0 24px 70px rgba(23, 10, 6, 0.24), 0 1px 0 rgba(255,255,255,.75) inset !important;
}

.menu-grid--photo .menu-card::before,
.menu-grid--photo .menu-card::after {
  display: none !important;
}

.menu-grid--photo .menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 248, 236, .72) !important;
  box-shadow: 0 34px 88px rgba(23, 10, 6, 0.34), 0 1px 0 rgba(255,255,255,.84) inset !important;
}

.menu-card__photo {
  position: relative;
  height: 212px;
  overflow: hidden;
  background: #efe1cf;
}

.menu-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(40, 18, 9, 0.02) 0%, rgba(40, 18, 9, 0.12) 58%, rgba(40, 18, 9, 0.42) 100%);
  pointer-events: none;
}

.menu-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .45s ease;
}

.menu-grid--photo .menu-card:hover .menu-card__photo img {
  transform: scale(1.07);
}

.menu-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 26px;
}

.menu-card__eyebrow {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  margin: -44px 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(232, 220, 203, 0.92);
  color: var(--accent, #d37c1c);
  font-size: .76rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
  box-shadow: 0 14px 32px rgba(33, 17, 9, .16);
  z-index: 1;
}

.menu-grid--photo .menu-card h3 {
  color: #3b2117 !important;
  font-size: clamp(1.42rem, 2vw, 1.82rem) !important;
  line-height: 1.02 !important;
  margin: 0 0 10px !important;
  letter-spacing: -.035em;
}

.menu-grid--photo .menu-card p {
  color: #6d4631 !important;
  font-size: .98rem;
  line-height: 1.55;
  margin: 0 0 14px !important;
}

.menu-grid--photo .menu-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 22px !important;
  padding: 0 !important;
}

.menu-grid--photo .menu-card li {
  position: relative;
  padding-left: 20px;
  color: #3f2519 !important;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.35;
}

.menu-grid--photo .menu-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent, #d37c1c);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent, #d37c1c) 13%, transparent);
}

.menu-grid--photo .menu-card__action {
  width: 100%;
  min-height: 50px;
  margin-top: auto !important;
  border-radius: 999px;
  background: #d91f2a;
  box-shadow: 0 15px 30px rgba(217, 31, 42, .22);
}

.menu-grid--photo .menu-card__action:hover {
  background: #b9161d;
  box-shadow: 0 18px 38px rgba(217, 31, 42, .30);
}

.menu-card--cake { --accent: #f05a6b; }
.menu-card--sweet { --accent: #bd2ba6; }
.menu-card--savory { --accent: #d47a13; }
.menu-card--coffee { --accent: #8f5b2e; }
.menu-card--metro { --accent: #789719; }
.menu-card--pie { --accent: #71523a; }

@media (max-width: 1100px) {
  .menu-grid--photo .menu-card {
    min-height: 540px;
  }

  .menu-card__photo {
    height: 198px;
  }
}

@media (max-width: 760px) {
  .menu-grid--photo {
    grid-template-columns: 1fr !important;
  }

  .menu-grid--photo .menu-card {
    min-height: auto;
    border-radius: 26px !important;
  }

  .menu-card__photo {
    height: 224px;
  }

  .menu-card__body {
    padding: 20px 20px 22px;
  }

  .menu-card__eyebrow {
    margin-top: -40px;
  }
}



/* Ajuste visual solicitado: seção de história com foto da fachada e prova de confiança */
.intent-grid--story {
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: flex-start;
}

.intent-copy--story {
  max-width: 560px;
  align-self: flex-start;
  padding-top: clamp(8px, 1vw, 14px);
}

.intent-story-text {
  margin-top: 18px !important;
  max-width: 520px;
  color: #6d4f43 !important;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.75;
}

.intent-visual--story {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(247, 198, 91, .28), transparent 30%),
    radial-gradient(circle at 86% 86%, rgba(217, 31, 42, .10), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 242, .98), rgba(255, 241, 221, .82));
  border: 1px solid rgba(92, 52, 37, .12);
  border-radius: 28px;
  padding: clamp(20px, 2.5vw, 28px);
  box-shadow: 0 22px 52px rgba(72, 38, 26, .12);
}

.intent-visual--story::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(92, 52, 37, .08);
  pointer-events: none;
}

.intent-story-photo {
  position: relative;
  margin: 0 0 18px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(72, 38, 26, .14);
}

.intent-story-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.intent-story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46, 24, 18, .82), rgba(46, 24, 18, .05) 58%);
}

.intent-story-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 7px;
  color: #fff7eb;
}

.story-photo-kicker {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 247, 235, .16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 247, 235, .22);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.intent-story-photo figcaption strong {
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  line-height: 1.18;
  max-width: 26ch;
}

.intent-story-summary {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(92, 52, 37, .1);
  box-shadow: 0 12px 28px rgba(72, 38, 26, .07);
}

.intent-story-summary p {
  margin: 0 !important;
  color: #5b3a2c !important;
  font-size: .97rem;
  line-height: 1.65;
}

.intent-story-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.story-highlight {
  position: relative;
  overflow: hidden;
  min-height: 146px;
  padding: 18px 16px 16px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 248, 238, .78));
  border: 1px solid rgba(92, 52, 37, .12);
  box-shadow: 0 14px 30px rgba(72, 38, 26, .09);
}

.story-highlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #f7c65b, #d91f2a);
  opacity: .82;
}

.story-highlight::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  right: -44px;
  top: -44px;
  border-radius: 999px;
  background: rgba(247, 198, 91, .18);
}

.story-highlight span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #fff2cf;
  color: #4a2a1f;
  border: 1px solid rgba(92, 52, 37, .1);
  box-shadow: 0 10px 18px rgba(72, 38, 26, .08);
  font-weight: 900;
  font-size: 1rem;
}

.story-highlight strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #4a2a1f;
  font-size: clamp(.95rem, 1.1vw, 1.04rem);
  line-height: 1.15;
  margin-bottom: 7px;
  max-width: 15ch;
}

.story-highlight small {
  position: relative;
  z-index: 1;
  display: block;
  color: #6f5144;
  font-size: .85rem;
  line-height: 1.4;
}

.story-highlight:nth-child(2) span {
  background: #fff7e7;
}

.story-highlight:nth-child(3) span {
  background: #f7f0ff;
}

.story-highlight:nth-child(4) span {
  background: #fff0df;
}

.intent-cta {
  margin-top: 18px;
  width: fit-content;
}

@media (max-width: 1040px) {
  .intent-grid--story {
    grid-template-columns: 1fr;
  }

  .intent-copy--story {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .intent-story-highlights {
    grid-template-columns: 1fr;
  }

  .intent-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Ajuste solicitado: seção de diferenciais orientada para Google Search + botão flutuante de WhatsApp */
section#diferenciais > .container.search-proof-grid {
  align-items: start !important;
}

section#diferenciais .search-proof-copy {
  display: grid;
  gap: 0;
}

section#diferenciais .search-proof-copy > p {
  max-width: 610px !important;
}

section#diferenciais .proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

section#diferenciais .proof-badges span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 242, .95);
  border: 1px solid rgba(92, 52, 37, .14);
  color: #764b20;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(18, 8, 3, .05);
}

section#diferenciais .proof-panel {
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(247, 198, 91, .24), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,248,236,.92));
  border: 1px solid rgba(92, 52, 37, .14);
  box-shadow: 0 18px 50px rgba(18, 8, 3, .08);
}

section#diferenciais .proof-panel__header {
  margin-bottom: 18px;
  display: grid;
  gap: 6px;
}

section#diferenciais .proof-panel__header strong {
  color: #3a1f16;
  font-size: 1.25rem;
  font-weight: 900;
}

section#diferenciais .proof-panel__header span {
  color: #7a5a4b;
  font-size: .95rem;
}

section#diferenciais .proof-grid--visual {
  margin-top: 0;
}

section#diferenciais .proof-grid--visual .proof-item {
  position: relative;
  overflow: hidden;
  min-height: 168px !important;
  padding-top: 58px !important;
}

section#diferenciais .proof-grid--visual .proof-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #f2a93e, #e81b25);
}

section#diferenciais .proof-grid--visual .proof-item::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(245, 227, 186, .6);
}

section#diferenciais .proof-grid--visual .proof-item em {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 247, 235, .92);
  border: 1px solid rgba(92, 52, 37, .12);
  color: #70421b;
  font-style: normal;
  font-weight: 900;
  font-size: .9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 4px solid #20b455;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 52px rgba(0,0,0,.22);
}

.floating-whatsapp img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

@media (max-width: 980px) {
  section#diferenciais .proof-panel {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  section#diferenciais .proof-badges {
    gap: 8px;
  }

  section#diferenciais .proof-badges span {
    width: 100%;
    justify-content: center;
  }

  section#diferenciais .proof-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .floating-whatsapp {
    width: 62px;
    height: 62px;
    right: 14px;
    bottom: 84px;
  }

  .floating-whatsapp img {
    width: 34px;
    height: 34px;
  }
}


/* Seção de prova social: avaliações de clientes no Google */
section#diferenciais.reviews-section {
  position: relative;
  overflow: hidden;
}

section#diferenciais.reviews-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 198, 91, .20), transparent 68%);
  pointer-events: none;
}

section#diferenciais .reviews-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
}

section#diferenciais .reviews-intro {
  max-width: 620px;
}

section#diferenciais .reviews-intro h2 {
  max-width: 10.8ch;
  margin-top: 16px;
  font-size: clamp(2.9rem, 5.7vw, 5.7rem);
  line-height: .9;
  letter-spacing: -.055em;
}

section#diferenciais .reviews-intro p {
  max-width: 560px;
  margin-top: 22px !important;
  color: #5f3f32 !important;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.7;
}

section#diferenciais .reviews-score-card {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 246, 232, .92));
  border: 1px solid rgba(92, 52, 37, .13);
  box-shadow: 0 18px 42px rgba(18, 8, 3, .08);
}

section#diferenciais .reviews-stars {
  color: #f5a400;
  font-size: 1.05rem;
  letter-spacing: .09em;
  line-height: 1;
  white-space: nowrap;
}

section#diferenciais .reviews-score-card strong {
  display: block;
  margin-top: 12px;
  color: #3b1f16;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.15;
}

section#diferenciais .reviews-score-card span {
  display: block;
  margin-top: 8px;
  color: #835f50;
  font-size: .94rem;
}

section#diferenciais .reviews-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

section#diferenciais .reviews-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 242, .95);
  border: 1px solid rgba(92, 52, 37, .13);
  color: #754617;
  font-weight: 850;
  font-size: .9rem;
  box-shadow: 0 10px 24px rgba(18, 8, 3, .05);
}

section#diferenciais .reviews-tags span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #85a335;
  box-shadow: 0 0 0 5px rgba(133, 163, 53, .12);
}

section#diferenciais .reviews-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 8%, rgba(247, 198, 91, .26), transparent 26%),
    radial-gradient(circle at 10% 100%, rgba(217, 31, 42, .09), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 245, 230, .83));
  border: 1px solid rgba(92, 52, 37, .14);
  box-shadow: 0 24px 60px rgba(18, 8, 3, .09);
}

section#diferenciais .review-card {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(92, 52, 37, .12);
  box-shadow: 0 15px 32px rgba(18, 8, 3, .06);
}

section#diferenciais .review-card::before {
  content: "“";
  position: absolute;
  right: 18px;
  top: -18px;
  color: rgba(247, 198, 91, .28);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  pointer-events: none;
}

section#diferenciais .review-card--featured {
  grid-column: span 2;
  min-height: 260px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(80, 43, 30, .96), rgba(105, 58, 38, .94));
  color: #fff7eb;
  border-color: rgba(255, 247, 235, .18);
}

section#diferenciais .review-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

section#diferenciais .review-avatar {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  flex: 0 0 44px;
  background: #fff0c8;
  color: #4a2419;
  border: 1px solid rgba(92, 52, 37, .12);
  font-weight: 900;
}

section#diferenciais .review-card--featured .review-avatar {
  background: #f7c65b;
  color: #3b1f16;
}

section#diferenciais .review-card__top strong {
  display: block;
  color: #2d160f;
  font-size: 1rem;
  line-height: 1.1;
}

section#diferenciais .review-card--featured .review-card__top strong {
  color: #fff7eb;
}

section#diferenciais .review-card__top span {
  display: block;
  margin-top: 4px;
  color: #866052;
  font-size: .84rem;
}

section#diferenciais .review-card--featured .review-card__top span {
  color: rgba(255, 247, 235, .75);
}

section#diferenciais .review-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0 !important;
  color: #5c3c31 !important;
  font-size: .98rem;
  line-height: 1.55;
}

section#diferenciais .review-card--featured p {
  max-width: 58ch;
  color: #fff7eb !important;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.55;
}

section#diferenciais .review-card--featured .reviews-stars {
  color: #f7c65b;
}

@media (max-width: 1080px) {
  section#diferenciais .reviews-wrap {
    grid-template-columns: 1fr;
    align-items: start;
  }

  section#diferenciais .reviews-intro h2 {
    max-width: 12ch;
  }

  section#diferenciais .reviews-intro {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  section#diferenciais .reviews-intro {
    max-width: 100%;
  }

  section#diferenciais .reviews-intro h2 {
    max-width: 12.8ch;
    font-size: clamp(2.45rem, 11.8vw, 4rem);
    line-height: .94;
    letter-spacing: -.048em;
  }

  section#diferenciais .reviews-score-card {
    margin-top: 12px;
  }

  section#diferenciais .reviews-tags {
    margin-top: 14px;
  }

  section#diferenciais .reviews-board {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 24px;
  }

  section#diferenciais .review-card,
  section#diferenciais .review-card--featured {
    grid-column: auto;
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }
}

/* Ajuste solicitado: seção de regiões mais visual e persuasiva */
section#regioes .region-grid--visual {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

section#regioes .region-grid--visual::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 198, 91, .18), transparent 68%);
  pointer-events: none;
}

section#regioes .region-copy h2 {
  max-width: 9.5ch;
}

section#regioes .region-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

section#regioes .region-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(92, 52, 37, .14);
  color: #7a4d1d;
  font-size: .9rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(18, 8, 3, .05);
}

section#regioes .region-badges span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f7c65b;
  color: #3a2118;
  font-size: .72rem;
  font-weight: 900;
}

section#regioes .region-list--visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

section#regioes .region-list--visual span {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 18px 20px 18px 54px;
  font-size: 1.08rem;
  font-weight: 900;
  border-radius: 22px;
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,248,236,.95)) !important;
  transition: transform .2s ease, box-shadow .2s ease;
}

section#regioes .region-list--visual span:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(18, 8, 3, .1) !important;
}

section#regioes .region-list--visual span::before {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  box-shadow: 0 0 0 7px rgba(216, 149, 50, .12) !important;
}

@media (max-width: 860px) {
  section#regioes .region-grid--visual {
    grid-template-columns: 1fr;
    align-items: start;
  }

  section#regioes .region-copy h2 {
    max-width: 11ch;
  }
}

@media (max-width: 640px) {
  section#regioes .region-badges span {
    width: 100%;
    justify-content: center;
  }

  section#regioes .region-list--visual {
    grid-template-columns: 1fr;
  }

  section#regioes .region-list--visual span {
    min-height: 74px;
    font-size: 1rem;
  }
}


/* Ajuste solicitado: seção de regiões mais curta e direta */
section#regioes .region-copy--direct {
  display: grid;
  align-content: center;
}

section#regioes .region-copy--direct h2 {
  max-width: 7.6ch;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: .92;
}

section#regioes .region-mini-note {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 32ch;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(92, 52, 37, .12);
  color: #7a4d1d;
  font-size: .95rem;
  line-height: 1.35;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(18, 8, 3, .05);
}

section#regioes .region-mini-note::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 999px;
  background: #f7c65b;
  color: #3a2118;
  font-size: .72rem;
  font-weight: 900;
}

@media (max-width: 640px) {
  section#regioes .region-copy--direct h2 {
    max-width: 8.5ch;
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  section#regioes .region-mini-note {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Ajuste solicitado: orçamento somente via WhatsApp */
section#orcamento .quote-copy h2 {
  max-width: 9.8ch;
}

section#orcamento .contact-note {
  background: rgba(255, 244, 226, .08);
}

section#orcamento .quote-form .btn-primary {
  margin-top: 10px;
}

section#orcamento .form-help {
  text-align: center;
}


/* Ajuste fino final: alinhar avaliações ao topo dos cards e melhorar a seção de regiões */
section#diferenciais .reviews-intro {
  align-self: start;
  padding-top: 0;
  margin-top: 0;
}

section#diferenciais .reviews-intro .section-kicker {
  margin-top: 0;
}

section#regioes .region-grid--visual {
  align-items: start;
}

section#regioes .region-copy--direct {
  align-self: start;
}

section#regioes .region-copy--direct h2 {
  max-width: 9.5ch;
  line-height: .9;
}

section#regioes .region-mini-note {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 860px) {
  section#regioes .region-copy--direct h2 {
    max-width: 10ch;
  }
}

@media (max-width: 640px) {
  section#regioes .region-mini-note {
    white-space: normal;
  }
}


/* Ajuste solicitado: texto dos selects do formulário em preto */
.field select {
  color: #111111 !important;
}

.field select option {
  color: #111111 !important;
  background: #ffffff !important;
}


/* Ajuste final solicitado: refino completo da versão mobile sem alterar o desktop */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  body {
    padding-bottom: 104px !important;
  }

  .container {
    width: min(100% - 24px, var(--container)) !important;
  }

  .site-header {
    backdrop-filter: blur(10px) !important;
  }

  .header-grid {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 8px !important;
    padding: 10px 0 !important;
  }

  .brand img {
    width: 118px !important;
  }

  .hero {
    padding: 34px 0 30px !important;
  }

  .section,
  .menu-section,
  .final-cta {
    padding: 56px 0 !important;
  }

  .hero-grid,
  .intent-grid,
  .intent-grid--story,
  .split-grid,
  .quote-grid,
  .region-grid,
  section#diferenciais .reviews-wrap,
  section#regioes .region-grid--visual {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .hero-copy,
  .intent-copy,
  .intent-copy--story,
  .quote-copy,
  .region-copy,
  .region-copy--direct,
  section#diferenciais .reviews-intro {
    max-width: 100% !important;
  }

  .eyebrow,
  .section-kicker,
  .section-kicker-light {
    margin-bottom: 12px !important;
  }

  h1,
  .hero-title {
    font-size: clamp(2.2rem, 12vw, 3.35rem) !important;
    line-height: .97 !important;
  }

  h2,
  section#diferenciais .reviews-intro h2,
  section#regioes .region-copy--direct h2,
  section#orcamento .quote-copy h2 {
    max-width: 100% !important;
    font-size: clamp(2rem, 11vw, 3.25rem) !important;
    line-height: .95 !important;
    letter-spacing: -.045em !important;
  }

  .hero-subtitle,
  .search-intent p,
  .quote-copy p,
  .region-grid p,
  .split-grid p,
  section#diferenciais .reviews-intro p,
  .intent-story-text,
  .intent-story-summary p {
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  .hero-actions {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .hero-actions .btn,
  .btn.btn-lg,
  .intent-cta,
  .site-footer .btn {
    width: 100% !important;
  }

  .trust-list,
  .product-cards,
  .proof-grid,
  .steps,
  .region-list,
  .region-list--visual,
  .quote-form,
  .urgency-grid,
  .menu-grid,
  .menu-grid--photo,
  .menu-columns,
  section#diferenciais .reviews-board {
    grid-template-columns: 1fr !important;
  }

  .hero-card {
    padding: 16px !important;
    border-radius: 26px !important;
  }

  .hero-gallery-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .gallery-kicker {
    font-size: .74rem !important;
  }

  .gallery-slide {
    min-height: 360px !important;
  }

  .gallery-slide img {
    height: 360px !important;
    min-height: 360px !important;
  }

  .gallery-caption {
    padding: 88px 16px 18px !important;
  }

  .gallery-caption strong {
    font-size: 1.45rem !important;
  }

  .gallery-caption span {
    font-size: .92rem !important;
  }

  .trust-list li,
  .product-card,
  .proof-item,
  .step,
  .menu-card,
  section#diferenciais .review-card,
  section#diferenciais .review-card--featured {
    min-height: auto !important;
  }

  .product-card p,
  .menu-card ul {
    min-height: auto !important;
  }

  .section-heading {
    margin-bottom: 28px !important;
  }

  .menu-card__photo {
    height: 220px !important;
  }

  .menu-card__body {
    padding: 18px 18px 22px !important;
  }

  .menu-card__eyebrow {
    margin-top: -34px !important;
  }

  .menu-modal {
    padding: 0 !important;
    align-items: end !important;
  }

  .menu-modal__dialog {
    width: 100% !important;
    max-height: 90vh !important;
    border-radius: 24px 24px 0 0 !important;
  }

  .menu-modal__header {
    padding: 28px 18px 22px !important;
  }

  .menu-modal__body {
    padding: 12px !important;
    gap: 12px !important;
  }

  .menu-page {
    padding: 16px !important;
    border-radius: 18px !important;
  }

  .menu-price-row {
    display: grid !important;
    gap: 4px !important;
  }

  .menu-price-row strong {
    text-align: left !important;
  }

  section#diferenciais .reviews-score-card {
    margin-top: 16px !important;
  }

  section#diferenciais .reviews-tags {
    gap: 8px !important;
  }

  section#diferenciais .reviews-tags span {
    width: calc(50% - 4px) !important;
    justify-content: center !important;
    text-align: center !important;
  }

  section#diferenciais .review-card p {
    font-size: .96rem !important;
    line-height: 1.55 !important;
  }

  section#regioes .region-list--visual span,
  .region-list span {
    min-height: 68px !important;
    padding: 16px 18px !important;
    font-size: 1rem !important;
  }

  section#regioes .region-mini-note {
    width: 100% !important;
    white-space: normal !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .quote-form {
    padding: 18px !important;
    gap: 14px !important;
    border-radius: 24px !important;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 13px 14px !important;
    font-size: 16px !important;
  }

  .form-help {
    font-size: .84rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .footer-grid img {
    margin-inline: auto !important;
  }

  .footer-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  .mobile-sticky {
    display: block !important;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom)) !important;
  }

  .floating-whatsapp {
    width: 60px !important;
    height: 60px !important;
    right: 14px !important;
    bottom: 86px !important;
  }

  .floating-whatsapp img {
    width: 32px !important;
    height: 32px !important;
  }
}

@media (max-width: 480px) {
  body {
    padding-bottom: 108px !important;
  }

  .container {
    width: min(100% - 20px, var(--container)) !important;
  }

  h1,
  .hero-title {
    font-size: clamp(2rem, 12.5vw, 2.9rem) !important;
  }

  h2,
  section#diferenciais .reviews-intro h2,
  section#regioes .region-copy--direct h2,
  section#orcamento .quote-copy h2 {
    font-size: clamp(1.9rem, 10.5vw, 2.8rem) !important;
  }

  .gallery-slide {
    min-height: 320px !important;
  }

  .gallery-slide img {
    height: 320px !important;
    min-height: 320px !important;
  }

  .gallery-caption {
    padding: 78px 14px 16px !important;
  }

  .gallery-caption strong {
    font-size: 1.28rem !important;
  }

  section#diferenciais .reviews-tags span {
    width: 100% !important;
  }

  .quote-form,
  .hero-card,
  .menu-card,
  .proof-item,
  .step,
  section#diferenciais .review-card,
  section#diferenciais .review-card--featured {
    border-radius: 20px !important;
  }
}


/* Ajuste solicitado: menu hambúrguer no mobile e remoção do CTA fixo inferior */
.mobile-menu-toggle,
.mobile-header-spacer,
.mobile-nav {
  display: none;
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 250;
  }

  .header-grid {
    grid-template-columns: 44px 1fr 44px !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 84px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(92, 52, 37, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 22px rgba(18, 8, 3, .06);
    cursor: pointer;
  }

  .mobile-menu-toggle[aria-expanded="true"] {
    box-shadow: 0 14px 28px rgba(18, 8, 3, .12);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #4a2419;
    transition: transform .22s ease, opacity .22s ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-header-spacer {
    display: block;
    width: 44px;
    height: 44px;
  }

  .site-header .brand {
    justify-self: center !important;
  }

  .site-header .brand img {
    width: 128px !important;
    height: auto;
  }

  .site-header .desktop-nav,
  .mobile-sticky {
    display: none !important;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    z-index: 260;
    padding: 10px;
    border: 1px solid rgba(92, 52, 37, .12);
    border-radius: 22px;
    background: rgba(255, 251, 243, .98);
    box-shadow: 0 18px 40px rgba(18, 8, 3, .10);
    backdrop-filter: blur(10px);
  }

  .mobile-nav:not([hidden]) {
    display: block;
  }

  .mobile-nav[hidden] {
    display: none !important;
  }

  .mobile-nav a {
    display: block;
    padding: 14px 14px;
    border-radius: 14px;
    color: #4a2419;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-nav a + a {
    margin-top: 4px;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: rgba(247, 198, 91, .18);
    outline: none;
  }
}
