:root {
  --pc-bg: #07140e;
  --pc-bg-deep: #050f0a;
  --pc-surface: #0f1f16;
  --pc-surface-2: #15281d;
  --pc-lime: #b8e600;
  --pc-lime-dark: #9bc400;
  --pc-lime-soft: rgba(184, 230, 0, 0.14);
  --pc-text: #ffffff;
  --pc-muted: #a8b5ad;
  --pc-dark-text: #122017;
  --pc-white: #ffffff;
  --pc-light: #f4f6f4;
  --pc-card: #ffffff;
  --pc-radius: 12px;
  --pc-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.pc-body {
  margin: 0;
  background: var(--pc-bg);
  color: var(--pc-text);
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
}

.pc-container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ========== Header ========== */
.pc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 20, 14, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 230, 0, 0.12);
}

.pc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.pc-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pc-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pc-lime-soft);
  border: 1px solid rgba(184, 230, 0, 0.45);
  display: grid;
  place-items: center;
  color: var(--pc-lime);
  font-size: 1.15rem;
}

.pc-logo img {
  max-height: 44px;
  width: auto;
}

.pc-logo-text small {
  display: block;
  font-size: 0.65rem;
  color: var(--pc-muted);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.pc-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.pc-nav a {
  color: #e8efea;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.pc-nav a:hover,
.pc-nav a.active {
  color: var(--pc-lime);
}

.pc-header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pc-header-app {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(184, 230, 0, 0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.pc-header-app-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pc-lime) !important;
  text-decoration: none !important;
  font-size: 1rem;
}

.pc-header-app-icon:hover {
  background: rgba(184, 230, 0, 0.15);
}

.pc-header-app-text {
  color: #e8efea !important;
  text-decoration: none !important;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 0.2rem;
}

.pc-header-app-text:hover { color: var(--pc-lime) !important; }

.pc-btn-oficina {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--pc-lime) !important;
  font-weight: 800;
  text-decoration: none !important;
  border-radius: 999px;
  padding: 0.68rem 1rem;
  border: 2px solid var(--pc-lime);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.78rem;
  transition: 0.2s ease;
  white-space: nowrap;
}

.pc-btn-oficina:hover {
  background: var(--pc-lime);
  color: var(--pc-dark-text) !important;
  transform: translateY(-1px);
}

.pc-nav-oficina,
.pc-nav-app {
  color: var(--pc-lime) !important;
}

.pc-btn-lime,
.pc-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--pc-lime);
  color: var(--pc-dark-text) !important;
  font-weight: 800;
  text-decoration: none !important;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  border: 2px solid var(--pc-lime);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.82rem;
}

.pc-btn-lime:hover,
.pc-btn-wa:hover {
  background: var(--pc-lime-dark);
  border-color: var(--pc-lime-dark);
  transform: translateY(-1px);
  color: #000 !important;
}

.pc-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  border: 2px solid rgba(255,255,255,0.75);
  transition: 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.82rem;
}

.pc-btn-outline:hover {
  border-color: var(--pc-lime);
  color: var(--pc-lime) !important;
}

.pc-btn-outline-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--pc-lime) !important;
  font-weight: 800;
  text-decoration: none !important;
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  border: 2px solid var(--pc-lime);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.pc-btn-outline-lime:hover {
  background: var(--pc-lime);
  color: var(--pc-dark-text) !important;
}

.pc-btn-wa.block,
.pc-btn-lime.block {
  width: 100%;
  border-radius: 10px;
}

.pc-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

/* ========== Hero ========== */
.pc-hero {
  position: relative;
  min-height: clamp(520px, 84vh, 720px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(5, 15, 10, 0.92) 0%, rgba(5, 15, 10, 0.55) 48%, rgba(5, 15, 10, 0.35) 100%),
    var(--pc-hero-image, linear-gradient(135deg, #14301f, #07140e)) center/cover no-repeat;
  overflow: hidden;
}

.pc-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.pc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--pc-lime);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.pc-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--pc-lime);
}

.pc-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 1.1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.pc-hero h1 span {
  color: var(--pc-lime);
}

.pc-hero-lead {
  color: #dce6df;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.6rem;
  max-width: 34rem;
}

.pc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pc-hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pc-hero-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(7, 20, 14, 0.45);
  border: 1px solid rgba(184, 230, 0, 0.22);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  backdrop-filter: blur(6px);
}

.pc-hero-feature i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--pc-lime);
  color: var(--pc-lime);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pc-hero-feature span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}

