/* ==========================================================
   Malhampsene Meat, Lda — Estilos do site
   Paleta: navy / gold / charcoal / cream
   Fontes: Archivo (display) + Work Sans (body)
   ========================================================== */

:root {
  --charcoal: #15161B;
  --charcoal-2: #1E2027;
  --cream: #F3F1EA;
  --cream-dim: #E6E2D6;
  --navy: #0B2F8F;
  --navy-bright: #1B4FC4;
  --navy-deep: #081F63;
  --gold: #C89B3C;
  --gold-bright: #E0B457;
  --white: #FFFFFF;
  --ink: #1c1d22;
  --muted: rgba(21, 22, 27, 0.65);
  --line: rgba(21, 22, 27, 0.12);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 14px 40px rgba(8, 31, 99, 0.10);
  --shadow-lg: 0 30px 70px rgba(8, 31, 99, 0.18);
  --font-display: "Archivo", sans-serif;
  --font-body: "Work Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

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

.section { padding: 92px 0; }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 800; text-wrap: balance; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: var(--charcoal); }
.section-sub { color: var(--muted); margin-top: 12px; max-width: 640px; }
.section-head { margin-bottom: 46px; max-width: 760px; }

.lead { font-size: 1.08rem; color: var(--ink); }
.muted { color: var(--muted); }

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-bright); box-shadow: 0 12px 28px rgba(200, 155, 60, 0.35); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); box-shadow: 0 12px 28px rgba(11, 47, 143, 0.30); }

.btn-ghost { border-color: rgba(255, 255, 255, 0.65); color: var(--white); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-ghost-sm { border-color: rgba(255, 255, 255, 0.5); color: var(--white); padding: 9px 16px; font-size: 0.85rem; }
.btn-ghost-sm:hover { background: rgba(255, 255, 255, 0.12); }

.btn-block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: var(--charcoal); color: rgba(243, 241, 234, 0.85); font-size: 0.78rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 8px 0; flex-wrap: wrap; }
.topbar a { color: var(--gold-bright); font-weight: 600; }
.topbar .dl {
  display: inline-block; margin-left: 4px; font-size: 0.62rem; font-weight: 800;
  background: var(--gold); color: var(--charcoal); padding: 1px 6px; border-radius: 4px; letter-spacing: 0.06em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(8, 31, 99, 0.10); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 56px; height: auto; border-radius: 8px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-weight: 900; font-size: 1.12rem; letter-spacing: 0.02em; color: var(--navy-deep); text-transform: uppercase; }
.brand-text strong em { font-style: normal; color: var(--gold); }
.brand-text small { font-size: 0.72rem; color: var(--muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav-link { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--ink); position: relative; padding: 6px 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width 0.22s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-cta { padding: 11px 20px; font-size: 0.88rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy-deep); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: calc(100vh - 50px); display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.1s ease;
  animation: heroZoom 22s ease forwards;
}
.hero-slide.active { opacity: 1; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1.06); } }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8, 31, 99, 0.93) 0%, rgba(11, 47, 143, 0.72) 45%, rgba(21, 22, 27, 0.45) 100%),
              linear-gradient(0deg, rgba(21, 22, 27, 0.55) 0%, transparent 40%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0 96px; }
.hero-title { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 900; max-width: 760px; letter-spacing: -0.01em; }
.gold-text { color: var(--gold-bright); }
.hero-sub { margin-top: 20px; max-width: 620px; color: rgba(243, 241, 234, 0.85); font-size: 1.04rem; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Heróis — carrossel */
.hero-arrows { position: absolute; z-index: 4; inset: 0; pointer-events: none; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(21, 22, 27, 0.28); color: #fff; font-family: var(--font-display); font-size: 1.6rem;
  display: grid; place-items: center; cursor: pointer; line-height: 1;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}
.hero-arrow.prev { left: 26px; }
.hero-arrow.next { right: 26px; }
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); transform: translateY(-50%) scale(1.08); }
.hero-dots { position: absolute; z-index: 4; left: 0; right: 0; bottom: 26px; display: flex; justify-content: center; gap: 8px; }
.hero-dot {
  width: 10px; height: 10px; border-radius: 999px; border: 0; padding: 0; cursor: pointer;
  background: rgba(255, 255, 255, 0.42); transition: all 0.25s ease;
}
.hero-dot.active { width: 28px; background: var(--gold-bright); }

