:root {
  --bg-dark: #161513;
  --bg-panel: #211f1b;
  --cream: #eceae2;
  --card: #f5f3ed;
  --text-dark: #1a1815;
  --text-muted: #57534a;
  --text-muted2: #6e695f;
  --cream-text: #f4f2ec;
  --yellow: #f2b90c;
  --red: #d4331f;
  --whatsapp: #25d366;
  --whatsapp-dark: #ffffff;
  --whatsapp-shadow: #12894a;
  --font-display: "Nunito", sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-mono: "Nunito", monospace;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(20, 19, 17, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--yellow);
}
.site-header .wrap {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 0;
}
.brand-badge {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 34px;
  background: var(--red);
  color: var(--cream-text);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  border: 2px solid var(--cream-text);
  border-radius: 3px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--cream-text);
  white-space: nowrap;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--yellow);
  margin-top: 3px;
}

.btn-wa {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--whatsapp-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(13px, 3.4vw, 14.5px);
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px clamp(13px, 3.6vw, 18px);
  border-radius: 4px;
  box-shadow: 0 2px 0 var(--whatsapp-shadow);
  border: none;
  cursor: pointer;
}
.btn-wa:hover {
  background: #2be070;
}
.btn-wa:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
.wa-icon {
  width: 18px;
  height: 18px;
  flex: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--cream-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 15px 24px;
  border: 2px solid rgba(244, 242, 236, 0.28);
  border-radius: 4px;
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn-outline:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

/* Hero */
.hero {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0 46px,
    rgba(244, 242, 236, 0.018) 46px 92px
  );
  pointer-events: none;
}
.hero-stripe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0 46px,
    var(--bg-dark) 46px 78px
  );
  opacity: 0.9;
}
.hero-grid {
  position: relative;
  padding: clamp(40px, 7vw, 88px) 20px clamp(64px, 9vw, 120px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow-line {
  width: 26px;
  height: 2px;
  background: var(--yellow);
}
.eyebrow-line--red {
  background: var(--red);
}
.eyebrow--red {
  color: var(--red);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.7rem, 6.4vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--cream-text);
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.55;
  color: rgba(244, 242, 236, 0.72);
  max-width: 30em;
  margin: 0 0 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(244, 242, 236, 0.6);
}
.hero-stats strong {
  color: var(--yellow);
  font-weight: 600;
}
.hero-stats .sep {
  color: rgba(244, 242, 236, 0.25);
}

.hero-media {
  min-width: 0;
  position: relative;
}
.hero-photo {
  position: relative;
  border: 3px solid var(--cream-text);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.img-slot {
  width: 100%;
  height: clamp(260px, 34vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(155deg, #2a2723, #161513);
  color: rgba(244, 242, 236, 0.4);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 24px;
}
img.img-slot {
  object-fit: contain;
  padding: 0;
}
.hero-photo .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--bg-dark);
  background: var(--yellow);
  padding: 5px 9px;
  border-radius: 3px;
}

.receipt {
  position: relative;
  margin: -42px 16px 0 auto;
  max-width: 340px;
  background: var(--cream);
  border-radius: 5px;
  padding: 16px 18px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-top: 5px solid var(--red);
}
.receipt-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted2);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.28);
  padding-bottom: 9px;
  margin-bottom: 11px;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-dark);
}
.receipt-row span:first-child {
  color: var(--text-muted2);
}
.receipt-row span:last-child {
  font-weight: 500;
  text-align: right;
}
.receipt-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.receipt-total {
  border-top: 1px dashed rgba(0, 0, 0, 0.28);
  margin-top: 11px;
  padding-top: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.receipt-total .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--text-muted2);
  max-width: 9em;
  line-height: 1.3;
}
.receipt-total .value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

/* Section shell */
section {
  padding: clamp(56px, 8vw, 104px) 0;
}
.section-light {
  background: var(--cream);
}
.section-dark {
  background: var(--bg-dark);
  position: relative;
}
.section-panel {
  background: var(--bg-panel);
}
.top-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0 46px,
    var(--bg-dark) 46px 78px
  );
  opacity: 0.85;
}

