/* ========================================================
   Umlar — Design System v2 (Apple-inspired, minimal)
   Cores: #4a2c35 brand | #c9a96e gold | #f9f6f1 cream
   ======================================================== */

:root {
  --brand:       #4a2c35;
  --brand-dark:  #2d1a20;
  --brand-mid:   #5e3544;
  --gold:        #c9a96e;
  --gold-light:  #e8d5aa;
  --cream:       #f9f6f1;
  --cream-soft:  #f2ede6;
  --black:       #000000;
  --near-black:  #0a0a0a;
  --text:        #1d1d1f;  /* Apple's exact text color */
  --text-sec:    #6e6e73;  /* Apple secondary */
  --white:       #ffffff;
  --border:      #d2d2d7;  /* Apple border */
  --wa-green:    #25d366;
  --wa-dark:     #128c7e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, 'SF Pro Display', 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--brand-mid); border-radius: 3px; }

/* ==========================================================
   NAVBAR — transparent → solid on scroll
   ========================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 56px;
  display: flex;
  align-items: center;
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
  background: rgba(30,12,18,.72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-nav.scrolled {
  background: rgba(45,26,32,.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  border-bottom-color: rgba(255,255,255,.1);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
  transition: opacity .2s;
}
.nav-logo img:hover { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }

/* ── Mega Menu (Apple-style) ────────────────────────── */
.nav-dropdown { position: static; }
.nav-link-trigger {
  cursor: pointer;
  user-select: none;
  display: flex; align-items: center; gap: 4px;
}
.nav-link-trigger i { font-size: 9px; transition: transform .2s; }
.nav-dropdown.open .nav-link-trigger i { transform: rotate(180deg); }

/* Blur overlay — cobre a página quando menu abre */
.nav-mega-overlay {
  position: fixed;
  top: 56px; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 994;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s, visibility .28s;
}
.nav-mega-overlay.visible { opacity: 1; visibility: visible; }

/* Mega panel */
.nav-mega {
  position: fixed;
  top: 56px; left: 0; right: 0;
  background: rgba(22,8,12,.97);
  backdrop-filter: saturate(140%) blur(24px);
  -webkit-backdrop-filter: saturate(140%) blur(24px);
  border-top: 1px solid rgba(255,255,255,.08);
  z-index: 995;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  pointer-events: none;
}
.nav-mega.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 48px;
  display: grid;
  gap: 48px;
}

/* Mega panel — seção genérica */
.mega-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.mega-big-links { display: flex; flex-direction: column; gap: 2px; }
.mega-big-link {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: rgba(255,255,255,.88);
  letter-spacing: -.03em;
  line-height: 1.2;
  padding: 5px 0;
  transition: color .15s;
}
.mega-big-link:hover { color: var(--gold); }

.mega-small-links { display: flex; flex-direction: column; gap: 4px; }
.mega-small-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  padding: 5px 0;
  transition: color .15s;
}
.mega-small-link:hover { color: rgba(255,255,255,.9); }
.mega-small-link i { margin-right: 6px; font-size: 12px; }

/* Categorias: grid de thumbnails */
.mega-cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.mega-cat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 14px 8px;
  border-radius: 12px;
  transition: background .15s;
  cursor: pointer;
}
.mega-cat-item:hover { background: rgba(255,255,255,.06); }
.mega-cat-thumb {
  width: 56px; height: 56px; border-radius: 12px;
  object-fit: cover; background: rgba(255,255,255,.1);
}
.mega-cat-thumb-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(201,169,110,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold);
}
.mega-cat-name {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75);
  text-align: center; line-height: 1.3;
}
.mega-cat-item:hover .mega-cat-name { color: #fff; }

/* Divider vertical */
.mega-vdivider {
  width: 1px;
  background: rgba(255,255,255,.1);
  align-self: stretch;
}

/* CTA final do mega menu */
.mega-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--brand-dark) !important;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px !important;
  font-weight: 700 !important;
  margin-top: 20px;
  transition: opacity .15s;
}
.mega-cta:hover { opacity: .88; color: var(--brand-dark) !important; }

