/* ============================================================
   B&D LICENCIAMENTO — Futuristic Institutional Design
   B&D LICENCIAMENTO LTDA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Core palette */
  --dark: #060b18;
  --dark-2: #0d1526;
  --dark-3: #111827;
  --nav: #0a1020;
  --primary: #1062fe; /* Azul B&D Mais Vibrante e Confiável */
  --primary-glow: rgba(16, 98, 254, .25);
  --primary-dark: #004dc7;
  --accent: #0f172a;
  --accent-glow: rgba(15, 23, 42, .15);
  --success: #10b981;
  --danger: #ef4444;
  --red: #ef4444;
  --green: #10b981;
  --text: #0f172a; /* Azul Escuro Quase Preto */
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --border-dark: #d1d5db;
  --bg: #f8fafc;
  --white: #ffffff;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12);
  --shadow-glow: 0 4px 24px var(--primary-glow);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, .1);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: .2s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  background: #eff6ff;
  padding: .3rem .9rem;
  border-radius: 99px;
  margin-bottom: .85rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark-3);
  line-height: 1.15;
  letter-spacing: -.02em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: .65rem;
  max-width: 560px;
}

.section-header.centered p {
  margin-left: auto;
  margin-right: auto;
}

.hide-mobile {
  @media(max-width: 768px) {
    display: none !important;
  }
}

.hamburger {
  display: none;
}

/* ── Promo Bar (Legacy) ────────────────────────────────────── */
.promo-bar {
  display: none;
  /* Removed from HTML, hidden here just in case */
}