.hero-stats {
  margin-top: 54px; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; max-width: 860px;
}
.stat {
  background: rgba(243, 241, 234, 0.08); border: 1px solid rgba(243, 241, 234, 0.18);
  backdrop-filter: blur(6px); border-radius: var(--radius-sm); padding: 18px 16px;
}
.stat-num { display: block; font-family: var(--font-display); font-weight: 900; font-size: 1.65rem; color: var(--gold-bright); }
.stat-label { font-size: 0.78rem; color: rgba(243, 241, 234, 0.75); font-weight: 600; }

.hero-scroll {
  position: absolute; right: 28px; bottom: 24px; z-index: 3; color: var(--white);
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 50%;
  animation: bob 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ---------- Serviços ---------- */
.services { background: var(--white); }
.services-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { padding: 30px 24px; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-4px); }
.service-ico {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(11, 47, 143, 0.08); color: var(--navy); margin-bottom: 18px;
}
.service-ico svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 22px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform 0.22s ease, box-shadow 0.22s ease; }

/* ---------- Sobre ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.about-media { position: relative; padding-bottom: 70px; padding-right: 70px; }
.about-media::after {
  content: ""; position: absolute; right: 10px; bottom: 10px; width: 250px; height: 250px;
  border: 2px solid var(--gold); border-radius: var(--radius); z-index: 0; opacity: 0.5;
}
.about-img-main { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; position: relative; z-index: 1; }
.about-img-accent {
  position: absolute; z-index: 2; bottom: 0; left: 0; width: 55%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); border: 6px solid var(--cream); box-shadow: var(--shadow-lg);
}
.about-img-logo {
  position: absolute; z-index: 3; top: -18px; right: 16px; width: 96px; border-radius: 50%;
  box-shadow: var(--shadow-lg); border: 4px solid var(--cream); transform: rotate(6deg);
}
.about-body .lead { margin-top: 18px; }
.about-body .muted { margin-top: 14px; }

.mvv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.mvv-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 18px; }
.mvv-item h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; }
.mvv-item p, .mvv-item li { font-size: 0.83rem; color: var(--muted); }
.mvv-item ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.mvv-item li::before { content: "✓ "; color: var(--gold); font-weight: 800; }
.about-body .btn { margin-top: 28px; }

/* ---------- Categorias ---------- */
.categories { background: var(--charcoal); color: var(--white); }
.categories .section-title { color: var(--white); }
.categories .section-sub { color: rgba(243, 241, 234, 0.6); }

.cats-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 240px; display: flex; align-items: flex-end; }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card:hover img { transform: scale(1.08); }
.cat-veil { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(21, 22, 27, 0.88) 0%, rgba(21, 22, 27, 0.12) 60%, rgba(21, 22, 27, 0.25) 100%); }
.cat-copy { position: relative; z-index: 2; padding: 22px; }
.cat-copy h3 { font-size: 1.2rem; }
.cat-copy p { color: rgba(243, 241, 234, 0.75); font-size: 0.84rem; margin-top: 4px; }
.cat-tag {
  display: inline-block; font-family: var(--font-display); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal);
  background: var(--gold); padding: 3px 9px; border-radius: 4px; margin-bottom: 8px;
}

/* ---------- Produtos / catálogo ---------- */
.products { background: var(--white); }
.catalog-toolbar { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.search-wrap { position: relative; flex: 1 1 300px; }
.search-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); }
.search-wrap input {
  width: 100%; padding: 13px 16px 13px 42px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); color: var(--ink); outline: none; transition: border-color 0.2s ease;
}
.search-wrap input:focus { border-color: var(--navy-bright); background: var(--white); }
.catalog-toolbar select {
  padding: 12px 38px 12px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); color: var(--ink); font-weight: 600; outline: none; cursor: pointer;
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231c1d22' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}

.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.chip {
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
  padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--white); color: var(--ink); transition: all 0.18s ease;
}
.chip small { font-weight: 700; color: var(--muted); margin-left: 5px; }
.chip:hover { border-color: var(--navy-bright); color: var(--navy); }
.chip.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.chip.active small { color: rgba(255, 255, 255, 0.7); }

.catalog-meta { font-size: 0.85rem; color: var(--muted); font-weight: 600; margin-bottom: 18px; }

