/* ============================================================
   PREMIUM MÁQUINAS — style.css  v3  (modern light)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #f0f4f9;
  color: #1e2d3d;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
a { color: #ff6000; text-decoration: none; transition: color .2s; }
a:hover { color: #e05000; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- CSS VARS ---------- */
:root {
  --blue:      #122a44;
  --blue2:     #1a3a5a;
  --blue3:     #0e1f30;
  --orange:    #ff6000;
  --orange2:   #ff7a20;
  --bg:        #f0f4f9;
  --bg2:       #e8eef6;
  --white:     #ffffff;
  --border:    #e2e8f0;
  --border2:   #d1dae6;
  --text:      #1e2d3d;
  --text2:     #3d5166;
  --muted:     #7a90a8;
  --success:   #16a34a;
  --danger:    #dc2626;
  --shadow-sm: 0 1px 4px rgba(18,42,68,.06), 0 2px 8px rgba(18,42,68,.04);
  --shadow:    0 4px 16px rgba(18,42,68,.10), 0 1px 4px rgba(18,42,68,.06);
  --shadow-lg: 0 8px 32px rgba(18,42,68,.14), 0 2px 8px rgba(18,42,68,.06);
  --shadow-xl: 0 16px 48px rgba(18,42,68,.18), 0 4px 12px rgba(18,42,68,.08);
  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 8px;
}

/* ---------- UTILITIES ---------- */
.text-orange  { color: var(--orange) !important; }
.text-blue    { color: var(--blue)   !important; }
.text-muted-pm{ color: var(--muted)  !important; }
.bg-white-pm  { background: var(--white) !important; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,96,0,.1);
  border: 1px solid rgba(255,96,0,.22);
  padding: 5px 14px;
  border-radius: 50px;
}

.section-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.15;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin-top: 10px;
}

/* BTN BASE */
.btn-pm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all .22s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-pm-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,96,0,.35);
}
.btn-pm-orange:hover {
  background: #e05000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,96,0,.45);
}
.btn-pm-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(18,42,68,.25);
}
.btn-pm-blue:hover {
  background: var(--blue2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18,42,68,.35);
}
.btn-pm-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn-pm-ghost:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
  transform: translateY(-2px);
}
.btn-pm-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--border2);
}
.btn-pm-outline:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ---------- NAVBAR ---------- */
#mainNav {
  background: var(--blue) !important;
  padding: 0;
  height: 64px;
  display: flex;
  align-items: center;
  transition: all .3s;
  position: sticky;
  top: 0;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(14,31,48,.97) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.22);
}
.nav-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img { height: 40px; width: auto; }
.nav-brand span { color: #fff; }
.nav-brand span em { color: var(--orange); font-style: normal; }
.navbar-nav .nav-link {
  color: rgba(255,255,255,.75) !important;
  font-weight: 500;
  font-size: 14.5px;
  padding: 6px 12px !important;
  border-radius: 6px;
  transition: all .18s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.1);
}
.btn-loja-nav {
  background: var(--orange);
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  transition: all .2s !important;
  box-shadow: 0 3px 12px rgba(255,96,0,.4);
}
.btn-loja-nav:hover {
  background: #e05000 !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(255,96,0,.5) !important;
}

/* ---------- HERO ---------- */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--blue3);
  position: relative;
  overflow: hidden;
}
/* Padrão geométrico de fundo */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  top: -180px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,96,0,.18) 0%, rgba(18,42,68,.4) 45%, transparent 70%);
  pointer-events: none;
}
.hero-glow-bottom {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(26,58,90,.6) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,96,0,.15);
  border: 1px solid rgba(255,96,0,.35);
  color: #ffb380;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
}
.hero-title .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 4px;
  background: var(--orange);
  opacity: .3;
  border-radius: 4px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.62);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

/* Badges de confiança no hero */
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 500;
}
.hero-trust-item i { color: var(--orange); font-size: 16px; }