@keyframes shimmer {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

/* ── Top Bar ───────────────────────────────────────────────── */
.top-bar {
  background: #060b18;
  /* Same as --dark */
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
  padding: .6rem 0;
  letter-spacing: .03em;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

@media(max-width: 768px) {
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }
}

.top-bar-left {
  display: flex;
  align-items: center;
}

.promo-text {
  color: #fff;
  font-weight: 600;
}

.promo-text strong {
  color: #cbd5e1;
  font-weight: 800;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.info-item {
  color: rgba(255, 255, 255, .5);
}

.divider {
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, .1);
}

.top-bar a {
  color: rgba(255, 255, 255, .5);
  transition: var(--transition);
  text-decoration: none;
}

.top-bar a:hover {
  color: #fff;
}

.top-bar-links {
  display: flex;
  gap: 1.25rem;
}

/* ── Header / Nav ──────────────────────────────────────────── */
.header {
  background: var(--nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .9rem 2rem;
}

.header-left-side {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

@media(max-width: 768px) {
  .header .container {
    padding: .7rem 1.25rem;
    gap: .5rem;
  }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 34px;
  width: auto;
  background: transparent !important;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.04em;
  display: flex;
  align-items: center;
}

.logo-text span {
  font-weight: 400;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: flex-end;
}

.nav a {
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50px;
  padding: .45rem 1rem;
  gap: .4rem;
  transition: var(--transition);
}

.search-box:focus-within {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(148, 163, 184, .5);
  box-shadow: 0 0 0 3px rgba(148, 163, 184, .1);
}

.search-box input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: .82rem;
  width: 180px;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.search-box svg {
  color: rgba(255, 255, 255, .35);
  flex-shrink: 0;
}

@media(max-width: 1100px) {
  .search-box input {
    width: 120px;
  }

  .header .container {
    gap: 1rem;
  }
}

/* Cart button */
.cart-btn {
  position: relative;
  background: linear-gradient(135deg, #94a3b8, #64748b);
  border: none;
  border-radius: 50px;
  color: #fff;
  padding: .5rem 1.3rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(148, 163, 184, .35);
}

.cart-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(148, 163, 184, .5);
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--red);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  border-radius: 99px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--nav);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px -5px rgba(15, 23, 42, 0.6);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #334155, #1e293b);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px -8px rgba(15, 23, 42, 0.8);
  transform: translateY(-2px);
}

.btn-danger {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 25px -5px rgba(239, 68, 68, 0.4);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -5px rgba(239, 68, 68, 0.5);
  background: #f87171;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -5px rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-light:hover {
  background: #f8fafc;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.6rem;
  font-size: 0.85rem;
  border-radius: 50px;
}

.btn-lg {
  padding: 1rem 2.6rem;
  font-size: 1.05rem;
  border-radius: 50px;
}

.btn-xl {
  padding: 1.15rem 3rem;
  font-size: 1.1rem;
  border-radius: 50px;
}

/* ── Form Buttons & Special CTAs ─────────────────────────── */
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.newsletter-form:focus-within {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 1.5rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form button {
  background: #fff;
  color: #0f172a;
  border: none;
  padding: 0 1.8rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-form button:hover {
  background: #f1f5f9;
  color: #000;
}

.payment-method-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex: 1;
}

.payment-method-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.payment-method-btn.selected {
  background: rgba(34, 197, 94, 0.1);
  border-color: #22c55e;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

/* ── BADGES ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.badge-bestseller {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #e5e7eb;
}

.badge-sale {
  background: #fee2e2;
  color: #ef4444;
}

.badge-genuine {
  background: #dcfce7;
  color: #10b981;
}

.badge-new {
  background: #dbeafe;
  color: #3b82f6;
}

/* Redesigned Discount Label — Now a subtle tag */
.discount-circle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--nav);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.discount-circle .pct {
  font-size: 0.75rem;
}

.discount-circle::after {
  content: ' OFF';
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-banner.png') center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6, 11, 24, .82) 0%, rgba(6, 11, 24, .65) 55%, rgba(6, 11, 24, .30) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
  padding: .35rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.03em;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: #cbd5e1;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, .7);
  max-width: 550px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

@media(max-width: 768px) {
  .hero-container {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #e2e8f0;
  background: rgba(203, 213, 225, .1);
  border: 1px solid rgba(203, 213, 225, .25);
  padding: .35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.1rem;
}

.hero-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.45rem 1rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cat-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-cat-pill .emoji {
  font-size: 1rem;
}


/* ── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.trust-items {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  background: #eff6ff;
  flex-shrink: 0;
}

/* ── CATEGORIES ─────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--card-color, var(--primary)) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-8px);
  border-color: var(--card-color, var(--primary));
}

.category-card:hover::before {
  opacity: .05;
}

.category-icon-wrapper {
  width: 180px;
  height: 180px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.category-card:hover .category-icon-wrapper {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
  transform: scale(1.1);
}

.category-img {
  width: 145px;
  height: 145px;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .1));
}

.category-card:hover .category-img {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .15));
}

.category-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: var(--dark-3);
  position: relative;
  z-index: 1;
}

.category-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.category-card .arrow {
  margin-top: 1rem;
  color: var(--card-color, var(--primary));
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  font-size: 1.2rem;
  z-index: 1;
}

.category-card:hover .arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ── PRODUCT CARDS ─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
  border-color: rgba(148, 163, 184, .2);
}

/* Image area */
.product-card-img {
  position: relative;
  background: #fff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  transition: var(--transition);
  border-bottom: 1px solid #f1f5f9;
}

.product-card:hover .product-card-img {
  background: #f8fafc;
}

.product-card-img img {
  width: 100%;
  max-width: 140px;
  height: 140px;
  object-fit: contain;
  transition: transform .5s cubic-bezier(0.2, 0, 0.2, 1);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-card-img img {
  transform: translateY(-8px) scale(1.05);
}

.card-badge {
  position: absolute;
  top: .65rem;
  left: .65rem;
  z-index: 2;
}

/* Body */
.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body .brand {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.product-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--dark-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7rem;
}

.product-card-body h3 a:hover {
  color: var(--primary);
}

.rating {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.stars {
  color: #f59e0b;
  font-size: .75rem;
}

.rating-count {
  font-size: .7rem;
  color: var(--text-light);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.5rem;
}

.price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark-3);
  white-space: nowrap;
}

.price-original {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
  white-space: nowrap;
}

.discount-pct {
  font-size: 0.68rem;
  font-weight: 800;
  color: #ef4444;
  background: #fee2e2;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  white-space: nowrap;
}

.price-save {
  font-size: .7rem;
  font-weight: 700;
  color: var(--red);
  margin-top: .08rem;
  display: block;
}

/* CTA button on card */
.add-to-cart-btn {
  width: 100%;
  margin-top: .65rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: .6rem;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(148, 163, 184, .25);
}

.add-to-cart-btn:hover {
  box-shadow: 0 6px 20px rgba(148, 163, 184, .4);
  transform: translateY(-1px);
}

/* ── PRODUCT DETAIL ────────────────────────────────────────── */
.product-page {
  padding: 2.5rem 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 3rem;
  align-items: start;
}

.product-img-panel {
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 90px;
}

.product-img-panel img {
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .12));
}

.product-info-panel .brand-line {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .5rem;
}

.product-info-panel h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--dark-3);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}

