:root {
  --white: #ffffff;
  --off: #fafbfc;
  --grey-50: #f5f6f8;
  --grey-100: #eef0f3;
  --grey-200: #dfe2e8;
  --grey-300: #c5c9d2;
  --grey-400: #9da3b0;
  --grey-500: #6e7584;
  --grey-600: #4a5064;
  --grey-700: #333847;
  --grey-800: #1e2230;
  --grey-900: #111320;
  --orange: #ff6b2c;
  --orange-bright: #ff8c42;
  --orange-light: #fff4ed;
  --orange-100: #ffe8d6;
  --blue: #0078ff;
  --blue-light: #e8f4ff;
  --green: #00c853;
  --green-light: #e6faf0;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 30px rgba(17,19,32,.06);
  --shadow-md: 0 20px 55px rgba(17,19,32,.10);
  --shadow-lg: 0 24px 70px rgba(17,19,32,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@keyframes page-soft-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes page-soft-leave {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg,#fff 0%, #f9fafb 100%);
  color: var(--grey-700);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: page-soft-enter 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.page-leaving {
  animation: page-soft-leave 160ms ease both;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body,
  body.page-leaving {
    animation: none;
  }
}

a { text-decoration: none; color: inherit; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }

.container { width: 100%; padding: 0 20px; margin: 0 auto; max-width: 1200px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.3s ease;
}

.nav-logo {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--grey-900);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo span {
  background: linear-gradient(135deg, var(--orange), #ff9a5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo em { font-style: normal; color: var(--grey-400); font-size: 0.72rem; }

.brand-logo-img {
  width: min(200px, 42vw);
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .brand-logo-img {
    width: min(200px, 58vw);
    max-height: 52px;
  }
}

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

.nav-links a {
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--grey-500);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.nav-links a:hover { background: var(--grey-50); color: var(--grey-800); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  color: #fff;
  box-shadow: 0 2px 12px rgba(255,107,44,0.2);
  font-weight: 700;
}
.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, #ff8c42, var(--orange));
  box-shadow: 0 4px 20px rgba(255,107,44,0.35);
  transform: translateY(-1px);
}

.btn {
  border: none;
  border-radius: 14px;
  padding: 16px 24px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,107,44,0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,107,44,0.4);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  width: 20px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.btn-secondary {
  background: #fff;
  color: var(--grey-900);
  border: 1px solid var(--grey-200);
}

.section {
  padding: 80px 0 60px;
  position: relative;
}

.section-title {
  margin: 0;
  color: var(--grey-900);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: -0.03em;
  text-align: center;
  font-weight: 900;
}

.section-desc {
  margin: 0;
  color: var(--grey-500);
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
  margin: 20px auto 0;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1000;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 32, 0.4);
  backdrop-filter: blur(6px);
  z-index: 1;
}

.modal-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 430px);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-card {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 24px 70px rgba(17,19,32,0.2), 0 0 0 1px rgba(0,0,0,0.03);
}

.login-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.login-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  color: var(--grey-600);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.login-close:hover {
  background: var(--orange-light);
  border-color: var(--orange-100);
  color: var(--orange);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label {
  font-weight: 800;
  color: var(--grey-900);
}

.field input {
  width: 100%;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 13px 16px;
  background: var(--grey-50);
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.field input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,44,.1);
  background: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--orange);
}

.title {
  margin: 0;
  color: var(--grey-900);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: -0.03em;
  text-align: center;
  font-weight: 900;
}

.notice {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--blue-light);
  border: 1px solid rgba(0,120,255,.18);
  color: var(--grey-700);
}

/* Product detail page */
.pdp-wrap {
  padding-top: 32px;
  padding-bottom: 60px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.product-page-main {
  min-height: 100vh;
  padding: 24px 24px 40px;
  width: 100%;
}

.pdp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--grey-400);
  font-size: 0.82rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.pdp-breadcrumb a {
  color: var(--grey-500);
  font-weight: 600;
  transition: color 0.2s ease;
}

.pdp-breadcrumb a:hover {
  color: var(--orange);
}

.pdp-breadcrumb span {
  color: var(--grey-300);
}

/* ---- layout Amazon ---- */
.pdp-grid {
  display: grid;
  grid-template-columns: 80px 420px 1fr;
  gap: 16px;
  align-items: start;
}