/* Card flutuante no lado direito do hero */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-float {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(12px);
  width: 340px;
}
.hero-card-float .hcf-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
}
.hero-card-float h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.hero-card-float p  { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.55; margin: 0; }
.hero-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-mini-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 18px 16px;
  backdrop-filter: blur(8px);
  transition: background .2s;
}
.hero-mini-card:hover { background: rgba(255,255,255,.11); }
.hero-mini-card .mc-icon {
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 10px;
}
.hero-mini-card h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hero-mini-card p  { font-size: 11.5px; color: rgba(255,255,255,.48); margin: 0; line-height: 1.45; }

/* ---------- STATS BAR ---------- */
.stats-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.stat-cell {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: background .2s;
}
.stat-cell:hover { background: #fafbff; }
.stat-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px 3px 0 0;
  transition: transform .25s;
}
.stat-cell:hover::after { transform: translateX(-50%) scaleX(1); }
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--orange); }
.stat-lbl { font-size: 13px; font-weight: 600; color: var(--muted); }

/* ---------- VANTAGENS STRIP ---------- */
.vantagens-section { padding: 28px 0; background: var(--bg); }
.vantagem-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text2);
  white-space: nowrap;
}
.vantagem-pill i { color: var(--orange); font-size: 17px; flex-shrink: 0; }
.vantagem-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--orange); color: var(--blue); }

/* ---------- CATEGORIAS ---------- */
.categorias-section { padding: 80px 0; background: var(--bg); }
.cat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 20px 22px;
  text-align: center;
  transition: all .25s;
  display: block;
  color: var(--text);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
}
.cat-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
  color: var(--text);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon-wrap {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff4ee, #ffebd9);
  border: 1.5px solid rgba(255,96,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: var(--orange);
  transition: all .25s;
}
.cat-card:hover .cat-icon-wrap {
  background: var(--orange);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
  border-color: transparent;
}
.cat-card h5 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--blue); }
.cat-card p  { font-size: 12px; color: var(--muted); margin: 0; line-height: 1.45; }
.cat-card .cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 12px;
  opacity: 0;
  transform: translateY(4px);
  transition: all .2s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* ---------- PRODUTOS DESTAQUE ---------- */