.product-price-block {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(145deg, #f8fafc, var(--white));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.product-price-block .current {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark-3);
  letter-spacing: -.02em;
}

.product-price-block .orig {
  font-size: .9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-price-block .save {
  display: inline-block;
  background: #fee2e2;
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 6px;
  margin-left: .5rem;
}

.product-price-block .installment {
  font-size: .85rem;
  color: var(--green);
  font-weight: 600;
  margin-top: .4rem;
}

.variant-section {
  margin-bottom: 1.1rem;
}

.variant-section label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.variant-options {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.variant-btn {
  padding: .45rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  background: #fff;
  color: var(--text);
  transition: var(--transition);
  cursor: pointer;
}

.variant-btn:hover,
.variant-btn.selected {
  border-color: var(--primary);
  color: var(--primary);
  background: #eff6ff;
}

.stock-indicator {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.email-section {
  margin-bottom: 1rem;
}

.email-section label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
  margin-bottom: .4rem;
}

.email-section input {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  outline: none;
  transition: var(--transition);
}

.email-section input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(148, 163, 184, .1);
}

.email-hint {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .3rem;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.btn-add-cart,
.btn-buy-now {
  width: 100%;
  margin-bottom: .6rem;
  padding: .9rem;
}

.product-features {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.product-features h3 {
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
  color: var(--text-muted);
}

.product-features li {
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .4rem;
}

.product-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.guarantee-strip {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding: 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--green);
  font-weight: 600;
}

/* ── TABS ──────────────────────────────────────────────────── */
.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.75rem;
}

.tab-btn {
  padding: .75rem 1.8rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid transparent;
  border-radius: 50px;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #fff;
  background: var(--dark-3);
  border-color: var(--dark-3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-muted);
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--text-light);
}

/* ── CART ──────────────────────────────────────────────────── */
.cart-page {
  padding: 3rem 0 5rem;
  background: var(--bg);
}

.cart-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.cart-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cart-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 50px;
  padding: 1rem 1.5rem;
  background: #f8fafc;
  border-bottom: 2px solid var(--border);
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 50px;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item:hover {
  background: rgba(0, 0, 0, 0.01);
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  padding: .4rem;
  border: 1px solid var(--border);
}

.cart-item-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-3);
  margin-bottom: .2rem;
}

.cart-item-variant {
  font-size: .78rem;
  color: var(--text-muted);
}

.qty-control {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 50px;
  padding: .25rem;
  width: fit-content;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: #fff;
  border-radius: 50%;
  color: var(--dark-3);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--primary);
  color: #fff;
}

.qty-num {
  font-size: .9rem;
  font-weight: 700;
  padding: 0 .8rem;
  min-width: 35px;
  text-align: center;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  padding: .5rem;
}

.remove-btn:hover {
  color: var(--danger);
  transform: scale(1.1);
}

.cart-empty {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: .3;
}

@media (max-width: 992px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cart-table-header {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }

  .cart-item-info {
    flex-direction: column;
  }

  .qty-control {
    margin: 0 auto;
  }
}

.cart-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}

.cart-summary h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  margin-bottom: .6rem;
  color: var(--text-muted);
}

.summary-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-3);
  border-top: 1px solid var(--border);
  padding-top: .85rem;
  margin-top: .5rem;
}

.payment-icon {
  display: inline-block;
  padding: .18rem .55rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #fff;
  letter-spacing: .04em;
}

/* ── TESTIMONIALS CAROUSEL ─────────────────────────────────── */
.testimonials-carousel {
  position: relative;
  padding: 0 4rem;
  margin: 0 -2rem;
}

.testimonials-track-container {
  overflow: hidden;
  padding: 1rem 0 2rem;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  flex: 0 0 calc(33.333% - 1rem);
  /* Mostra 3 cards por padrão */
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
  border-color: var(--primary-dark);
}

.testimonial-card .stars-row {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .05em;
}

.testimonial-card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.testimonial-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}

.testimonial-author .name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark-3);
}

.testimonial-author .meta {
  font-size: .75rem;
  color: var(--text-muted);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .68rem;
  color: var(--green);
  font-weight: 700;
}

/* Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 1.5rem;
  color: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* Responsividade */
@media(max-width:1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - .75rem);
    /* 2 cards */
  }
}

