/* ==========================================================================
   TITANTOOLS - DESIGN INDUSTRIAL SEM BORDAS ARREDONDADAS (SHARP & SHADOWS)
   Branco, Amarelo e Preto • Sombras Marcadas • Ângulos Retos Profissionais
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Fundo e Superfícies Claras (Branco Puro / Off-White) */
  --bg-main: #fcfcfc;
  --bg-surface: #ffffff;
  --bg-muted: #f4f4f6;
  --bg-highlight: #fefce8;

  /* Textos em Preto Industrial e Cinzas Legíveis */
  --text-main: #09090b;
  --text-muted: #52525b;
  --text-subtle: #a1a1aa;

  /* Bordas Retas Sem Arredondamento */
  --border-light: #e4e4e7;
  --border-subtle: #d4d4d8;
  --border-black: #09090b;

  /* Amarelo Industrial / Psicologia das Cores: Atenção, Energia e Ação */
  --yellow: #ffd000;
  --yellow-hover: #f5c400;
  --yellow-dark: #b45309;
  --yellow-light: #fffbeb;
  --yellow-border: #fde047;

  /* Preto Estrutural */
  --black: #09090b;
  --black-hover: #18181b;
  --black-card: #121215;

  /* Sucesso */
  --success: #15803d;
  --success-light: #f0fdf4;
  --success-border: #bbf7d0;

  /* Sombras Marcadas (Box Shadows Profissionais para os Cards) */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 12px 28px rgba(0, 0, 0, 0.14), 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-hero: 0 14px 35px rgba(0, 0, 0, 0.13), 0 3px 10px rgba(0, 0, 0, 0.07);
  --shadow-toast: 0 14px 32px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-modal: 0 25px 60px rgba(0, 0, 0, 0.25);

  /* BORDAS ZERO ARREDONDAMENTO (ÂNGULOS RETOS) */
  --radius: 0px;

  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important; /* Remoção estrita de todas as bordas arredondadas */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */

.top-bar {
  background: var(--black);
  color: #f4f4f5;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-bottom: 2px solid var(--yellow);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.top-bar-badge {
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  z-index: 90;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50% !important;
  border: 2px solid var(--yellow);
  box-shadow: 0 0 10px rgba(255, 208, 0, 0.35);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.brand-title {
  display: flex;
  align-items: center;
  font-weight: 900;
}

.brand-title span {
  background: var(--black);
  color: var(--yellow);
  padding: 0.1rem 0.45rem;
  margin-left: 2px;
}

.brand-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-muted);
  border: 1px solid var(--border-light);
  padding: 0.2rem 0.45rem;
  margin-left: 0.35rem;
}

.nav-menu {
  display: none;
}

@media (min-width: 860px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .nav-link {
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    padding: 0.3rem 0;
  }

  .nav-link:hover, .nav-link.active {
    color: var(--black);
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--yellow);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-config {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: #ffffff;
}

.btn-config:hover {
  border-color: var(--black);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}

.btn-cart {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--black);
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  font-weight: 800;
  font-size: 0.875rem;
  transition: var(--transition);
  border: 1.5px solid var(--black);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-cart:hover {
  background: var(--black-hover);
  border-color: var(--yellow);
}

.cart-count {
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.1rem 0.5rem;
  min-width: 22px;
  text-align: center;
}

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

.hero-section {
  padding: 4rem 0 4.5rem;
  background: radial-gradient(circle at 90% 20%, rgba(255, 208, 0, 0.12) 0%, transparent 40%),
              #ffffff;
  border-bottom: 1.5px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow-light);
  color: #713f12;
  border: 1px solid var(--yellow-border);
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  letter-spacing: -0.035em;
  margin-bottom: 1.2rem;
  color: var(--black);
  line-height: 1.15;
}

.hero-title .highlight-yellow {
  background: linear-gradient(180deg, transparent 60%, rgba(255, 208, 0, 0.6) 60%);
  display: inline;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.2rem;
  max-width: 530px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  padding: 0.95rem 1.85rem;
  font-weight: 900;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1.5px solid #09090b;
  box-shadow: 4px 4px 0px #09090b; /* Shadow box angular de alto impacto */
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0px #09090b;
}

.btn-secondary {
  background: #ffffff;
  border: 1.5px solid var(--black);
  color: var(--black);
  padding: 0.9rem 1.6rem;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--black);
  color: #ffffff;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-item span {
  color: var(--black);
}