h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 12px 0 40px;
  text-wrap: balance;
}
h2.on-dark {
  color: var(--cream-text);
}
h2.on-light {
  color: var(--text-dark);
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 34em;
  margin: 0 0 40px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(0, 0, 0, 0.12);
  border: 2px solid var(--bg-dark);
  border-radius: 6px;
  overflow: hidden;
}
.service-card {
  background: var(--card);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted2);
  letter-spacing: 0.06em;
}
.service-bar {
  width: 30px;
  height: 5px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.42rem;
  line-height: 1.05;
  color: var(--text-dark);
  margin: 0 0 12px;
}
.service-card p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 18px;
  flex: 1;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 4px 9px;
  border-radius: 3px;
}
.tag--dashed {
  color: var(--text-muted);
  background: transparent;
  border-style: dashed;
  border-color: rgba(0, 0, 0, 0.3);
}

/* Diferenciais */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.compare-card {
  border-radius: 6px;
  padding: 26px 24px;
}
.compare-card--bad {
  background: var(--bg-panel);
  border: 1px solid rgba(244, 242, 236, 0.12);
}
.compare-card--good {
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.compare-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-card--bad .compare-label {
  color: rgba(244, 242, 236, 0.45);
}
.compare-card--good .compare-label {
  color: var(--bg-dark);
}
.compare-label-bar {
  width: 20px;
  height: 3px;
  background: var(--red);
}
.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.4;
}
.compare-card--bad li {
  color: rgba(244, 242, 236, 0.55);
}
.compare-card--good li {
  color: var(--bg-dark);
  font-weight: 500;
}
.icon-minus {
  flex: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(244, 242, 236, 0.3);
  border-radius: 50%;
  position: relative;
  margin-top: 1px;
}
.icon-minus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 9px;
  height: 1.5px;
  background: rgba(244, 242, 236, 0.4);
}
.icon-check {
  flex: none;
  width: 20px;
  height: 20px;
  background: var(--bg-dark);
  border-radius: 50%;
  position: relative;
  margin-top: 1px;
}
.icon-check::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--yellow);
  border-width: 0 2px 2px 0;
  transform: rotate(43deg);
}

/* Área de atuação */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.area-text p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 22px;
  max-width: 32em;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-dark);
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 6px 12px;
  border-radius: 4px;
}
.chip--dashed {
  color: var(--text-muted);
  background: transparent;
  border-style: dashed;
  border-color: rgba(0, 0, 0, 0.3);
}
.radar {
  min-width: 0;
  display: flex;
  justify-content: center;
}
.radar-inner {
  position: relative;
  width: min(320px, 80vw);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
}
.ring--out {
  inset: 0;
  border: 2px dashed rgba(0, 0, 0, 0.22);
}
.ring--mid {
  inset: 16%;
  border: 2px solid rgba(212, 51, 31, 0.35);
}
.ring--in {
  inset: 34%;
  border: 2px solid rgba(212, 51, 31, 0.55);
}
.radar-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.radar-dot {
  width: 16px;
  height: 16px;
  background: var(--red);
  border: 3px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--red);
}
.radar-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}
.radar-km {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted2);
  background: var(--cream);
  padding: 0 6px;
}

/* Galeria */
.gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}
.gallery-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(244, 242, 236, 0.5);
  max-width: 22em;
  line-height: 1.5;
  margin: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-grid .img-slot {
  border-radius: 5px;
  border: 2px solid rgba(244, 242, 236, 0.14);
}
.gallery-grid .img-slot--tall {
  height: clamp(360px, 46vw, 520px);
  grid-row: span 2;
}
.gallery-grid .img-slot--short {
  height: clamp(190px, 22vw, 250px);
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Depoimentos */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.testi {
  margin: 0;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-left: 4px solid var(--red);
  border-radius: 5px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi--yellow {
  border-left-color: var(--yellow);
}
.testi--dark {
  border-left-color: var(--bg-dark);
}
.testi blockquote {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--text-dark);
}
.testi figcaption {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted2);
  letter-spacing: 0.03em;
  margin-top: auto;
}