/* coluna 1: thumbnails verticais */
.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 80px;
}
.pdp-thumb {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  max-width: 70px;
  max-height: 70px;
  border-radius: 8px;
  border: 2px solid var(--grey-100);
  background: #fff;
  object-fit: contain;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.18s;
  display: block;
}
.pdp-thumb:hover, .pdp-thumb.active { border-color: var(--orange); }

.pdp-thumb-more {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  border-radius: 8px;
  border: 2px solid var(--grey-200);
  background: var(--grey-50);
  color: var(--grey-600);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  transition: all 0.2s;
}
.pdp-thumb-more span { font-size: 0.65rem; font-weight: 500; }
.pdp-thumb-more:hover { border-color: var(--orange); color: var(--orange); background: #fff; }

.pdp-zoom-lens {
  display: none;
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 1px rgba(255,107,44,0.3), 0 4px 20px rgba(0,0,0,0.15);
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
  background-repeat: no-repeat;
  cursor: crosshair;
}

/* coluna 2: imagem principal */
.pdp-gallery {
  width: 420px;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  overflow: hidden;
}

.pdp-main-media {
  background: linear-gradient(145deg, #f8f9fc, #edf0f7);
  border-radius: 12px;
  width: 388px;
  height: 388px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

.pdp-main-media::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,44,0.07) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.pdp-main-media::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
  background: radial-gradient(circle, rgba(0,120,255,0.05) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.pdp-main-emoji {
  font-size: clamp(5rem, 12vw, 9rem);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.06));
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.pdp-main-media:hover .pdp-main-emoji {
  transform: scale(1.08) rotate(-3deg);
}

.pdp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  color: #fff;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,107,44,0.25);
  z-index: 2;
}

/* coluna 3: info */
.pdp-info {
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.pdp-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.pdp-title {
  margin: 0 0 10px;
  color: var(--grey-900);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pdp-sku {
  margin: 0 0 0;
  color: var(--grey-400);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  background: var(--grey-50);
  border-radius: 8px;
  display: inline-block;
  letter-spacing: 0.02em;
  border: 1px solid var(--grey-100);
}

/* quantidade na PDP */
.pdp-qty-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pdp-qty-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-500);
}
.pdp-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--grey-100);
  border-radius: 10px;
  overflow: hidden;
}
.pdp-qty-btn {
  width: 36px;
  height: 36px;
  background: #f8f9fc;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey-700);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-qty-btn:hover { background: var(--orange-light); color: var(--orange); }
.pdp-qty-input {
  width: 48px;
  height: 36px;
  border: none;
  border-left: 1.5px solid var(--grey-100);
  border-right: 1.5px solid var(--grey-100);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--grey-900);
  background: #fff;
  outline: none;
  -moz-appearance: textfield;
}
.pdp-qty-input::-webkit-inner-spin-button,
.pdp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* quantidade no carrinho drawer */
.cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--grey-100);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  background: #f8f9fc;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey-600);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-qty-btn:hover { background: var(--orange-light); color: var(--orange); }
.cart-qty-input {
  width: 36px;
  height: 28px;
  border: none;
  border-left: 1.5px solid var(--grey-100);
  border-right: 1.5px solid var(--grey-100);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grey-900);
  background: #fff;
  outline: none;
  -moz-appearance: textfield;
}
.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* botões de ação logo abaixo do título */
.pdp-actions {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.pdp-quote-btn {
  flex: 1;
  min-width: 180px;
}

.pdp-cart-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  color: var(--grey-700);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.pdp-cart-btn:hover {
  background: var(--orange-light);
  border-color: var(--orange);
  color: var(--orange);
}
.pdp-cart-btn.in-cart {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.pdp-cart-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.pdp-divider {
  border: none;
  border-top: 1px solid var(--grey-100);
  margin: 20px 0;
}

.pdp-desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdp-desc {
  color: var(--grey-600);
  font-size: 0.92rem;
  line-height: 1.75;
}

.pdp-desc-toggle {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.pdp-desc-toggle:hover { opacity: 0.75; }

.pdp-qty-note {
  margin: 12px 0 0;
  color: var(--grey-400);
  font-size: 0.82rem;
  font-style: italic;
}

.pdp-features {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--grey-700);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--grey-50);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.pdp-features li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

.pdp-features li:hover {
  background: #fff;
  border-color: var(--grey-100);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pdp-btn {
  display: flex;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 16px 20px;
  font-weight: 900;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}

.pdp-btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,107,44,0.3);
}

.pdp-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,107,44,0.4);
}