/* Card do Hero com Shadow Box Marcada */
.hero-card {
  background: #ffffff;
  border: 2px solid var(--black);
  padding: 1.35rem;
  box-shadow: 6px 6px 0px var(--black); /* Shadow Box marcante */
  position: relative;
  transition: var(--transition);
}

.hero-card:hover {
  box-shadow: 8px 8px 0px var(--yellow), 8px 8px 0px 2px var(--black);
  transform: translate(-2px, -2px);
}

.hero-card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.25rem 0.65rem;
  letter-spacing: 0.03em;
  z-index: 2;
}

.hero-card-media {
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.25rem;
  border: 1.5px solid var(--border-light);
}

.hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--black);
}

.hero-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.hero-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.hero-old-price {
  font-size: 0.9rem;
  color: var(--text-subtle);
  text-decoration: line-through;
}

.hero-price {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--black);
}

.pix-pill {
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--yellow-light);
  color: #713f12;
  border: 1px solid var(--yellow-border);
  padding: 0.2rem 0.5rem;
}

/* ==========================================================================
   VÍDEO REAL DO ESTOQUE
   ========================================================================== */

.video-section {
  padding: 4.5rem 0;
  background: var(--bg-main);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.8rem;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--yellow);
  padding: 0.2rem 0.6rem;
  display: inline-block;
  margin-bottom: 0.75rem;
  border: 1px solid #eab308;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.65rem;
  color: var(--black);
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Wrapper do vídeo com Box Shadow */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid var(--black);
  padding: 1.15rem;
  box-shadow: 6px 6px 0px var(--black); /* Shadow Box */
}

.video-player-container {
  overflow: hidden;
  background: #000;
  max-height: 480px;
  display: flex;
  justify-content: center;
  border: 1px solid #000000;
}

.video-player-container video {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.video-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  padding: 1.5rem 0.5rem 0.5rem;
  text-align: center;
  border-top: 1.5px solid var(--border-light);
  margin-top: 1rem;
}

.stat-box strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
}

.stat-box span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CATÁLOGO DE PRODUTOS
   ========================================================================== */

.products-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-top: 1.5px solid var(--border-light);
  border-bottom: 1.5px solid var(--border-light);
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.8rem;
}

.filter-btn {
  padding: 0.55rem 1.35rem;
  border: 1.5px solid var(--border-light);
  background: var(--bg-surface);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}

.filter-btn:hover {
  background: var(--bg-muted);
  color: var(--black);
  border-color: var(--black);
}

.filter-btn.active {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CARDS DE PRODUTOS COM SHADOW BOX E ÂNGULOS RETOS */
.product-card {
  background: #ffffff;
  border: 2px solid var(--black);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 5px 0px var(--black); /* Distinctive Shadow Box */
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: 7px 7px 0px var(--yellow), 7px 7px 0px 2px var(--black);
  border-color: var(--black);
  transform: translate(-2px, -2px);
}

.product-image-box {
  position: relative;
  background: #ffffff;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1.5px solid var(--border-light);
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-box img {
  transform: scale(1.04);
}

.discount-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--black);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.product-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--black);
  line-height: 1.35;
}

.product-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-specs {
  list-style: none;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-specs li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.product-specs li::before {
  content: '✓';
  color: var(--black);
  font-weight: 900;
}

/* Barra de Escassez no Card */
.stock-scarcity {
  margin-bottom: 0.95rem;
}

.stock-scarcity-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.stock-scarcity-text {
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 800;
}

.stock-scarcity-track {
  width: 100%;
  height: 6px;
  background: var(--bg-muted);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.stock-scarcity-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--black) 100%);
  transition: width 0.4s ease;
}

.scarcity-pill {
  font-size: 0.68rem;
  font-weight: 800;
  color: #713f12;
  background: var(--yellow-light);
  border: 1px solid var(--yellow-border);
  padding: 0.15rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.scarcity-pill-danger {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

.product-price-section {
  margin-top: auto;
  margin-bottom: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1.5px solid var(--border-light);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}

.old-price {
  font-size: 0.85rem;
  color: var(--text-subtle);
  text-decoration: line-through;
}

.current-price {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--black);
}

.installments-text {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
}

.product-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn-buy {
  flex: 1;
  background: var(--yellow);
  color: var(--black);
  padding: 0.75rem 0.9rem;
  font-weight: 900;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1.5px solid #09090b;
  box-shadow: 2px 2px 0px #09090b;
  transition: var(--transition);
}

.btn-buy:hover {
  background: var(--yellow-hover);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0px #09090b;
}

.btn-add {
  background: var(--bg-muted);
  border: 1.5px solid var(--border-light);
  color: var(--black);
  padding: 0.75rem 0.95rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-add:hover {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

/* ==========================================================================
   CARRINHO LATERAL (DRAWER)
   ========================================================================== */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-left: 2px solid var(--black);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.18);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  padding: 1.2rem 1.35rem;
  border-bottom: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}

.cart-header h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--black);
}