/* Fornecedor link no mega menu */
.mega-supplier-link {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 12px 16px;
  margin-top: 16px; transition: background .15s;
}
.mega-supplier-link:hover { background: rgba(255,255,255,.09); }
.mega-supplier-link-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(201,169,110,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mega-supplier-text strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.mega-supplier-text span  { font-size: 12px; color: rgba(255,255,255,.45); }
.mega-supplier-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px; }
.mega-supp-btn {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  border-radius: 8px; padding: 7px 10px; font-size: 12px; font-weight: 600;
  text-decoration: none; transition: background .15s, color .15s; white-space: nowrap;
}
.mega-supp-btn i { font-size: 11px; }
.mega-supp-btn-login {
  background: rgba(201,169,110,.18); color: #c9a96e; border: 1px solid rgba(201,169,110,.3);
}
.mega-supp-btn-login:hover { background: rgba(201,169,110,.3); color: #d4b87e; }
.mega-supp-btn-register {
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.1);
}
.mega-supp-btn-register:hover { background: rgba(255,255,255,.12); color: #fff; }

.mega-app-row { display: flex; gap: 8px; margin-top: 12px; }
.mega-app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 8px 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  text-decoration: none;
  transition: background .15s;
}
.mega-app-badge:hover { background: rgba(255,255,255,.12); }
.mega-app-badge > .bi { font-size: 18px; color: rgba(255,255,255,.75); flex-shrink: 0; }
.mega-app-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.mega-app-badge small { font-size: 9px; color: rgba(255,255,255,.4); font-weight: 400; }
.mega-app-badge span:last-child { font-size: 11px; font-weight: 700; color: #fff; }

.mobile-app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 9px 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  text-decoration: none;
  transition: background .15s;
}
.mobile-app-badge:hover { background: rgba(255,255,255,.12); }
.mobile-app-badge > .bi { font-size: 20px; color: rgba(255,255,255,.75); flex-shrink: 0; }
.mobile-app-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.mobile-app-badge small { font-size: 9px; color: rgba(255,255,255,.4); font-weight: 400; }
.mobile-app-badge span:last-child { font-size: 12px; font-weight: 700; color: #fff; }

@media (max-width: 900px) {
  .nav-mega-inner { padding: 28px 20px 36px; }
  .mega-cats-grid { grid-template-columns: repeat(3,1fr); }
  .mega-big-link { font-size: 22px; }
}

/* ── Manter compatibilidade para itens que não usam mega ── */
.nav-dropdown-item {
  display: block; font-size: 14px; color: rgba(255,255,255,.65);
  padding: 7px 0; font-weight: 500; transition: color .15s;
}
.nav-dropdown-item:hover { color: #fff; }

/* Nav right CTA buttons */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  transition: transform .15s, background .15s;
}
.btn-nav-wa:hover { background: #1fba5a; color: var(--white); transform: scale(1.02); }

.btn-nav-quote {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  transition: background .15s;
}
.btn-nav-quote:hover { background: rgba(255,255,255,.25); color: var(--white); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}
.mobile-nav.open { display: flex; flex-direction: column; }
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
}
.mobile-nav-drawer {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 280px;
  background: var(--brand-dark);
  padding: 60px 24px 24px;
  overflow-y: auto;
}
.mobile-nav-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.6rem;
  cursor: pointer;
}
.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  margin-top: 20px;
}