.pc-hero-destaque {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  max-width: 100%;
  padding: 1.25rem 0.75rem;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.pc-hero-destaque span {
  font-family: "Pacifico", cursive;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 0.35rem;
  word-break: break-word;
  overflow-wrap: anywhere;
  transform: rotate(-8deg);
  transform-origin: center center;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.96;
}

@media (max-width: 1100px) {
  .pc-hero-destaque {
    min-height: auto;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
  }

  .pc-hero-destaque span {
    transform: rotate(-5deg);
    font-size: clamp(1.45rem, 5vw, 2.2rem);
  }
}

@media (max-width: 640px) {
  .pc-hero-destaque span {
    transform: rotate(-3deg);
    font-size: clamp(1.3rem, 6vw, 1.85rem);
  }
}

/* ========== Sections ========== */
.pc-section {
  padding: 4.2rem 0;
}

.pc-section-light {
  background: var(--pc-white);
  color: var(--pc-dark-text);
}

.pc-section-dark {
  background: var(--pc-bg);
  color: var(--pc-text);
}

.pc-section-muted {
  background: var(--pc-light);
  color: var(--pc-dark-text);
}

.pc-kicker {
  color: var(--pc-lime-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}

.pc-section-light .pc-kicker { color: #6a8a00; }

.pc-title {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.pc-title span { color: var(--pc-lime); }
.pc-section-light .pc-title span { color: #7aa000; }

.pc-sub {
  margin: 0.55rem 0 0;
  color: var(--pc-muted);
  line-height: 1.55;
  max-width: 36rem;
}

.pc-section-light .pc-sub,
.pc-section-muted .pc-sub {
  color: #5d6b62;
}

.pc-section-split {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 2rem;
  align-items: center;
}

/* Brands */
.pc-brands-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  justify-content: flex-start;
}

.pc-brand-logo-box {
  width: 220px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5ebe6;
  border-radius: 12px;
  padding: 1rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.pc-brand-logo-box:hover,
.pc-brand-logo-box.is-active {
  border-color: var(--pc-lime);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.pc-brand-logo-box.is-active {
  outline: 2px solid var(--pc-lime);
}

.pc-brand-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.pc-brands-more {
  color: #7aa000;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* Expertise band */
.pc-expertise {
  position: relative;
  background:
    linear-gradient(90deg, rgba(5,15,10,0.92) 0%, rgba(5,15,10,0.78) 55%, rgba(5,15,10,0.55) 100%),
    var(--pc-hero-image, linear-gradient(135deg, #14301f, #07140e)) right center/cover no-repeat;
  padding: 4rem 0;
}

.pc-expertise-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.pc-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.pc-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184, 230, 0, 0.18);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.pc-stat i {
  color: var(--pc-lime);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.4rem;
}

.pc-stat strong {
  display: block;
  color: var(--pc-lime);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.pc-stat span {
  font-size: 0.78rem;
  color: var(--pc-muted);
}

.pc-panel-card {
  background: rgba(15, 25, 18, 0.88);
  border: 1px solid rgba(184, 230, 0, 0.2);
  border-radius: 16px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--pc-shadow);
}

.pc-panel-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
}

.pc-panel-card p {
  color: var(--pc-muted);
  line-height: 1.55;
  margin: 0 0 1.2rem;
}

/* Categories */
.pc-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 1.6rem;
}

.pc-cat-card {
  background: #eef2ee;
  border-radius: 14px;
  padding: 0;
  text-decoration: none;
  color: var(--pc-dark-text);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.pc-cat-card:hover {
  border-color: var(--pc-lime);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.pc-cat-media {
  position: relative;
  height: 180px;
  background: #dce5dc;
  overflow: hidden;
}

.pc-cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Evita borrão por interpolação/transform */
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.pc-cat-card:hover .pc-cat-media img {
  /* sem scale — scale causa imagem “desfocada” no hover */
  filter: brightness(1.03);
}

.pc-cat-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #7aa000;
  font-size: 2rem;
  background: linear-gradient(145deg, #e8eee8, #d5dfd5);
}

.pc-cat-body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}

.pc-cat-card h4 {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pc-cat-card span {
  color: #7aa000;
  font-weight: 700;
  font-size: 0.82rem;
}

.pc-cat-cta {
  background: var(--pc-surface);
  color: #fff;
  border-radius: 14px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  min-height: 150px;
}

.pc-cat-cta h4 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.25;
}

.pc-cat-cta p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 0.88rem;
}

/* Filters */
.pc-filters {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0.9rem;
  margin: 1.4rem 0 1.6rem;
}

.pc-section-light .pc-filters {
  background: #eef2ee;
  border-color: #dde5df;
}

.pc-filters input,
.pc-filters select {
  width: 100%;
  background: #0a1610;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 10px;
  padding: 0.78rem 0.9rem;
}

.pc-section-light .pc-filters input,
.pc-section-light .pc-filters select {
  background: #fff;
  color: var(--pc-dark-text);
  border-color: #d5ddd7;
}

.pc-filters button {
  background: var(--pc-lime);
  border: none;
  color: var(--pc-dark-text);
  font-weight: 800;
  border-radius: 10px;
  padding: 0.78rem 1.1rem;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Product grid/cards */
.pc-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}

.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.pc-bike-card {
  background: var(--pc-card);
  color: var(--pc-dark-text);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--pc-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease;
}

.pc-bike-card:hover {
  transform: translateY(-4px);
}

.pc-bike-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #eef2ee;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-bike-media > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pc-bike-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.pc-bike-brand-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 72px;
  height: 40px;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  padding: 0.3rem 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pc-bike-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.pc-bike-body {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.pc-bike-body h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.pc-bike-body h3 a {
  color: inherit;
  text-decoration: none;
}

.pc-bike-cat {
  color: #6c757d;
  font-size: 0.84rem;
  margin: 0;
  font-weight: 600;
}

.pc-bike-desc {
  color: #5c636a;
  font-size: 0.88rem;
  line-height: 1.4;
  margin: 0.2rem 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}

.pc-bike-body .pc-btn-wa,
.pc-bike-body .pc-btn-lime {
  margin-top: auto;
}

.pc-side-card {
  background: var(--pc-surface-2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  border: 1px solid rgba(184, 230, 0, 0.18);
  min-height: 100%;
}

.pc-side-card h3 {
  margin: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
}

.pc-side-card p {
  margin: 0;
  color: var(--pc-muted);
  line-height: 1.5;
}

.pc-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.pc-showcase-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 0.85fr;
  gap: 1.15rem;
}

.pc-empty {
  text-align: center;
  color: var(--pc-muted);
  padding: 3rem 1rem;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 14px;
}

.pc-section-light .pc-empty {
  color: #6a776f;
  border-color: #d5ddd7;
}

.pc-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pc-pagination a,
.pc-pagination span {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background: var(--pc-surface);
  border: 1px solid rgba(255,255,255,0.08);
}

.pc-pagination a.active,
.pc-pagination span.active {
  background: var(--pc-lime);
  color: var(--pc-dark-text);
  font-weight: 800;
}

/* Diff / sobre */
.pc-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.pc-diff-item {
  text-align: center;
  padding: 1.2rem 0.8rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184, 230, 0, 0.12);
  border-radius: 14px;
}

.pc-diff-item i {
  font-size: 1.7rem;
  color: var(--pc-lime);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.pc-diff-item h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 800;
}

.pc-diff-item p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Visit / CTA band */
.pc-visit {
  background:
    linear-gradient(90deg, rgba(5,15,10,0.9), rgba(5,15,10,0.55)),
    var(--pc-hero-image, linear-gradient(135deg, #14301f, #07140e)) center/cover no-repeat;
  padding: 3.5rem 0;
}

.pc-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.pc-visit h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase;
  font-weight: 800;
}

.pc-visit p {
  color: #d7e0da;
  margin: 0 0 1rem;
  line-height: 1.55;
}

/* Footer */
.pc-footer {
  padding: 3.5rem 0 1.2rem;
  background: var(--pc-bg-deep);
  border-top: 1px solid rgba(184, 230, 0, 0.1);
}

.pc-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr 1.1fr;
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.pc-footer h5 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--pc-lime);
}

.pc-footer p,
.pc-footer a,
.pc-footer li {
  color: var(--pc-muted);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.55;
}

.pc-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-footer li { margin-bottom: 0.45rem; }
.pc-footer a:hover { color: var(--pc-lime); }

.pc-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pc-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(184, 230, 0, 0.35);
  display: grid;
  place-items: center;
  color: #fff !important;
}

.pc-social a:hover {
  background: var(--pc-lime);
  color: var(--pc-dark-text) !important;
}

.pc-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  color: var(--pc-muted);
  font-size: 0.85rem;
}

.pc-footer-admin {
  color: rgba(215, 224, 218, 0.55) !important;
  text-decoration: none !important;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pc-footer-admin:hover {
  color: rgba(184, 230, 0, 0.75) !important;
}

.pc-contact-line {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}

.pc-contact-line i { color: var(--pc-lime); margin-top: 0.15rem; }

/* Floating WhatsApp */
.pc-fab-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pc-lime);
  color: var(--pc-dark-text) !important;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  box-shadow: 0 10px 28px rgba(184, 230, 0, 0.35);
  text-decoration: none !important;
}

.pc-fab-wa:hover {
  transform: scale(1.06);
  background: var(--pc-lime-dark);
}

/* Detail page leftovers */
.pc-detail { padding: 2.5rem 0 4rem; }
.pc-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}
.pc-detail-media {
  background: var(--pc-surface);
  border-radius: 16px;
  overflow: hidden;
}
.pc-detail-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.pc-detail-panel {
  background: #fff;
  color: #1b1d20;
  border-radius: 16px;
  padding: 1.5rem;
}
.pc-detail-panel h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}