.destaques-section { padding: 80px 0; background: #fff; }
.prod-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.prod-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform .35s;
}
.prod-card:hover .prod-card-img img { transform: scale(1.07); }
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .5px;
}
.prod-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.prod-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.prod-nome {
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 10px;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
  margin-top: auto;
}
.prod-price-old {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}
.prod-card-btn {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}
.prod-card-btn:hover { background: var(--orange); color: #fff; }

/* ---------- SOBRE BLOCO ---------- */
.sobre-section { padding: 90px 0; background: var(--bg); }
.sobre-img-wrap { position: relative; }
.sobre-img-main {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.sobre-img-main img { width: 100%; height: 420px; object-fit: contain; background: #fff; display: block; }
.sobre-anos-badge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--orange);
  color: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 28px rgba(255,96,0,.4);
}
.sobre-anos-badge .num { font-size: 2.2rem; line-height: 1; }
.sobre-anos-badge .txt { font-size: 11px; opacity: .9; font-weight: 600; }
.dif-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}
.dif-card:hover { transform: translateX(5px); box-shadow: var(--shadow); border-color: var(--orange); }
.dif-icon {
  min-width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fff4ee, #ffebd9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.dif-card h6 { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 3px; }
.dif-card p  { font-size: 12.5px; color: var(--muted); margin: 0; }

/* ---------- DEPOIMENTOS ---------- */
.depoimentos-section { padding: 80px 0; background: var(--blue); }
.dep-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  backdrop-filter: blur(8px);
  transition: all .25s;
}
.dep-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.dep-stars { color: #fbbf24; font-size: 14px; margin-bottom: 14px; }
.dep-quote { color: var(--orange); font-size: 32px; line-height: 1; margin-bottom: 8px; font-weight: 800; }
.dep-texto { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.68; margin-bottom: 20px; }
.dep-autor { display: flex; align-items: center; gap: 12px; }
.dep-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.dep-nome  { font-size: 14px; font-weight: 700; color: #fff; }
.dep-cargo { font-size: 12px; color: rgba(255,255,255,.45); }

/* ---------- BLOG CARDS ---------- */
.blog-section { padding: 80px 0; background: var(--bg); }
.post-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.post-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg2); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.post-card:hover .post-card-img img { transform: scale(1.06); }
.post-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-cat { font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.post-title { font-weight: 700; font-size: 15.5px; color: var(--blue); margin-bottom: 10px; line-height: 1.35; }
.post-desc { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue3) 0%, var(--blue) 50%, var(--blue2) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,96,0,.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #fff; }
.cta-section p  { color: rgba(255,255,255,.65); font-size: 1.05rem; }

/* ---------- PAGE HERO (interior pages) ---------- */
.page-hero {
  padding: 68px 0 52px;
  background: linear-gradient(135deg, var(--blue3) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: none;
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero-inner { position: relative; z-index: 2; text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.6); }
.page-hero p { color: #fff !important; font-size: 1.05rem; margin-top: 10px; opacity: 1 !important; text-shadow: 0 1px 12px rgba(0,0,0,.6); }
.page-hero .page-hero-sub { color: #fff !important; font-size: 1.05rem; max-width: 520px; margin: 10px auto 0; opacity: 1 !important; }

/* ---------- CARDS GERAIS (sobre, contato, etc.) ---------- */
.pm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.pm-card-hover {
  transition: all .22s;
}
.pm-card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,96,0,.3);
}

/* MVV */
.mvv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all .22s;
  position: relative;
  overflow: hidden;
}
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
}
.mvv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.mvv-card:hover::before { transform: scaleX(1); }
.mvv-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #fff4ee, #ffebd9);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: var(--orange);
  transition: all .25s;
}
.mvv-card:hover .mvv-icon { background: var(--orange); color: #fff; transform: rotate(-6deg) scale(1.08); }
.mvv-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--blue); margin-bottom: 10px; }
.mvv-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* Dados legais */
.dados-legais {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.dados-legais li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  list-style: none;
  color: var(--text);
}
.dados-legais li:last-child { border-bottom: none; }
.dados-legais li strong { min-width: 140px; color: var(--muted); font-weight: 600; flex-shrink: 0; }
.dados-legais a { color: var(--orange); }

/* Contato cards */
.contato-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: all .22s;
}
.contato-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(255,96,0,.3); }
.cc-icon {
  min-width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fff4ee, #ffebd9);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
}
.contato-card h6 { font-weight: 700; color: var(--blue); margin-bottom: 4px; font-size: 14px; }
.contato-card p, .contato-card a { font-size: 13.5px; color: var(--muted); margin: 0; }
.contato-card a:hover { color: var(--orange); }

/* Formulário */
.form-pm {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-label-pm { font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.form-control-pm {
  background: var(--bg) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: var(--radius-xs) !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  transition: border-color .2s, box-shadow .2s !important;
}
.form-control-pm:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(255,96,0,.1) !important;
  background: #fff !important;
}
.form-control-pm::placeholder { color: var(--muted) !important; }

/* Filtros */
.filter-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.filter-bar .form-control,
.filter-bar .form-select {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-xs);
  font-size: 14px;
}
.filter-bar .form-control:focus,
.filter-bar .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,96,0,.1);
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.cat-pill:hover, .cat-pill.active {
  background: #fff4ee;
  border-color: var(--orange);
  color: var(--orange);
}