/* ==========================================================
   HERO — Full-screen photo, Apple style
   ========================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 8s ease;
  will-change: opacity, transform;
  opacity: 0;
}
.hero-bg.active {
  opacity: 1;
  transform: scale(1.02);
}
.hero.loaded .hero-bg.active { transform: scale(1); }

/* Carousel dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.hero-dot.active {
  background: var(--gold, #c9a84c);
  transform: scale(1.35);
}
@media (max-width: 640px) {
  .hero-dots { right: 20px; bottom: 20px; }
}

/* Gradient overlay — dark bottom for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.05) 0%,
    rgba(0,0,0,.02) 40%,
    rgba(0,0,0,.55) 75%,
    rgba(0,0,0,.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 40px 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 680px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.5;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Primary CTA — WhatsApp (most important lead) */
.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-hero-wa:hover {
  color: var(--white);
  background: #20c158;
  transform: scale(1.03);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* Secondary CTA — Orçamento */
.btn-hero-orc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background .2s, border-color .2s;
}
.btn-hero-orc:hover {
  color: var(--white);
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  z-index: 2;
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.3);
}

/* ==========================================================
   ANNOUNCEMENT BAR (like Apple's promo bar)
   ========================================================== */
.promo-bar {
  background: var(--brand);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
}
.promo-bar a {
  color: var(--gold);
  font-weight: 700;
  margin-left: 12px;
}
.promo-bar a:hover { opacity: .85; }

/* ==========================================================
   FEATURE STRIP — like Apple's "Now available" bar
   ========================================================== */
.feature-strip {
  background: var(--near-black);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  overflow: hidden;
}

.fstrip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.fstrip-item i { color: var(--gold); font-size: 1.1rem; }
.fstrip-sep { color: rgba(255,255,255,.15); font-size: 1.5rem; }

/* ==========================================================
   SECTION — Apple section structure
   ========================================================== */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 100px 40px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.section-title.white { color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-sec);
  max-width: 560px;
  line-height: 1.6;
}

.section-sub.white { color: rgba(255,255,255,.7); }

/* ==========================================================
   CATEGORIES — Apple product grid style
   ========================================================== */
.cats-section {
  background: var(--cream);
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.cat-tile {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.25,.46,.45,.94);
}

.cat-tile:hover { transform: scale(1.02); }

.cat-tile:first-child { grid-column: span 2; aspect-ratio: 1; }

.cat-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cat-tile:hover .cat-tile-img { transform: scale(1.06); }

.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.cat-tile-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.cat-tile-sub {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

.cat-tile-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

/* Fallback sem imagem */
.cat-tile-no-img {
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
}

/* ==========================================================
   PRODUCT SPOTLIGHT — like Apple iPhone close-up sections
   ========================================================== */
.spotlight {
  background: var(--brand-dark);
  overflow: hidden;
}

.spotlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.spotlight-inner.reversed { direction: rtl; }
.spotlight-inner.reversed > * { direction: ltr; }

.spotlight-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}

.spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.spotlight-img-wrap:hover .spotlight-img { transform: scale(1.04); }

.spotlight-text .section-title { color: var(--white); }
.spotlight-text .section-sub { color: rgba(255,255,255,.65); margin-bottom: 32px; }

.btn-spotlight-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 50px;
  transition: transform .2s, background .2s;
  margin-right: 12px;
  margin-bottom: 10px;
}
.btn-spotlight-wa:hover { color: var(--white); background: #20c158; transform: scale(1.03); }

.btn-spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  transition: opacity .2s;
}
.btn-spotlight-link:hover { color: var(--gold); opacity: .8; }
.btn-spotlight-link i { font-size: 12px; }

/* ==========================================================
   STATS BAND
   ========================================================== */
.stats-band {
  background: var(--brand-dark);
  padding: 64px 40px;
}

.stats-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.04em;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  font-weight: 400;
}

/* ==========================================================
   PRODUCTS — Clean grid
   ========================================================== */
.products-section { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 60px;
}

.prod-card {
  background: var(--white);
  padding: 32px;
  position: relative;
  transition: background .2s;
  cursor: pointer;
}

.prod-card:hover { background: var(--cream); }

.prod-card-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 4/3;
  background: var(--cream);
}

.prod-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.prod-card:hover .prod-card-img { transform: scale(1.05); }