.pdp-btn-primary:hover::before {
  opacity: 1;
}

.pdp-btn-secondary {
  background: var(--blue-light);
  color: var(--blue);
}

.pdp-btn-secondary:hover {
  background: #d8ebff;
  transform: translateY(-2px);
}

.pdp-empty {
  text-align: center;
  color: var(--grey-500);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 48px 32px;
  margin-top: 90px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  font-size: 0.95rem;
}

/* ===== CARRINHO FLUTUANTE ===== */
.cart-fab {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,107,44,0.4);
  z-index: 1100;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cart-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(255,107,44,0.5); }
.cart-fab svg { width: 22px; height: 22px; }
.cart-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #ff3b5c;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
}
.cart-drawer {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 360px;
  background: #fff;
  border-radius: 20px 0 0 0;
  box-shadow: -4px 0 40px rgba(0,0,0,0.14);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
  height: auto;
  max-height: 480px;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer.minimized .cart-drawer-list,
.cart-drawer.minimized .cart-drawer-footer { display: none; }
.cart-drawer.minimized { max-height: unset; }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--grey-100);
  flex-shrink: 0;
  gap: 8px;
}
.cart-drawer-title { font-size: 0.95rem; font-weight: 700; color: var(--grey-900); flex: 1; }
.cart-drawer-minimize {
  background: none; border: none; font-size: 1.1rem; cursor: pointer;
  color: var(--grey-400); line-height: 1; padding: 0 4px; transition: transform 0.2s;
}
.cart-drawer-minimize:hover { color: var(--grey-700); }
.cart-drawer.minimized .cart-drawer-minimize { transform: rotate(180deg); }
.cart-drawer-close {
  background: none; border: none; font-size: 1.3rem; cursor: pointer;
  color: var(--grey-400); line-height: 1; padding: 0 4px;
}
.cart-drawer-close:hover { color: var(--grey-900); }
.cart-drawer-list {
  overflow-y: auto;
  max-height: 252px;
  min-height: 0;
  padding: 8px 16px;
  flex-shrink: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--grey-200) transparent;
}
.cart-drawer-list::-webkit-scrollbar { width: 4px; }
.cart-drawer-list::-webkit-scrollbar-thumb { background: var(--grey-200); border-radius: 4px; }
.cart-empty { text-align: center; color: var(--grey-400); padding: 40px 0; font-size: 0.9rem; }
.cart-notice {
  background: #fff8f0;
  border: 1px solid #ffd0a8;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: #b45309;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}
.cart-item {
  display: flex; align-items: center; gap: 10px; padding: 7px 0;
  border-bottom: 1px solid var(--grey-100);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; background: var(--grey-50); flex-shrink: 0; }
.cart-item-name { font-size: 0.82rem; font-weight: 600; color: var(--grey-800); line-height: 1.3; }
.cart-item-remove { background: none; border: none; color: var(--grey-300); cursor: pointer; font-size: 1.1rem; padding: 0 4px; line-height: 1; flex-shrink: 0; }
.cart-item-remove:hover { color: #ff3b5c; }
.cart-drawer-footer {
  padding: 16px 20px; border-top: 1px solid var(--grey-100);
  flex-shrink: 0; display: flex; flex-direction: column; gap: 10px;
}
.cart-count-label { font-size: 0.8rem; color: var(--grey-500); text-align: center; }
.cart-quote-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  color: #fff; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; text-decoration: none; transition: opacity 0.2s;
}
.cart-quote-btn:hover { opacity: 0.9; }
.cart-clear-btn {
  background: none; border: none; color: var(--grey-400); font-size: 0.78rem;
  cursor: pointer; text-align: center; text-decoration: underline;
}
.cart-clear-btn:hover { color: #ff3b5c; }
@media (max-width: 480px) {
  .cart-drawer { width: 100%; border-radius: 20px 20px 0 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1200px); }
  .nav-links { display: none; }
}

/* ---- produtos relacionados ---- */
.pdp-related {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdp-related-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--grey-900);
  margin: 0;
}

.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1080px) {
  .pdp-grid { grid-template-columns: 60px 1fr; }
  .pdp-gallery { width: 100%; }
  .pdp-main-media { width: 100%; height: auto; aspect-ratio: 4/3; }
  .pdp-info { grid-column: 1 / -1; padding: 0; }
  .pdp-wrap { padding-top: 72px; }
}