.pc-detail-desc {
  line-height: 1.6;
  color: #444;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  margin: 0;
}
.pc-link {
  color: var(--pc-lime);
  text-decoration: none;
  font-weight: 700;
}
.pc-section-light .pc-link { color: #6a8a00; }

/* Oficina CTA */
.pc-oficina-cta {
  background: linear-gradient(90deg, #0a1610 0%, #122018 100%);
  border-top: 1px solid rgba(184, 230, 0, 0.12);
  border-bottom: 1px solid rgba(184, 230, 0, 0.12);
  padding: 2.2rem 0;
}

.pc-oficina-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pc-oficina-cta .pc-title { margin: 0.2rem 0 0.5rem; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.pc-oficina-cta .pc-sub { margin: 0; max-width: 520px; }

/* App banner (referência visual) */
.pc-app-banner {
  position: relative;
  padding: 3.2rem 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 11, 0.92) 0%, rgba(6, 16, 11, 0.78) 55%, rgba(6, 16, 11, 0.88) 100%),
    var(--pc-hero-image, linear-gradient(135deg, #0a1610, #1a2e20));
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(184, 230, 0, 0.12);
}

.pc-app-banner-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: center;
}

.pc-app-banner-copy,
.pc-app-banner-visit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pc-app-phone-icon,
.pc-app-map-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--pc-lime);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--pc-lime);
  font-size: 1.55rem;
  flex-shrink: 0;
}