.btn-close-cart {
  width: 34px;
  height: 34px;
  background: var(--bg-muted);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-close-cart:hover {
  color: var(--black);
  border-color: var(--black);
  background: var(--border-light);
}

.cart-shipping-bar {
  padding: 0.9rem 1.35rem;
  background: var(--bg-highlight);
  border-bottom: 1.5px solid var(--yellow-border);
}

.shipping-msg {
  font-size: 0.8rem;
  font-weight: 800;
  color: #713f12;
  margin-bottom: 0.45rem;
  text-align: center;
}

.shipping-track {
  width: 100%;
  height: 7px;
  background: #fde68a;
  overflow: hidden;
  border: 1px solid #facc15;
}

.shipping-progress {
  height: 100%;
  background: var(--black);
  transition: width 0.3s ease;
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: 0.85rem;
  border: 1.5px solid var(--border-light);
  padding: 0.8rem;
  background: #ffffff;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.cart-item-thumb {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 800;
  padding-right: 1.5rem;
  color: var(--black);
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--black);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
}

.qty-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--black);
}

.qty-btn:hover {
  background: var(--bg-muted);
}

.qty-val {
  min-width: 24px;
  text-align: center;
  font-size: 0.825rem;
  font-weight: 800;
}

.btn-item-del {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--text-subtle);
  font-size: 1rem;
  padding: 2px;
}

.btn-item-del:hover {
  color: #ef4444;
}

.cart-footer {
  padding: 1.25rem;
  border-top: 1.5px solid var(--border-light);
  background: var(--bg-main);
}

.coupon-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.coupon-input {
  flex-grow: 1;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  padding: 0.6rem 0.8rem;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
}

.coupon-input:focus {
  outline: none;
  border-color: var(--black);
}

.btn-coupon {
  background: var(--black);
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0 1rem;
  transition: var(--transition);
}

.btn-coupon:hover {
  background: var(--black-hover);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--black);
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1.5px dashed var(--border-light);
}

.btn-checkout {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  padding: 0.95rem;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  border: 1.5px solid #09090b;
  box-shadow: 3px 3px 0px #09090b;
  transition: var(--transition);
}

.btn-checkout:hover {
  background: var(--yellow-hover);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px #09090b;
}

.cart-security {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-weight: 600;
}

/* ==========================================================================
   DEPOIMENTOS COM SHADOW BOX
   ========================================================================== */

.testimonials-section {
  padding: 4.5rem 0;
  background: var(--bg-main);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: #ffffff;
  border: 2px solid var(--black);
  padding: 1.6rem;
  box-shadow: 5px 5px 0px var(--black); /* Box shadow nos depoimentos */
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--black);
  box-shadow: 7px 7px 0px var(--yellow), 7px 7px 0px 2px var(--black);
  transform: translate(-2px, -2px);
}

.author-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.avatar-photo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid var(--black);
  flex-shrink: 0;
}

.avatar-initials {
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 1px solid var(--black);
}

.author-info h4 {
  font-size: 0.95rem;
  color: var(--black);
}

.verified-tag {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 800;
}

.stars-row {
  color: var(--yellow-dark);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.product-purchased {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-muted);
  border: 1px solid var(--border-light);
  padding: 0.25rem 0.55rem;
  display: inline-block;
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.6;
}

/* ==========================================================================
   BENEFÍCIOS E FAQ
   ========================================================================== */

.benefits-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 3.5rem 0;
  border-bottom: 1.5px solid var(--border-light);
  background: #ffffff;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #ffffff;
  border: 1.5px solid var(--black);
  padding: 1.25rem;
  box-shadow: 4px 4px 0px var(--black);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0px var(--yellow), 5px 5px 0px 1.5px var(--black);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-light);
  color: var(--black);
  border: 1.5px solid var(--yellow-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.benefit-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* FAQ */
.faq-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  border: 1.5px solid var(--black);
  background: #ffffff;
  box-shadow: 4px 4px 0px var(--black);
  transition: var(--transition);
}