@media (max-width: 480px) {
  .pdp-title { font-size: 1.3rem; }
  .pdp-main-emoji { font-size: 5rem; }
  .pdp-features li { font-size: 0.82rem; padding: 8px 12px; }
  .pdp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-actions { flex-direction: column; }
  .pdp-cart-btn { width: 100%; justify-content: center; }
}

/* ===== PRODUCT CARD (usado nos relacionados da PDP) ===== */
.product-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}
.product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f8f9fc;
  overflow: hidden;
}
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.product-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.product-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.product-category-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.04em;
}
.product-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 8px;
}
.product-price-block small {
  display: block;
  font-size: 0.65rem;
  color: #aaa;
  font-weight: 500;
}
.product-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--orange);
}
.product-buy {
  font-size: 0.72rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--orange);
  white-space: nowrap;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--orange);
  border-radius: 20px;
  padding: 4px 8px;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.product-buy:hover {
  background: var(--orange);
  color: #fff;
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-novo { background: #e8f5e9; color: #2e7d32; }
.badge-outlet { background: #fff3e0; color: #e65100; }
.badge-seminovo { background: #e3f2fd; color: #1565c0; }

/* ===== PRODUCT CARD IMAGE & ADD BUTTON ===== */
.product-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  z-index: 0;
}

.product-cart-add {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.2s ease;
  cursor: pointer;
}
.product-cart-add:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.product-cart-add svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
  transition: color 0.2s;
}
.product-cart-add:hover svg,
.product-cart-add.added svg {
  color: #fff;
}
.product-cart-add.added {
  background: var(--orange);
  border-color: var(--orange);
}

/* ============================================
   MEGAJU — REDESIGN V2 MIGRADO PARA styles.css
   Fonte original: /Users/matheus-anuncio/Downloads/api/public/styles-v2.css
   Aplicado globalmente para todas as paginas que carregam styles.css
   ============================================ */

/* ============================================
   MEGAJU — REDESIGN V2
   Arquivo separado: remova o <link> para reverter
   ============================================ */

/* ============================================
   MARKETPLACES
   ============================================ */

.marketplaces {
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  background: var(--white);
  padding: 64px 0;
}

.marketplaces-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.marketplaces-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  text-align: center;
}

.marketplace-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.mp-logo {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.mp-logo.mp-visible {
  opacity: 0.75;
  transform: translateY(0);
}

.mp-logo.mp-visible:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.mp-img {
  display: block;
  width: auto;
  object-fit: contain;
  height: 80px;
}

.mp-logo.ml .mp-img     { height: 130px; }
.mp-logo.shopee .mp-img { height: 120px; }
.mp-logo.amazon .mp-img { height: 95px; }
.mp-logo.magalu .mp-img { height: 140px; }

@media (max-width: 768px) {
  .marketplaces-inner {
    padding: 0 20px;
    gap: 24px;
    justify-content: center;
    flex-direction: column;
  }

  .marketplace-logos {
    gap: 28px;
    justify-content: center;
  }
}

/* ============================================
   CATEGORIAS
   ============================================ */

.categories {
  padding: 140px 48px;
}

.categories-header {
  margin-bottom: 80px;
}

.categories-header .section-title {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 24px;
}

.categories-header .section-desc {
  font-size: 1.2rem;
  max-width: 700px;
}

.categories-grid {
  gap: 32px;
  max-width: 1600px;
  grid-template-columns: repeat(4, 1fr);
}

.cat-card {
  padding: 72px 40px;
  border-radius: 28px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cat-icon {
  width: 140px;
  height: 140px;
  border-radius: 36px;
  font-size: 4.5rem;
  margin-bottom: 32px;
}

.cat-card h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.cat-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}


@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .categories {
    padding: 80px 20px;
  }
  .categories-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .cat-card {
    padding: 48px 28px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .categories {
    padding: 64px 20px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }

  .cat-card {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   SOBRE
   ============================================ */

.about {
  padding: 120px 48px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  padding-top: 0;
}

.about-slogan-big {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  background: none;
  border: none;
  min-height: 560px;
}

.about-slogan-text {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 900;
  color: var(--grey-900);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
}

.about-slogan-hl {
  background: radial-gradient(ellipse at 50% 50%, #ffb347 0%, var(--orange) 40%, #c93a00 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.08s ease;
}

.about-slogan-sub {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--grey-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 32px;
}

.about-body {
  font-size: 1.2rem;
  color: var(--grey-500);
  line-height: 1.85;
  margin: 0 0 24px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 36px;
}

.about-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grey-700);
  padding: 14px 20px;
  background: var(--grey-50);
  border-radius: 14px;
  border: 1px solid var(--grey-100);
  transition: all 0.25s ease;
}

.about-pillar:hover {
  background: var(--orange-light);
  border-color: var(--orange-100);
  color: var(--orange);
}

.about-pillar-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-slogan {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--grey-900);
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--orange-light), #fff0e0);
  border-left: 4px solid var(--orange);
  border-radius: 0 16px 16px 0;
}

.about-slogan em {
  font-style: italic;
  background: linear-gradient(135deg, var(--orange), #ff9a5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .about {
    padding: 80px 20px;
  }
  .about-slogan-big {
    padding: 48px 32px;
    min-height: auto;
  }
  .about-slogan-text {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }
}

/* ============================================
   NAVBAR
   ============================================ */

.nav {
  height: 68px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.07);
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--grey-900);
  display: flex;
  align-items: baseline;
  gap: 0;
}