.product-grid { grid-template-columns: repeat(4, 1fr); }
.product-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column; gap: 8px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.product-card .p-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: calc(var(--radius) - 6px); background: var(--cream); display: block; margin: 0 0 4px; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(11, 47, 143, 0.35); }
.product-card .p-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.p-cat { font-family: var(--font-display); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-bright); background: rgba(11, 47, 143, 0.07); padding: 3px 8px; border-radius: 5px; }
.p-cod { font-size: 0.68rem; color: var(--muted); font-weight: 700; letter-spacing: 0.04em; }
.product-card h3 { font-size: 0.98rem; line-height: 1.3; flex: 1; }
.p-price { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--charcoal); }
.p-price small { font-size: 0.68rem; color: var(--muted); font-weight: 600; display: block; letter-spacing: 0.04em; }
.p-actions { display: flex; gap: 8px; }
.p-btn {
  flex: 1; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  padding: 9px 12px; border-radius: var(--radius-sm); border: 1.5px solid var(--navy);
  color: var(--navy); background: transparent; transition: all 0.18s ease;
  text-align: center;
}
.p-btn:hover { background: var(--navy); color: var(--white); }
.p-btn.alt { border-color: var(--gold); color: var(--charcoal); }
.p-btn.alt:hover { background: var(--gold); }
.p-btn.added { background: var(--navy); color: var(--white); }

.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 30px; flex-wrap: wrap; }
.page-btn {
  min-width: 40px; height: 40px; padding: 0 12px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--white); font-family: var(--font-display);
  font-weight: 700; font-size: 0.9rem; color: var(--ink); transition: all 0.18s ease;
}
.page-btn:hover { border-color: var(--navy); color: var(--navy); }
.page-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.page-ellipsis { color: var(--muted); font-weight: 700; }

.empty-state { grid-column: 1 / -1; text-align: center; padding: 50px 20px; color: var(--muted); }
.empty-state strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); margin-bottom: 6px; }

.catalog-note { margin-top: 26px; font-size: 0.85rem; color: var(--muted); text-align: center; }
.catalog-note a { color: var(--navy); font-weight: 700; text-decoration: underline; }

/* ---------- Distribuição ---------- */
.distribution { background: var(--cream); }
.dist-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: center; }
.dist-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/11; box-shadow: var(--shadow-lg); }
.dist-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play {
  position: absolute; inset: 0; margin: auto; width: 74px; height: 74px; border-radius: 50%;
  background: rgba(200, 155, 60, 0.92); color: var(--charcoal); border: 4px solid rgba(255, 255, 255, 0.7);
  display: grid; place-items: center; transition: transform 0.2s ease;
}
.video-play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-play:hover { transform: scale(1.1); }
.video-hint {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); background: rgba(21, 22, 27, 0.55); padding: 6px 14px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.dist-body .muted { margin-top: 12px; }

.steps { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  flex: 0 0 auto; font-family: var(--font-display); font-weight: 900; font-size: 1rem;
  color: var(--white); background: var(--navy); width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; letter-spacing: 0.04em;
}
.steps h3 { font-size: 1rem; margin-bottom: 2px; }
.steps p { font-size: 0.86rem; color: var(--muted); }
.dist-cta { margin-top: 26px; }

/* ---------- Galeria ---------- */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px; }
.g-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.g-item img, .g-item video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.g-item:hover img, .g-item:hover video { transform: scale(1.06); }
.g-item::after { content: ""; position: absolute; inset: 0; background: rgba(8, 31, 99, 0.25); opacity: 0; transition: opacity 0.25s ease; }
.g-item:hover::after { opacity: 1; }
.g-item.photo:nth-child(1) { grid-row: span 2; }
.g-item.photo:nth-child(4) { grid-row: span 2; }
.g-item.photo:nth-child(7) { grid-row: span 2; }
.g-item .video-play { width: 46px; height: 46px; border-width: 3px; }
.g-item .video-play svg { width: 18px; height: 18px; }
.g-item.video::after { background: linear-gradient(0deg, rgba(21, 22, 27, 0.3), transparent 45%); opacity: 1; }

/* ---------- Contacto ---------- */
.contact { background: var(--charcoal); color: var(--white); }
.contact .section-title { color: var(--white); }
.contact .muted { color: rgba(243, 241, 234, 0.65); }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }

.contact-form { margin-top: 30px; background: var(--charcoal-2); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius); padding: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row .field { margin-bottom: 0; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.8rem; color: rgba(243, 241, 234, 0.8); }
.field input, .field select, .field textarea {
  background: rgba(243, 241, 234, 0.05); border: 1.5px solid rgba(243, 241, 234, 0.16);
  color: var(--white); border-radius: var(--radius-sm); padding: 12px 14px; outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field select { appearance: none; }
.field select option { color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(243, 241, 234, 0.4); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(243, 241, 234, 0.09); }
.field textarea { resize: vertical; }
.form-note { margin-top: 12px; font-size: 0.78rem; color: rgba(243, 241, 234, 0.5); }

.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-card, .license-card { background: var(--charcoal-2); border: 1px solid rgba(255, 255, 255, 0.1); }
.contact-card h3, .license-card h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--gold-bright); }
.contact-card dl { display: flex; flex-direction: column; gap: 12px; }
.contact-card dl div { display: grid; grid-template-columns: 86px 1fr; gap: 8px; }
.contact-card dt { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(243, 241, 234, 0.5); padding-top: 2px; }
.contact-card dd { font-size: 0.9rem; color: rgba(243, 241, 234, 0.85); }
.contact-card a { color: var(--gold-bright); }
.license-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.license-card a { color: rgba(243, 241, 234, 0.85); font-weight: 600; font-size: 0.9rem; }
.license-card a::before { content: "⬇ "; color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(243, 241, 234, 0.72); border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 38px; padding: 64px 0 40px; }
.footer-logo { width: 90px; border-radius: 10px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: rgba(243, 241, 234, 0.6); max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 9px; font-size: 0.88rem; }
.footer-col a { transition: color 0.18s ease; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-col p { font-size: 0.88rem; }
.footer-col strong { color: rgba(243, 241, 234, 0.9); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 18px 0; font-size: 0.78rem; color: rgba(243, 241, 234, 0.5); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90; background: rgba(10, 11, 14, 0.94);
  display: grid; place-items: center; padding: 28px;
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-media { max-width: min(1000px, 100%); max-height: 78vh; }
.lb-media img, .lb-media video { max-width: 100%; max-height: 78vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lb-close { position: absolute; top: 18px; right: 24px; background: none; border: 0; color: var(--white); font-size: 2.4rem; line-height: 1; }
.lb-caption { margin-top: 14px; color: rgba(243, 241, 234, 0.85); font-weight: 600; }

/* ---------- Barra de orçamento ---------- */
.quote-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: var(--navy-deep); color: var(--white);
  transform: translateY(110%); transition: transform 0.3s ease;
  box-shadow: 0 -8px 30px rgba(8, 31, 99, 0.3);
}
.quote-bar.show { transform: translateY(0); }
.quote-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; flex-wrap: wrap; }
.quote-inner p { font-size: 0.92rem; }
.quote-actions { display: flex; gap: 10px; }

/* ---------- Reveal (scroll) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- CTA da navegação (site + loja) ---------- */
.nav .nav-cta + .nav-cta { margin-left: 8px; }

/* ---------- Sobre: chamada para o atendimento ---------- */
.about-cta { margin-top: 22px; }

/* ---------- Mini-carrossel nas categorias (3s) ---------- */
.cat-slides { position: absolute; inset: 0; }
.cat-slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; }
.cat-slides img.active { opacity: 1; }

/* ---------- Redes sociais no rodapé ---------- */
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(243, 241, 234, 0.08); border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(243, 241, 234, 0.85);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.footer-social a:hover { background: var(--gold-bright); color: var(--charcoal); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }

/* ---------- Mapa de localização ---------- */
.map-block { margin-top: 46px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px 26px; }
.map-head h3 { font-size: 1.25rem; }
.map-head p { color: var(--muted); margin-top: 4px; max-width: 560px; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Popup de boas-vindas ---------- */
.popup { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(10, 11, 14, 0.72); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.popup[hidden] { display: none; }
.popup.open { opacity: 1; pointer-events: auto; }
.popup-card { position: relative; background: var(--white); border-radius: var(--radius); max-width: 460px; width: 100%; padding: 34px 30px 30px; text-align: center; box-shadow: var(--shadow-lg); transform: translateY(10px); transition: transform 0.3s ease; }
.popup.open .popup-card { transform: none; }
.popup-close { position: absolute; top: 12px; right: 14px; background: none; border: 0; font-size: 1.8rem; line-height: 1; color: var(--charcoal); }
.popup-logo { width: 78px; margin: 0 auto 18px; border-radius: 12px; }
.popup-card .eyebrow { margin-bottom: 8px; }
.popup-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.popup-card .muted { font-size: 0.92rem; }
.popup-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.popup-link { display: inline-block; margin-top: 16px; color: var(--navy); font-weight: 700; font-size: 0.9rem; text-decoration: underline; }

/* ==========================================================
   Subpágina — Atendimento
   ========================================================== */
.page-hero { background: linear-gradient(120deg, var(--navy-deep), var(--navy) 55%, var(--navy-bright)); color: var(--white); padding: 120px 0 84px; }
.page-hero .eyebrow { color: var(--gold-bright); }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: rgba(243, 241, 234, 0.85); max-width: 720px; }

.at-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 46px; align-items: center; }
.at-split.flip { grid-template-columns: 1fr 1.05fr; }
.at-split img { border-radius: var(--radius); width: 100%; height: 380px; object-fit: cover; box-shadow: var(--shadow); }
.at-split .section-title { margin-bottom: 14px; }

/* ---------- Carrossel de imagens nas secções de atendimento (2s) ---------- */
.at-slides { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.at-slides img { position: absolute; inset: 0; width: 100%; height: 380px; object-fit: cover; opacity: 0; transition: opacity 0.6s ease; }
.at-slides img.active { opacity: 1; }
.at-list { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.at-list li { display: flex; gap: 12px; align-items: flex-start; }
.at-list .tick { flex: 0 0 24px; height: 24px; border-radius: 50%; background: var(--navy); color: var(--white); display: grid; place-items: center; font-size: 0.75rem; font-weight: 800; margin-top: 2px; }

.at-band { background: var(--charcoal); color: var(--white); }
.at-band .section-title { color: var(--white); }
.at-band .muted { color: rgba(243, 241, 234, 0.65); }
.at-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.at-cards .card { background: var(--charcoal-2); border: 1px solid rgba(255, 255, 255, 0.1); }
.at-cards h3 { color: var(--gold-bright); font-size: 1.1rem; margin-bottom: 8px; }
.at-cards p { color: rgba(243, 241, 234, 0.72); font-size: 0.92rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { animation: none; }
}

/* ==========================================================
   Responsivo
   ========================================================== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .section { padding: 68px 0; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 59;
    width: min(340px, 86vw); flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-left: 1px solid var(--line);
    padding: 112px 22px 32px; box-shadow: -20px 0 50px rgba(8, 31, 99, 0.18);
    transform: translateX(110%); transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav-link { padding: 14px 8px; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav-link::after { display: none; }
  .nav-cta { margin-top: 18px; text-align: center; }
  .topbar-meta { display: none; }

  .about-grid, .dist-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll { display: none; }
  .hero-inner { padding-top: 88px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item.photo:nth-child(1), .g-item.photo:nth-child(4), .g-item.photo:nth-child(7) { grid-row: span 1; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-inner .topbar-meta { display: none; }
  .hero-arrow { width: 40px; height: 40px; font-size: 1.3rem; }
  .hero-arrow.prev { left: 12px; }
  .hero-arrow.next { right: 12px; }
  .hero-dots { bottom: 20px; }
}

@media (max-width: 400px) {
  .product-grid { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
}

/* ---------- Ajustes de componentes novos ---------- */
@media (max-width: 1280px) {
  .nav { gap: 16px; }
  .nav-link { font-size: 0.86rem; }
  .nav .nav-cta { padding: 9px 15px; font-size: 0.82rem; }
}

@media (max-width: 1024px) {
  .at-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .at-split, .at-split.flip { grid-template-columns: 1fr; }
  .at-split img { height: 280px; }
  .map-wrap iframe { height: 300px; }
  .nav .nav-cta + .nav-cta { margin-left: 0; }
}

@media (max-width: 560px) {
  .at-cards { grid-template-columns: 1fr; }
  .page-hero { padding: 104px 0 60px; }
  .map-head { padding: 18px; }
  .popup-card { padding: 28px 20px 24px; }
}