.prod-card-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.prod-card-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.prod-card-price {
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 16px;
}

.prod-card-price strong { color: var(--brand); font-size: 16px; }

.prod-card-actions {
  display: flex;
  gap: 8px;
}

.btn-pcard-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 9px;
  border-radius: 10px;
  transition: background .15s;
}
.btn-pcard-wa:hover { background: #1fba5a; color: var(--white); }

.btn-pcard-orc {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--brand);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 9px;
  border-radius: 10px;
  transition: background .15s;
}
.btn-pcard-orc:hover { background: var(--brand-dark); color: var(--white); }

/* ==========================================================
   HOW IT WORKS — Clean horizontal steps
   ========================================================== */
.how-section {
  background: var(--cream);
  padding: 100px 40px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 50%, var(--brand) 100%);
  opacity: .3;
  z-index: 0;
}

.how-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.how-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  font-weight: 800;
  position: relative;
}

.how-step-num.brand { background: var(--brand); color: var(--white); box-shadow: 0 4px 20px rgba(74,44,53,.35); }
.how-step-num.gold  { background: var(--gold);  color: var(--brand-dark); box-shadow: 0 4px 20px rgba(201,169,110,.4); }

.how-step-icon { font-size: 1.2rem; }

.how-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.how-step-desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.55;
}

/* ==========================================================
   TESTIMONIAL / QUOTE
   ========================================================== */
.testimonial-section {
  background: var(--brand);
  padding: 80px 40px;
  text-align: center;
}

.testimonial-quote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 24px;
}

.testimonial-author {
  font-size: 14px;
  color: rgba(255,255,255,.6);
}

.testimonial-gold {
  color: var(--gold);
  font-weight: 600;
}

/* ==========================================================
   CTA FINAL — Dark, Apple style
   ========================================================== */
.final-cta {
  background: var(--near-black);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,44,53,.5) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.final-cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 44px;
  position: relative;
}

.final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.btn-final-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-final-wa:hover {
  color: var(--white);
  background: #20c158;
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

.btn-final-orc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  transition: background .2s, transform .2s;
}
.btn-final-orc:hover { color: var(--white); background: var(--brand-mid); transform: scale(1.02); }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: #111;
  color: rgba(255,255,255,.6);
  padding: 64px 40px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: .7;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  transition: background .15s;
}
.footer-wa-btn:hover { background: #1fba5a; color: var(--white); }

.footer-app-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.footer-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.18);
  transition: background .15s, color .15s;
  text-decoration: none;
}
.footer-app-btn:hover { background: rgba(255,255,255,.15); color: #fff; }
.footer-app-soon { opacity: .45; cursor: default; }
.footer-app-soon small { font-size: 10px; font-weight: 400; margin-left: 2px; }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ==========================================================
   WHATSAPP FLOAT — SUPER prominente
   ========================================================== */
.wa-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4);
  text-decoration: none;
  animation: wa-pulse 3s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.wa-float-btn:hover {
  color: var(--white);
  background: #20c158;
  transform: scale(1.05);
  animation: none;
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}

.wa-float-icon { font-size: 1.3rem; line-height: 1; }

.wa-float-text { display: flex; flex-direction: column; line-height: 1.1; }
.wa-float-text strong { font-size: 14px; }
.wa-float-text small { font-size: 11px; font-weight: 400; opacity: .85; }

@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 24px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
  50%  { box-shadow: 0 4px 24px rgba(37,211,102,.5), 0 0 0 12px rgba(37,211,102,.0); }
  100% { box-shadow: 0 4px 24px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.0); }
}

/* Mobile: ícone só */
@media (max-width: 640px) {
  .wa-float-btn { padding: 16px; border-radius: 50%; }
  .wa-float-text { display: none; }
  .wa-float-icon { font-size: 1.6rem; }
}

/* ==========================================================
   BREADCRUMB
   ========================================================== */