/* ---------- ADMIN ---------- */
.admin-sidebar {
  background: var(--blue3);
  min-height: 100vh;
  width: 240px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 20px 0;
  overflow-y: auto;
}
.sidebar-brand {
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-weight: 800;
  font-size: 1rem;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-nav { list-style: none; padding: 14px 0; margin: 0; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  font-size: 14px;
  transition: all .15s;
  border-right: 3px solid transparent;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-right-color: var(--orange);
}
.sidebar-nav li a.active i { color: var(--orange); }
.admin-main { margin-left: 240px; padding: 28px; min-height: 100vh; background: var(--bg); }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.admin-topbar h4 { font-weight: 800; color: var(--blue); margin: 0; }
.admin-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-sm); }
.stat-card-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.stat-card h2 { font-size: 1.9rem; font-weight: 800; color: var(--blue); margin: 0; }
.stat-card p  { font-size: 12.5px; color: var(--muted); margin: 0; }
.table thead th { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); border-bottom: 2px solid var(--border); background: var(--bg); padding: 12px 14px; }
.table tbody td { border-color: var(--border); padding: 12px 14px; vertical-align: middle; font-size: 14px; color: var(--text); }
.table tbody tr:hover td { background: #fafbff; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--blue3); }
.footer-main { padding: 64px 0 40px; }
.footer-brand-name { font-weight: 800; font-size: 1.15rem; color: #fff; }
.footer-brand-name em { color: var(--orange); font-style: normal; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 10px; }
.footer-title { font-weight: 700; font-size: 13px; color: rgba(255,255,255,.9); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a { color: rgba(255,255,255,.45); font-size: 14px; transition: color .2s; display: flex; align-items: center; gap: 7px; }
.footer-links li a::before { content: '›'; color: var(--orange); font-weight: 700; }
.footer-links li a:hover { color: var(--orange); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: rgba(255,255,255,.45); font-size: 13.5px; }
.footer-contact-list li i { color: var(--orange); margin-top: 2px; min-width: 15px; font-size: 14px; }
.footer-contact-list a { color: rgba(255,255,255,.45); }
.footer-contact-list a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 14px;
  transition: all .2s;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.footer-newsletter-input {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  color: #fff !important;
  border-radius: 8px 0 0 8px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,.35) !important; }
.footer-newsletter-input:focus { border-color: var(--orange) !important; box-shadow: none !important; background: rgba(255,255,255,.12) !important; }
.footer-newsletter-btn {
  background: var(--orange) !important;
  border: none !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 0 8px 8px 0 !important;
  font-weight: 700 !important;
  transition: background .2s !important;
}
.footer-newsletter-btn:hover { background: #e05000 !important; }
.footer-bottom { background: rgba(0,0,0,.3); border-top: 1px solid rgba(255,255,255,.06); padding: 15px 0; font-size: 12px; color: rgba(255,255,255,.32); }
.footer-bottom p { margin: 0; }

/* ---------- MAP ---------- */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; }

/* ---------- EMPTY STATE ---------- */
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state i { font-size: 48px; margin-bottom: 16px; opacity: .4; }

/* ---------- ALERTS ---------- */
.alert-ok  { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; border-radius: 10px; padding: 14px 18px; font-size: 14px; }
.alert-err { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; border-radius: 10px; padding: 14px 18px; font-size: 14px; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-22px); transition: opacity .6s ease, transform .6s ease; }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(22px);  transition: opacity .6s ease, transform .6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ---------- BADGE COMPONENTS ---------- */
.badge-pm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.badge-orange { background: #fff4ee; color: var(--orange); border: 1px solid rgba(255,96,0,.2); }
.badge-blue   { background: #eff6ff; color: #1d4ed8; border: 1px solid rgba(29,78,216,.2); }
.badge-green  { background: #f0fdf4; color: #15803d; border: 1px solid rgba(21,128,61,.2); }
.badge-red    { background: #fef2f2; color: #b91c1c; border: 1px solid rgba(185,28,28,.2); }

/* ---------- WHATSAPP BTN ---------- */
.wa-float-wrap {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  max-width: 58px;
  max-height: 58px;
  overflow: visible;
}
.wa-float {
  width: 100%;
  height: 100%;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); color: #fff; }

@media (max-width: 768px) {
  .wa-float-wrap {
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    max-width: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
  }
  .wa-float {
    font-size: 26px;
    transform: none !important;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  #mainNav {
    height: auto;
    min-height: 64px;
    padding: 10px 0;
  }
  #mainNav .container {
    align-items: center;
  }
  #mainNav .navbar-toggler {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: 0 8px 20px rgba(7,18,31,.22);
    transition: all .2s ease;
  }
  #mainNav .navbar-toggler:hover {
    background: rgba(255,255,255,.14);
    transform: translateY(-1px);
  }
  #mainNav .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255,96,0,.22);
  }
  #mainNav .navbar-collapse {
    margin-top: 14px;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(18,42,68,.98), rgba(14,31,48,.98));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 38px rgba(7,18,31,.28);
    backdrop-filter: blur(10px);
  }
  #mainNav .navbar-nav {
    gap: 8px !important;
    align-items: stretch !important;
  }
  #mainNav .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 14px !important;
    border-radius: 12px;
    color: rgba(255,255,255,.94) !important;
    background: rgba(255,255,255,.05);
  }
  #mainNav .navbar-nav .nav-link:hover,
  #mainNav .navbar-nav .nav-link.active {
    background: rgba(255,255,255,.12);
    color: #fff !important;
  }
  #mainNav .navbar-nav .nav-item.ms-lg-2 {
    margin-left: 0 !important;
  }
  #mainNav .btn-loja-nav {
    justify-content: center;
    min-height: 48px;
    margin-top: 4px;
    border-radius: 12px !important;
  }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-section { min-height: auto; padding: 70px 0; }
}
@media (max-width: 768px) {
  .admin-sidebar { transform: translateX(-100%); transition: transform .3s; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; padding: 16px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-pm { width: 100%; justify-content: center; }
  .section-title { font-size: 1.5rem; }
  .footer-main { padding: 40px 0 24px; }
  .hero-cards-grid { grid-template-columns: 1fr 1fr; }
  .form-pm { padding: 20px; }
}

/* =================================================================
   ALIASES — páginas internas (sobre, produtos, blog, contato)
   ================================================================= */

/* section-label → igual a section-tag */
.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}