.pc-app-banner h2,
.pc-app-banner h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.pc-app-banner h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
.pc-app-banner h3 { font-size: 1.15rem; }

.pc-app-banner p {
  margin: 0 0 1rem;
  color: #d7e0da;
  line-height: 1.5;
  max-width: 460px;
}

.pc-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.pc-store-badge {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 8px;
  line-height: 0;
  text-decoration: none !important;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pc-store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.pc-store-badge img {
  display: block;
  width: 155px;
  height: 46px;
  object-fit: contain;
}

.pc-footer-app .pc-store-badge img {
  width: 148px;
  height: 44px;
}

@keyframes pc-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.pc-hero-grid,
.pc-brand-logo-box {
  animation: pc-fade-up 0.65s ease both;
}

@media (max-width: 1100px) {
  .pc-showcase-main { grid-template-columns: repeat(2, 1fr); }
  .pc-showcase-main .pc-side-card { grid-column: 1 / -1; }
  .pc-grid { grid-template-columns: repeat(2, 1fr); }
  .pc-footer-grid { grid-template-columns: 1fr 1fr; }
  .pc-expertise-grid,
  .pc-section-split,
  .pc-hero-grid,
  .pc-visit-grid,
  .pc-app-banner-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .pc-nav,
  .pc-header .desktop-only { display: none; }
  .pc-menu-toggle { display: inline-grid; place-items: center; }
  .pc-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #0a1610;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(184, 230, 0, 0.15);
    gap: 0.9rem;
  }
  .pc-header-inner { position: relative; }
  .pc-filters { grid-template-columns: 1fr; }
  .pc-diff-grid { grid-template-columns: 1fr 1fr; }
  .pc-stat-row { grid-template-columns: 1fr; }
  .pc-detail-grid { grid-template-columns: 1fr; }
  .pc-nav-oficina,
  .pc-nav-app {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(184, 230, 0, 0.45);
    border-radius: 999px;
  }
}

@media (max-width: 640px) {
  .pc-grid,
  .pc-showcase-main { grid-template-columns: 1fr; }
  .pc-diff-grid,
  .pc-footer-grid,
  .pc-visit-grid { grid-template-columns: 1fr; }
  .pc-btn-lime,
  .pc-btn-wa,
  .pc-btn-outline,
  .pc-btn-oficina { min-height: 46px; }
  .pc-brand-logo-box { width: 160px; height: 100px; }
  .pc-store-badge img { width: 150px; height: 44px; }
  .pc-oficina-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .pc-brand-logo-box { width: 100%; max-width: 180px; height: 108px; }
}