@media(max-width:640px) {
  .testimonials-carousel {
    padding: 0 1rem;
  }

  .testimonial-card {
    flex: 0 0 100%;
    /* 1 card */
  }

  .carousel-btn {
    display: none;
    /* Esconde botões no mobile, usar swipe/scroll */
  }
}

/* ── SOCIAL PROOF BAR ──────────────────────────────────────── */
.social-proof-bar {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.social-proof-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(148, 163, 184, .12) 0%, transparent 70%);
}

.social-proof-bar h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin-bottom: .4rem;
  position: relative;
}

.social-proof-bar p {
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  position: relative;
}

.proof-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
}

.proof-stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #cbd5e1, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-stat span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── FEATURES GRID ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: .4rem;
  letter-spacing: -.01em;
}

.feature-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── BLOG ──────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.blog-card-img {
  height: 180px;
  background: var(--light);
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 1.35rem;
}

.blog-tag {
  display: inline-block;
  background: #eff6ff;
  color: var(--primary);
  font-size: .68rem;
  font-weight: 700;
  padding: .18rem .6rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .65rem;
}

.blog-card-body h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .5rem;
  line-height: 1.4;
}

.blog-card-body h3 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: .73rem;
  color: var(--text-light);
  margin-top: .85rem;
}

/* ── NEWSLETTER ────────────────────────────────────────────── */
.newsletter {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(203, 213, 225, .1) 0%, transparent 60%);
}

.newsletter h2 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: .5rem;
  position: relative;
  letter-spacing: -.02em;
}

.newsletter p {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1.75rem;
  font-size: .93rem;
  position: relative;
}

.newsletter-form {
  display: flex;
  gap: .5rem;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  padding: .35rem .35rem .35rem 1.25rem;
}

.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  font-size: .9rem;
  outline: none;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.newsletter-form button {
  padding: .6rem 1.5rem;
  border-radius: calc(var(--radius-xl) - 2px);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  box-shadow: 0 4px 16px rgba(148, 163, 184, .4);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .65);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand .logo-text {
  color: #fff;
  font-size: 1.2rem;
}

.footer-brand p {
  font-size: .82rem;
  line-height: 1.75;
  margin-top: .85rem;
  color: rgba(255, 255, 255, .45);
}

.footer-cnpj {
  margin-top: 1rem;
  font-size: .73rem;
  color: rgba(255, 255, 255, .35);
  padding: .6rem .85rem;
  background: rgba(255, 255, 255, .03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .05);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  transition: var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: .75rem;
  color: rgba(255, 255, 255, .28);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .28);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, .65);
}

/* ── SOBRE ─────────────────────────────────────────────────── */
.sobre-hero {
  background: linear-gradient(120deg, var(--dark), #1e3a5f);
  color: #fff;
  padding: 5rem 0;
}

.sobre-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: .85rem;
  letter-spacing: -.03em;
}

.sobre-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  max-width: 540px;
}

.sobre-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.info-card .icon {
  font-size: 2rem;
  margin-bottom: .85rem;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .35rem;
}

.info-card p {
  font-size: .83rem;
  color: var(--text-muted);
}

.cnpj-box {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.cnpj-box .cnpj-icon {
  font-size: 2.5rem;
}

.cnpj-box h3 {
  font-size: .78rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}

.cnpj-box .cnpj-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark-3);
  letter-spacing: .05em;
}

.cnpj-box .cnpj-name {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .15rem;
}

/* ── PAGE BANNER (FOR CATALOG/ABOUT) ────────────────────────── */
.page-banner {
  background: #020617;
  /* Matches new Hero dark base */
  padding: 4.5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner span.breadcrumb {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.1rem;
  font-weight: 400;
}

/* ── CATALOG LAYOUT ────────────────────────────────────────── */
.catalog-page {
  padding: 4rem 0 6rem;
  background: #fdfdfd;
  /* Pure or slightly off-white for cleanness */
}

.catalog-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Sidebar Refinement (Softer) */
.filter-sidebar {
  position: sticky;
  top: 110px;
}

.filter-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.filter-card h3 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Filter Options (Clean & Premium) */
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.filter-option:hover {
  background: #f8fafc;
  color: var(--primary);
  transform: translateX(4px);
}

.filter-option.active {
  background: #f0f7ff;
  color: var(--primary);
  border-color: rgba(14, 165, 233, 0.1);
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.05);
}

/* Custom Search Input */
.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: #fcfdfe;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s ease;
  color: #334155;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.01);
}