.nav-logo span {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9a5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo em {
  font-style: normal;
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--grey-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 10px;
  padding: 3px 8px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: 6px;
  align-self: center;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-500);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  color: var(--grey-900);
  background: var(--grey-50);
}

/* Admin tab */
.nav-admin-tab {
  display: none;
  color: var(--blue) !important;
  background: var(--blue-light) !important;
  border: 1px solid rgba(0, 120, 255, 0.15) !important;
  font-weight: 600 !important;
}

/* CTA */
.nav-cta {
  margin-left: 10px !important;
  padding: 9px 20px !important;
  background: linear-gradient(135deg, var(--orange), #ff8c42) !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 2px 12px rgba(255, 107, 44, 0.25) !important;
  transition: all 0.2s ease !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #ff8c42, var(--orange)) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 44, 0.38) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.hamburger:hover {
  background: var(--grey-50);
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--grey-700);
  border-radius: 2px;
  transition: 0.25s ease;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  gap: 4px;
  padding: 24px 20px;
  align-items: stretch;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-700);
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
}

.mobile-nav a:hover {
  background: var(--grey-50);
  color: var(--grey-900);
}

@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ============================================
   HERO
   ============================================ */

.hero h1 .gradient-text {
  background: linear-gradient(90deg, var(--orange) 0%, #ffb347 40%, #ff6b2c 60%, #ff9a5c 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.1s ease;
}

.hero {
  min-height: 92vh;
  padding: 100px 48px 80px;
  background: #f3f8ff7d;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Fundo mais limpo — dots mais sutis */
.hero-dots {
  opacity: 0.25;
  background-size: 40px 40px;
}

.hero-blob-1 {
  opacity: 0.7;
}

.hero-blob-2 {
  opacity: 0.6;
}

.hero-inner {
  gap: 80px;
  max-width: 1200px;
}

/* Badge */
.hero-badge {
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  margin-bottom: 24px;
  background: var(--orange-light);
  border-color: var(--orange-100);
}

/* Título */
.hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

/* Subtítulo */
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--grey-400);
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Botões */
.hero-buttons {
  gap: 12px;
  margin-bottom: 44px;
}

.btn-primary {
  padding: 14px 28px;
  font-size: 0.92rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 107, 44, 0.28);
}

.btn-outline {
  padding: 14px 28px;
  font-size: 0.92rem;
  border-radius: 12px;
  font-weight: 600;
  border-color: var(--grey-200);
  color: var(--grey-600);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}

/* Trust */
.hero-trust {
  gap: 16px;
}

.hero-trust-avatar {
  width: 34px;
  height: 34px;
  font-size: 0.65rem;
  border-width: 2px;
}

.hero-trust-text {
  font-size: 0.8rem;
  color: var(--grey-400);
  line-height: 1.5;
}

.hero-trust-text strong {
  color: var(--grey-700);
  font-weight: 700;
}

/* Showcase (lado direito) */
.hero-showcase {
  padding: 32px;
  min-height: 420px;
  background: linear-gradient(145deg, #f8f9fb 0%, #eef0f5 100%);
  box-shadow: 0 4px 32px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.05);
}