/* Formulário */
.form-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(380px, 1.6fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.form-grid > * {
  min-width: 0;
}
.form-copy p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(244, 242, 236, 0.72);
  max-width: 30em;
  margin: 0 0 24px;
}
.form-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(244, 242, 236, 0.7);
}
.form-bullets div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-bullets .bullet {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  flex: none;
}

.order-form {
  background: var(--cream);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 42px);
  border-top: 6px solid var(--red);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.order-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted2);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.28);
  padding-bottom: 12px;
  margin-bottom: 22px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.field-full {
  grid-column: 1 / -1;
}
@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
}
label.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
label.field span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}
input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-dark);
  background: var(--card);
  border: 1.5px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 16px 16px;
  min-height: 52px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 1px;

}
textarea {
  resize: vertical;
}
.field-obs {
  margin-top: 14px;
}
.field-help {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-muted2);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--red);
  background: #fbe9e7;
}
.field.has-error .field-help {
  color: var(--red);
  font-weight: 600;
}
.submit-btn {
  margin-top: 20px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--whatsapp-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  padding: 15px 20px;
  cursor: pointer;
  box-shadow: 0 3px 0 var(--whatsapp-shadow);
}
.submit-btn:hover {
  background: #2be070;
}
.submit-btn:focus-visible {
  outline: 3px solid var(--bg-dark);
  outline-offset: 2px;
}
.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted2);
  text-align: center;
  margin: 12px 0 0;
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-list {
  border-top: 2px solid var(--bg-dark);
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 4px;
  text-align: left;
}
.faq-q:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -2px;
}
.faq-q span.q-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--text-dark);
}
.faq-icon {
  flex: none;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg-dark);
  border-radius: 50%;
  color: var(--bg-dark);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1;
}
.faq-a {
  margin: 0;
  padding: 0 4px 22px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 60ch;
  display: none;
}
.faq-item.open .faq-a {
  display: block;
}

/* CTA final */
.cta-final {
  background: var(--red);
}
.cta-final .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-final h2 {
  color: var(--cream-text);
  font-weight: 900;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 0.98;
  max-width: 14em;
  margin: 0 0 10px;
}
.cta-final p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(244, 242, 236, 0.85);
  margin: 0;
}
.btn-dark {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-dark);
  color: var(--cream-text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  padding: 17px 30px;
  border-radius: 4px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.4);
}
.btn-dark:hover {
  background: #000;
}
.btn-dark:focus-visible {
  outline: 3px solid var(--bg-dark);
  outline-offset: 3px;
}

/* Footer */
footer {
  background: var(--bg-dark);
  padding: clamp(44px, 6vw, 72px) 0 32px;
  border-top: 3px solid var(--yellow);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
footer p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(244, 242, 236, 0.6);
  max-width: 26em;
  margin: 0;
}
.footer-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.98rem;
  color: rgba(244, 242, 236, 0.78);
}
.footer-links a {
  text-decoration: none;
  color: rgba(244, 242, 236, 0.78);
}
.footer-links a:hover {
  color: var(--yellow);
}
.footer-links a:first-child {
  color: var(--cream-text);
}
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(244, 242, 236, 0.78);
}
.footer-hours div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  max-width: 15em;
}
.footer-hours span:last-child {
  color: var(--cream-text);
}
.footer-region p {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
}
.footer-bottom {
  max-width: 1180px;
  margin: 36px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(244, 242, 236, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(244, 242, 236, 0.45);
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  background: var(--whatsapp);
  color: var(--whatsapp-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  padding: 10px;
  border-radius: 100%;
}
.wa-float:hover {
  background: #2be070;
}
.wa-float:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;

}