.faq-header {
  width: 100%;
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--black);
  text-align: left;
}

.faq-icon {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 1.35rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-body {
  max-height: 200px;
  padding-bottom: 1.15rem;
}

/* ==========================================================================
   MODAL DE CHECKOUT YAMPI
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.65);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.checkout-dialog {
  background: #ffffff;
  border: 2px solid var(--black);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-modal);
  position: relative;
}

.checkout-top {
  padding: 1.15rem 1.5rem;
  border-bottom: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-muted);
}

.checkout-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--black);
  background: var(--yellow);
  padding: 0.25rem 0.65rem;
  border: 1px solid #eab308;
}

.btn-modal-close {
  font-size: 1.2rem;
  color: var(--text-muted);
  padding: 4px;
}

.btn-modal-close:hover {
  color: var(--black);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.form-input, .form-select {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  padding: 0.7rem 0.85rem;
  font-size: 0.875rem;
  color: var(--black);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 2px rgba(255, 208, 0, 0.4);
}

/* Tabs de Pagamento */
.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pay-tab {
  background: var(--bg-muted);
  border: 1.5px solid var(--border-light);
  padding: 0.7rem 0.4rem;
  text-align: center;
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.pay-tab:hover {
  border-color: var(--black);
  color: var(--black);
}

.pay-tab.active {
  background: var(--yellow);
  border-color: var(--black);
  color: var(--black);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
}

.pay-view {
  display: none;
}

.pay-view.active {
  display: block;
}

.pix-card {
  background: var(--bg-highlight);
  border: 1.5px solid var(--yellow-border);
  padding: 1.25rem;
  text-align: center;
}

.pix-qr-wrap {
  width: 160px;
  height: 160px;
  margin: 0.75rem auto;
  background: #ffffff;
  padding: 6px;
  border: 1.5px solid var(--border-light);
}

.pix-qr-wrap img {
  width: 100%;
  height: 100%;
}

.pix-input-group {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.pix-copy-input {
  flex-grow: 1;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  padding: 0.55rem;
  font-family: monospace;
  font-size: 0.75rem;
}

.btn-pix-copy {
  background: var(--black);
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0 1rem;
}

.checkout-sidebar {
  background: var(--bg-main);
  border: 1.5px solid var(--border-light);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.sidebar-title {
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1.5px solid var(--border-light);
  color: var(--black);
}

.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.btn-pay-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  padding: 0.95rem;
  font-weight: 900;
  font-size: 0.95rem;
  margin-top: 1rem;
  border: 1.5px solid #09090b;
  box-shadow: 3px 3px 0px #09090b;
  transition: var(--transition);
}

.btn-pay-submit:hover {
  background: var(--yellow-hover);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px #09090b;
}

/* ==========================================================================
   NOTIFICAÇÃO DE PROVA SOCIAL COM SHADOW BOX
   ========================================================================== */

.sales-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border: 2px solid var(--black);
  border-left: 8px solid var(--yellow);
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 6px 6px 0px var(--black), 0 12px 28px rgba(0, 0, 0, 0.12); /* Shadow Box marcante */
  z-index: 9999;
  max-width: 380px;
  transform: translateY(140px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: none;
}

.sales-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sales-notification-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1.5px solid var(--black);
  background: #ffffff;
  flex-shrink: 0;
}

.btn-toast-close {
  background: none;
  border: none;
  color: var(--text-subtle);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  margin-left: auto;
  line-height: 1;
  transition: var(--transition);
  align-self: flex-start;
}

.btn-toast-close:hover {
  color: var(--black);
}

.sales-notification-content strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--black);
}

.sales-notification-content span {
  font-size: 0.775rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.35;
}

.sales-notification-meta {
  font-size: 0.72rem;
  color: #15803d;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.15rem;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: #f4f4f5;
  border-top: 3px solid var(--yellow);
  padding: 3.8rem 0 2rem;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  color: #ffffff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50% !important;
  border: 2px solid var(--yellow);
  box-shadow: 0 0 8px rgba(255, 208, 0, 0.25);
  flex-shrink: 0;
}

.footer-brand-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: #a1a1aa;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #a1a1aa;
  font-size: 0.78rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}