.showcase-grid {
  gap: 12px;
}

.showcase-item {
  padding: 18px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.showcase-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}

.showcase-item-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 3px;
}

.showcase-item-price {
  font-size: 0.65rem;
  color: var(--grey-400);
  font-weight: 500;
}

.showcase-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Card ativo pelo cursor */
.showcase-item.cursor-active {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 28px rgba(255, 107, 44, 0.15), 0 0 0 2px var(--orange);
  background: #fff;
}

/* Cursor animado */
.hero-showcase {
  position: relative;
}

.showcase-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  transition: top 0.5s cubic-bezier(0.16,1,0.3,1), left 0.5s cubic-bezier(0.16,1,0.3,1);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

/* Floating badges */
.hero-float {
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  border: none;
}

.hero-float-icon {
  font-size: 1.1rem;
}

.hero-float-info strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--grey-800);
  display: block;
}

.hero-float-info span {
  font-size: 0.68rem;
  color: var(--grey-400);
}

@media (max-width: 900px) {
  .hero {
    padding: 90px 24px 60px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .hero-sub {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 20px 48px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  background: #0d0d0d;
  padding: 120px 48px;
}

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

/* Left side */
.contact-inner > .contact-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact .section-label {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.contact .section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 24px;
}

.contact .section-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0 0 48px;
  max-width: 420px;
}

.contact-extras {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-extra {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

.contact-extra svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  flex-shrink: 0;
}

/* Right side — buttons */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-sales {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 40px;
  background: linear-gradient(135deg, var(--orange), #ff9a5c);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 32px rgba(255, 107, 44, 0.35);
}

.btn-sales svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.btn-sales:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255, 107, 44, 0.5);
}

.btn-support-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 40px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-support-dark svg {
  width: 22px;
  height: 22px;
  stroke: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.btn-support-dark:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact {
    padding: 80px 24px;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--white);
  padding: 0;
  border-top: 1px solid var(--grey-100);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer .nav-logo {
  font-family: var(--font-display);
  font-size: 2rem !important;
  font-weight: 900;
  color: var(--grey-900);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: block;
}

.footer .nav-logo span {
  color: var(--orange);
}

.footer-brand-text {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.7;
  max-width: 280px;
  margin: 0;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-bottom {
  max-width: 100%;
  margin: 0;
  padding: 24px 48px;
  border-top: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--grey-400);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: var(--orange);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 60px 24px 48px;
  }
  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand-text {
    max-width: 100%;
  }
}

/* ============================================
   CATEGORY SVG ICONS — tamanho base
   ============================================ */

.cat-svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   🎧 ÁUDIO — fone balança + ondas aparecem
   ============================================ */
@keyframes audio-wiggle {
  0%, 100% { transform: rotate(0deg); }
  20%  { transform: rotate(-12deg); }
  40%  { transform: rotate(10deg); }
  60%  { transform: rotate(-7deg); }
  80%  { transform: rotate(5deg); }
}
@keyframes audio-wave {
  0%        { opacity: 0; transform: scaleX(0.5); }
  50%, 80%  { opacity: 1; transform: scaleX(1); }
  100%      { opacity: 0; }
}
.cat-audio:hover .cat-svg {
  animation: audio-wiggle 0.7s ease;
}
.cat-audio:hover .svg-wave1 {
  animation: audio-wave 0.8s ease 0.1s forwards;
  transform-origin: center;
}
.cat-audio:hover .svg-wave2 {
  animation: audio-wave 0.8s ease 0.25s forwards;
  transform-origin: center;
}

/* ============================================
   💻 INFORMÁTICA — cursor pisca
   ============================================ */
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  40%, 60% { opacity: 0; }
}
.cat-informatica:hover .svg-cursor {
  animation: cursor-blink 0.6s ease infinite;
}

/* ============================================
   📱 CELULAR — vibra + notificação aparece
   ============================================ */