.breadcrumb-bar {
  background: var(--cream);
  padding: 10px 40px;
  border-bottom: 1px solid var(--border);
  margin-top: 56px; /* navbar height */
}
.breadcrumb { margin: 0; font-size: 13px; }
.breadcrumb-item a { color: var(--brand); }
.breadcrumb-item+.breadcrumb-item::before { color: var(--text-sec); }
.breadcrumb-item.active { color: var(--text-sec); }

/* ==========================================================
   CATEGORY PAGE
   ========================================================== */
.cat-hero {
  position: relative;
  height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 56px;
}

.cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 100%);
}

.cat-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
}

.cat-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.04em;
  margin-bottom: 10px;
}

.cat-hero-sub { color: rgba(255,255,255,.7); font-size: 15px; margin-bottom: 20px; }

/* Products grid in category */
.prods-grid-cat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product card in category page */
.pcard {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.pcard:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-2px); }

.pcard-img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.pcard-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pcard:hover .pcard-img { transform: scale(1.04); }

.pcard-body { padding: 20px; flex: 1; }
.pcard-cat { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.pcard-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.pcard-desc { font-size: 14px; color: var(--text-sec); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; }
.pcard-tiers { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.pcard-tier-badge {
  font-size: 12px;
  background: var(--cream);
  color: var(--brand);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
  border: 1px solid var(--cream-soft);
}

.pcard-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-pcard-wa2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
  transition: background .15s;
}
.btn-pcard-wa2:hover { background: #1fba5a; color: var(--white); }

.btn-pcard-orc2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--brand);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
}
.btn-pcard-orc2:hover { background: var(--brand-dark); color: var(--white); }

/* ==========================================================
   QUOTE FORM PAGE
   ========================================================== */
.quote-page {
  padding-top: 56px;
  min-height: 100vh;
  background: var(--cream);
}

.quote-page-header {
  background: var(--brand-dark);
  padding: 60px 40px;
  text-align: center;
}

.quote-form-wrap {
  max-width: 900px;
  margin: -30px auto 60px;
  padding: 0 20px;
}

.quote-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  overflow: hidden;
}

.quote-card-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-card-header h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.quote-step-badge {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
}

/* Product select card in quote form */
.pselect-card {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.pselect-card:hover { border-color: var(--brand); }
.pselect-card.selected { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(74,44,53,.12); }

.pselect-img { width: 100%; height: 110px; object-fit: cover; }
.pselect-body { padding: 10px 12px; }
.pselect-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.pselect-cat { font-size: 11px; color: var(--text-sec); }
.pselect-qty { margin-top: 10px; display: none; }
.pselect-card.selected .pselect-qty { display: block; }
.price-preview-tag { font-size: 12px; color: var(--brand); font-weight: 600; margin-top: 4px; min-height: 16px; }

/* ==========================================================
   SUCCESS PAGE
   ========================================================== */
.success-page {
  padding-top: 56px;
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 20px 60px;
}

.success-box {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.success-icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: popIn .5s cubic-bezier(.34,1.56,.64,1);
}

@keyframes popIn { 0%{transform:scale(0);opacity:0} 100%{transform:scale(1);opacity:1} }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-tile:first-child { grid-column: span 1; aspect-ratio: 3/4; }
  .spotlight-inner { grid-template-columns: 1fr; gap: 40px; }
  .spotlight-inner.reversed { direction: ltr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .prods-grid-cat { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .section { padding: 60px 20px; }
  .section-full { padding: 60px 20px; }
  .hero-content { padding: 40px 20px 60px; }
  .hero-headline { font-size: 2.4rem; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .prods-grid-cat { grid-template-columns: 1fr; padding: 32px 20px; }
  .cat-hero-content { padding: 24px 20px; }
  .breadcrumb-bar { padding: 10px 20px; margin-top: 56px; }
  .final-cta { padding: 80px 20px; }
  .testimonial-section { padding: 60px 20px; }
}