.form-control:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Catalog Grid Header */
.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f5f9;
}

.result-count {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

.sort-select {
  padding: 0.7rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  outline: none;
  cursor: pointer;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 5 3 3 3-3'/%3E%3C/svg%3E") no-repeat right 1rem center;
  padding-right: 2.5rem;
  appearance: none;
  transition: all 0.2s ease;
}

.sort-select:hover {
  border-color: #cbd5e1;
}

.sort-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.08);
}

/* Product Cards in Catalog Context (Softer) */
.products-grid .product-card {
  border: 1px solid rgba(0, 0, 0, 0.01);
  /* Almost invisible border */
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.products-grid .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(14, 165, 233, 0.08);
}

/* Header link adjustment in catalog */
.top-bar-links a {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  transition: color .2s;
}

.top-bar-links a:hover {
  color: #fff;
}

/* ── CHECKOUT ──────────────────────────────────────────────── */
.checkout-page {
  padding: 2.5rem 0 4rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.checkout-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.25rem;
}

.checkout-section h3 {
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
  margin-bottom: .4rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(148, 163, 184, .1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.order-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}

/* ── TOASTS & FLOATING ─────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.live-toast {
  background: rgba(15, 23, 42, .95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: .8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
  animation: slideIn .35s cubic-bezier(.4, 0, .2, 1);
  max-width: 290px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .9);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100%)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.live-toast-text strong {
  display: block;
  font-weight: 700;
}

.live-toast-text span {
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
}

.chat-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
}

.chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .55);
}

.chat-pulse {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--white);
  animation: pulse 2s infinite;
}

.back-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 23, 42, .85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--primary);
}

/* ── ADMIN ─────────────────────────────────────────────────── */
.admin-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #052e16;
  color: #4ade80;
  padding: .8rem 1.3rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 700;
  z-index: 99999;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

.admin-toast.error {
  background: #450a0a;
  color: #f87171;
}

/* ── UTILITIES ─────────────────────────────────────────────── */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: .5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.grid {
  display: grid;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Hide mobile elements by default (Desktop) */
.hamburger,
.mobile-menu-overlay {
  display: none;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media(max-width:1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {

  /* Typography */
  h1 {
    font-size: 2.5rem !important;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  /* Top Bar */
  .top-bar-right {
    gap: 1rem;
  }

  .divider {
    height: 8px;
  }

  /* Hero */
  .hero {
    padding: 4rem 0;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-pills {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Catalog */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .category-card {
    padding: 2rem 1rem;
  }

  /* Grid Fixes */
  .testimonials-grid,
  .blog-grid,
  .cart-layout,
  .checkout-layout,
  .sobre-info {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    padding: 1rem;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-header {
    flex-direction: column;
    align-items: stretch;
  }

  .proof-stats {
    gap: 2rem;
  }

  .nav {
    display: none;
  }

  /* Hamburger Menu Button */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .hamburger span {
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    display: block;
    /* Show container */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: var(--dark-2);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
  }

  .mobile-nav-links {
    flex: 1;
    overflow-y: auto;
  }

  .menu-section {
    margin-bottom: 2rem;
  }

  .menu-section p {
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: .75rem;
  }

  .menu-section a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: .6rem 0;
    transition: var(--transition);
  }

  .menu-section a:hover,
  .menu-section a.active {
    color: var(--primary);
  }

  .mobile-menu-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
  }

  .mobile-contact-item {
    display: block;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .85rem;
    margin-bottom: .5rem;
  }

  .mobile-menu-footer p {
    color: rgba(255, 255, 255, .3);
    font-size: .7rem;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 1rem;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .filter-sidebar {
    position: static;
  }

  .catalog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .sort-select {
    width: 100%;
  }
}

/* ── GLOBAL MOBILE FIXES ───────────────────────────────────── */
* {
  max-width: 100vw;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative;
}

#mobileMenuOverlay {
  max-width: 100vw !important;
}

@media(max-width:480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1.25rem;
  }
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--nav);
  padding: 5rem 0 3rem;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.footer-brand {
  flex: 1;
  min-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-newsletter {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.footer-newsletter h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.footer-newsletter p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Toast Adjustment */
.toast-container {
  bottom: 80px !important;
  left: 2rem !important;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .toast-container {
     bottom: 100px !important;
     left: 1rem !important;
     right: 1rem !important;
  }
}

/* Fix Section Header Alignment */
.section-header.text-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header.text-center p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}