@keyframes phone-shake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  15% { transform: translateX(-5px) rotate(-3deg); }
  30% { transform: translateX(5px) rotate(3deg); }
  45% { transform: translateX(-4px) rotate(-2deg); }
  60% { transform: translateX(4px) rotate(2deg); }
  75% { transform: translateX(-2px); }
  90% { transform: translateX(2px); }
}
@keyframes notif-pop {
  0%   { opacity: 0; transform: scale(0.3); }
  50%  { opacity: 1; transform: scale(1.2); }
  70%  { transform: scale(0.95); }
  85%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; }
}
@keyframes screen-light {
  0%, 100% { fill: #0d0d1a; }
  30%, 70%  { fill: #1a2a4a; }
}
.cat-celular:hover .cat-svg {
  animation: phone-shake 0.6s ease;
}
.cat-celular:hover .svg-notif {
  animation: notif-pop 1s ease 0.4s forwards;
}
.cat-celular:hover .svg-notif-text {
  animation: notif-pop 1s ease 0.4s forwards;
}
.cat-celular:hover .svg-screen {
  animation: screen-light 0.8s ease;
}

/* ============================================
   🎮 GAMER — botões piscam em sequência
   ============================================ */
@keyframes btn-pulse-a {
  0%, 100% { opacity: 0.5; r: 4; }
  30%       { opacity: 1; r: 5.5; fill: #ff6b2c; }
}
@keyframes btn-pulse-b {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; r: 5.5; }
}
@keyframes btn-pulse-x {
  0%, 100% { opacity: 0.5; }
  70%       { opacity: 1; r: 5.5; }
}
@keyframes btn-pulse-y {
  0%, 100% { opacity: 0.5; }
  90%       { opacity: 1; r: 5.5; }
}
@keyframes gamepad-tilt {
  0%, 100% { transform: rotate(0deg); }
  25%  { transform: rotate(-8deg); }
  75%  { transform: rotate(8deg); }
}
.cat-gamer:hover .cat-svg {
  animation: gamepad-tilt 0.8s ease;
}
.cat-gamer:hover .svg-btn-a {
  animation: btn-pulse-a 0.8s ease;
}
.cat-gamer:hover .svg-btn-b {
  animation: btn-pulse-b 0.8s ease 0.1s;
}
.cat-gamer:hover .svg-btn-x {
  animation: btn-pulse-x 0.8s ease 0.2s;
}
.cat-gamer:hover .svg-btn-y {
  animation: btn-pulse-y 0.8s ease 0.3s;
}

/* ============================================
   💡 CASA — lâmpada acende, raios aparecem
   ============================================ */
@keyframes lamp-glow {
  0%        { opacity: 0; r: 28; }
  40%, 60%  { opacity: 0.25; r: 32; }
  100%      { opacity: 0; r: 28; }
}
@keyframes filament-on {
  0%        { opacity: 0.4; stroke: #ffe066; }
  40%, 60%  { opacity: 1; stroke: #ffffff; filter: drop-shadow(0 0 4px #ffe066); }
  100%      { opacity: 0.4; stroke: #ffe066; }
}
@keyframes ray-appear {
  0%        { opacity: 0; }
  40%, 60%  { opacity: 1; }
  100%      { opacity: 0; }
}
.cat-casa:hover .svg-glow {
  animation: lamp-glow 1s ease forwards;
}
.cat-casa:hover .svg-filament {
  animation: filament-on 1s ease forwards;
}
.cat-casa:hover .svg-ray1 { animation: ray-appear 1s ease 0.1s forwards; }
.cat-casa:hover .svg-ray2 { animation: ray-appear 1s ease 0.15s forwards; }
.cat-casa:hover .svg-ray3 { animation: ray-appear 1s ease 0.15s forwards; }
.cat-casa:hover .svg-ray4 { animation: ray-appear 1s ease 0.2s forwards; }
.cat-casa:hover .svg-ray5 { animation: ray-appear 1s ease 0.2s forwards; }

/* ============================================
   ⌚ WEARABLES — ponteiros giram
   ============================================ */
@keyframes hour-turn {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes min-turn {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(720deg); }
}
.cat-wearable:hover .svg-hour-hand {
  animation: hour-turn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 40px 40px;
  transform-box: fill-box;
}
.cat-wearable:hover .svg-min-hand {
  animation: min-turn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 40px 40px;
  transform-box: fill-box;
}

/* ============================================
   🔌 CABOS & ENERGIA — raio pisca com glow
   ============================================ */
@keyframes bolt-zap {
  0%        { opacity: 0.9; filter: none; }
  20%       { opacity: 1; filter: drop-shadow(0 0 8px #ffe066) drop-shadow(0 0 16px #ff6b2c); }
  35%       { opacity: 0.2; }
  55%       { opacity: 1; filter: drop-shadow(0 0 12px #ffe066) drop-shadow(0 0 24px #ff6b2c); }
  75%       { opacity: 0.5; filter: none; }
  100%      { opacity: 0.9; filter: none; }
}
@keyframes plug-shake {
  0%, 100% { transform: translateY(0); }
  25%  { transform: translateY(-4px); }
  75%  { transform: translateY(2px); }
}
.cat-cabos:hover .svg-bolt {
  animation: bolt-zap 0.9s ease;
}
.cat-cabos:hover .cat-svg {
  animation: plug-shake 0.5s ease;
}

/* ============================================
   🖥️ MONITOR — scan line desce, conteúdo aparece
   ============================================ */
@keyframes scan-down {
  0%   { transform: translateY(0); opacity: 0.8; }
  100% { transform: translateY(34px); opacity: 0; }
}
@keyframes content-appear {
  0%, 40%  { opacity: 0; }
  70%, 100% { opacity: 1; }
}
@keyframes screen-on {
  0%        { fill: #0d0d1a; }
  15%       { fill: #000000; }
  30%, 100% { fill: #0a1628; }
}
@keyframes power-on {
  0%, 100% { opacity: 0.4; }
  30%, 70% { opacity: 1; fill: #60cfff; }
}
.cat-monitor:hover .svg-monitor-screen {
  animation: screen-on 0.8s ease forwards;
}
.cat-monitor:hover .svg-scanline {
  animation: scan-down 0.6s ease 0.2s forwards;
}
.cat-monitor:hover .svg-content {
  animation: content-appear 0.8s ease 0.5s forwards;
}
.cat-monitor:hover .svg-power-btn {
  animation: power-on 0.8s ease forwards;
}

/* ============================================
   FINAL OVERRIDES - ABOUT SPACING + WHITE FOOTER
   Mantido no fim para vencer CSS antigo, inline e V2 anterior.
   ============================================ */

.section.about,
.about {
  padding: 120px clamp(40px, 5vw, 96px) !important;
}

.about-inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background: #ffffff !important;
  color: var(--grey-700) !important;
  border-top: 1px solid var(--grey-100) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9) !important;
}

.footer .nav-logo {
  color: var(--grey-900) !important;
}

.footer-brand-text {
  color: var(--grey-500) !important;
}

.footer-col h5 {
  color: var(--grey-900) !important;
}

.footer-col a,
.footer-col ul li a {
  color: var(--grey-500) !important;
}

.footer-col a:hover,
.footer-col ul li a:hover {
  color: var(--orange) !important;
}

.footer-bottom {
  border-top: 1px solid var(--grey-100) !important;
}

.footer-copy {
  color: var(--grey-400) !important;
}

.footer-copy a {
  color: var(--grey-600) !important;
}

.footer-socials a {
  color: var(--grey-400) !important;
}

.footer-socials a:hover {
  color: var(--orange) !important;
}

@media (max-width: 768px) {
  .section.about,
  .about {
    padding: 80px 24px !important;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* ============================================
   FINAL OVERRIDES - FLOATING ACTION BUTTONS
   Alinha carrinho ao WhatsApp e sobe o conjunto visual.
   ============================================ */

:root {
  --floating-fab-size: 69px;
  --floating-fab-right: 28px;
  --floating-fab-bottom: 28px;
  --floating-fab-gap: 10px;
  --floating-fab-lift: 2.4vh;
}

.fab-wa {
  position: fixed;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #20b858);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 1099;
  right: var(--floating-fab-right) !important;
  bottom: calc(var(--floating-fab-bottom) + var(--floating-fab-lift)) !important;
  width: var(--floating-fab-size) !important;
  height: var(--floating-fab-size) !important;
}

.fab-wa::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}

.fab-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.cart-fab {
  right: var(--floating-fab-right) !important;
  bottom: calc(
    var(--floating-fab-bottom) +
    var(--floating-fab-lift) +
    var(--floating-fab-size) +
    var(--floating-fab-gap)
  ) !important;
  width: var(--floating-fab-size) !important;
  height: var(--floating-fab-size) !important;
}

.cart-fab svg {
  width: 32px !important;
  height: 32px !important;
}

.fab-wa svg {
  width: 32px !important;
  height: 32px !important;
}

@media (max-width: 640px) {
  :root {
    --floating-fab-right: 22px;
    --floating-fab-bottom: 22px;
    --floating-fab-gap: 8px;
  }
}