/* Botões Bootstrap com identidade da marca */
.btn-accent {
  background: var(--orange);
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-xs);
  box-shadow: 0 4px 16px rgba(255,96,0,.35);
  transition: all .22s;
}
.btn-accent:hover,
.btn-accent:focus {
  background: #e05000;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,96,0,.45);
}
.btn-outline-accent {
  background: transparent;
  color: var(--orange) !important;
  border: 1.5px solid var(--orange);
  font-weight: 700;
  border-radius: var(--radius-xs);
  transition: all .22s;
}
.btn-outline-accent:hover,
.btn-outline-accent:focus {
  background: var(--orange);
  color: #fff !important;
}

/* sobre-badge-float (sobre.php) → igual a sobre-anos-badge */
.sobre-badge-float {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--orange);
  color: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 28px rgba(255,96,0,.4);
}
.sobre-badge-float span { display: block; font-size: 2.2rem; line-height: 1; }
.sobre-badge-float small { display: block; font-size: 11px; opacity: .9; font-weight: 600; }

/* diferencial-item / diferencial-icon (sobre.php) → igual a dif-card / dif-icon */
.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}
.diferencial-item:hover { transform: translateX(5px); box-shadow: var(--shadow); border-color: var(--orange); }
.diferencial-icon {
  min-width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fff4ee, #ffebd9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.diferencial-item h6 { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 3px; }
.diferencial-item p  { font-size: 12.5px; color: var(--muted); margin: 0; }

/* produto-card-* (produtos.php) → igual a prod-card-* */
.produto-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.produto-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.produto-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg);
}
.produto-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform .35s;
}
.produto-card:hover .produto-card-img img { transform: scale(1.07); }
.produto-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.produto-card-categoria {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.produto-card-nome {
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 10px;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.produto-card-preco { font-size: 1.3rem; font-weight: 800; color: var(--orange); margin-top: auto; }

/* form-label-dark (produtos.php filtro) */
.form-label-dark {
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 6px;
  display: block;
}

/* post-card-* (blog.php) → igual a post-cat/post-title/post-meta */
.post-card-cat   { font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.post-card-title { font-weight: 700; font-size: 15.5px; color: var(--blue); margin-bottom: 10px; line-height: 1.35; }
.post-card-meta  { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }

/* contato-card-icon (contato.php) → igual a .cc-icon */
.contato-card-icon {
  min-width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fff4ee, #ffebd9);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

/* card-form (contato.php) → igual a .form-pm */
.card-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
