@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #f3be61;
  --primary-dark: #e6a84a;
  --bg-dark: #1d1d1d;
  --bg-darker: #000000;
  --text-light: #ffffff;
  --text-gray: #cccccc;
  --text-dark-gray: #999999;
  --border-dark: #1a1a1a;
  --card-bg: #111111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-darker);
  color: var(--text-light);
  line-height: 1.5;
}

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

/* ========================================== */
/* LOADER FULLSCREEN */
/* ========================================== */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.loader-container {
  text-align: center;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(243, 190, 97, 0.1);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ========================================== */
/* HEADER TOP FIXO */
/* ========================================== */

.header-top-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dark);
  z-index: 998;
}

.header-top-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 500;
}

.header-top-fixed-link {
    color: inherit;
    text-decoration: none;
  }

.header-top-links span {
  cursor: pointer;
  transition: color 0.3s;
}

.header-top-links span:hover {
  color: var(--primary);
}

/* ========================================== */
/* HEADER MAIN FIXO */
/* ========================================== */

.header-main-fixed {
  position: fixed;
  top: 31px;
  left: 0;
  right: 0;
  background-color: var(--bg-dark);
  padding: 15px 0;
  border-bottom: 2px solid var(--border-dark);
  z-index: 998;
}

.header-content-fixed {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-fixed h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  letter-spacing: 1px;
}

.cart-icon-header-fixed {
  position: relative;
  cursor: pointer;
  font-size: 28px;
  transition: all 0.3s;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #333333;
}

.cart-icon-header-fixed:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cart-icon {
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary);
  color: #000000;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid var(--bg-dark);
}

/* Spacing para headers fixos */
.header-spacing {
  height: 95px;
  display: none;
}

@media (min-width: 769px) {
  .header-spacing {
    display: block;
  }
}

/* ========================================== */
/* BANNER PRINCIPAL */
/* ========================================== */

.bf-banner-main {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 0;
  border: 1px solid var(--border-dark);
}

.banner-image {
  /* width: 100%;
  height: 100%;
  object-fit: cover; */
  max-height: 420px;
}

@media (max-width: 768px) {
  .bf-banner-main {
    /* height: 250px; */
    margin: 110px 0 15px 0;
  }
}

/* ========================================== */
/* CARROSSEL */
/* ========================================== */

.carousel-section-bf {
  padding: 50px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  margin: 0 0 30px 0;
}

.carousel-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.carousel-item {
  flex: 0 0 calc(25% - 15px);
  background-color: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.carousel-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(243, 190, 97, 0.2);
  transform: translateY(-6px);
}

.carousel-item-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background-color: #1a1a1a;
}

.carousel-item-info {
  padding: 16px;
}

.carousel-item-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-light);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 32px;
}

.carousel-item-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.carousel-item-from {
  font-size: 12px;
  color: #999999;
  text-decoration: line-through;
}

.carousel-item-to {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.carousel-discount-badge {
  background-color: var(--primary);
  color: #000000;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.carousel-btn {
  background-color: var(--primary);
  color: #000000;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-weight: 700;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #333333;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.carousel-dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 calc(50% - 10px);
  }

  .carousel-item-image {
    height: 180px;
  }

  .carousel-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ========================================== */
/* BLACK FRIDAY HERO */
/* ========================================== */

.bf-hero-black {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 40px 20px;
  text-align: center;
  /* border-top: 3px solid var(--primary); */
  /* border-bottom: 3px solid var(--primary); */
  /* margin: 30px 0; */
}

.bf-content {
  animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.bf-title-black {
  font-size: 56px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 15px;
  text-shadow: 0 4px 12px rgba(243, 190, 97, 0.3);
  letter-spacing: 3px;
}

.bf-subtitle-black {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 600;
}

.bf-tagline-black {
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 300;
}

/* ========================================== */
/* MAIN */
/* ========================================== */

.main-black {
  padding: 40px 0;
}

/* ========================================== */
/* COLLECTION */
/* ========================================== */

.collection-section-black {
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
}

.collection-title-black {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.collection-products-count {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: -20px;
  margin-bottom: 20px;
}

/* ========================================== */
/* PRODUCTS GRID - 4 COLUNAS */
/* ========================================== */

.products-grid-black {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.product-card-black {
  background-color: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
  position: relative; /* ← ADICIONE */
  background-color: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
}

.product-card-black:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(243, 190, 97, 0.2);
  transform: translateY(-4px);
}

/* Novo estilo para o selo sobre a imagem */
.product-discount-seal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #000000;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(243, 190, 97, 0.3);
  z-index: 10;
  line-height: 1.2;
}

.product-image-black {
  width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #1a1a1a;
  transition: transform 0.3s;
}

.product-card-black:hover .product-image-black {
  transform: scale(1.05);
}

.product-info-black {
  padding: 12px;
}

.product-sku-black {
  font-size: 10px;
  color: var(--text-dark-gray);
  margin-bottom: 6px;
}

.product-name-black {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  color: var(--text-light);
}

.product-prices-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0;
}

.product-price-from {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

.product-price-from .strikethrough {
  text-decoration: line-through;
  color: #999999;
  font-weight: 400;
  margin-left: 4px;
}

.product-price-to {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin: 5px 0 0 0;
  text-shadow: 0 2px 4px rgba(243, 190, 97, 0.2);
}

.product-price-to .highlight {
  display: inline;
  color: var(--primary);
  font-weight: 900;
  font-size: 20px;
}

.product-discount-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #000000;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin: 8px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(243, 190, 97, 0.2);

  display: none; /* ← ESCONDER */
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.product-image-wrapper .product-discount-seal {
  position: absolute;
  top: 10px;
  right: 10px;
}

.carousel-item-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.carousel-item-buttons .btn-product-black {
  flex: 1;
  background-color: var(--primary);
  color: #000000;
  padding: 8px 10px;
  border: none;
  font-weight: 600;
  font-size: 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
}

.carousel-item-buttons .btn-product-black:hover {
  background-color: var(--primary-dark);
}

.carousel-item-buttons .btn-add-cart {
  flex: 1;
  background-color: #4caf50;
  color: var(--text-light);
  padding: 8px 10px;
  border: none;
  font-weight: 600;
  font-size: 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
}

.carousel-item-buttons .btn-add-cart:hover {
  background-color: #45a049;
}

.carousel-item-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.carousel-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-discount-seal {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  z-index: 10;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(243, 190, 97, 0.3);
}

.carousel-item-buttons {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.carousel-item-buttons .btn-product-black,
.carousel-item-buttons .btn-add-cart {
  flex: 1;
  padding: 7px 10px;
  font-size: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item-buttons .btn-product-black {
  background-color: var(--primary);
  color: #000000;
}

.carousel-item-buttons .btn-product-black:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.carousel-item-buttons .btn-add-cart {
  background-color: #4caf50;
  color: var(--text-light);
}

.carousel-item-buttons .btn-add-cart:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

.product-price-black.loading {
  font-size: 11px;
  color: var(--text-dark-gray);
  font-style: italic;
}

.product-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.btn-product-black {
  flex: 1;
  display: inline-block;
  background-color: var(--primary);
  color: #000000;
  padding: 8px 12px;
  text-decoration: none;
  border: none;
  font-weight: 600;
  font-size: 11px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

.btn-product-black:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.btn-add-cart {
  flex: 1;
  background-color: #4caf50;
  color: var(--text-light);
  padding: 8px 12px;
  border: none;
  font-weight: 600;
  font-size: 11px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

.btn-add-cart:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

/* ========================================== */
/* LOAD MORE */
/* ========================================== */

.load-more-container-black {
  text-align: center;
  padding: 30px 0;
}

.btn-load-more-black {
  background-color: var(--primary);
  color: #000000;
  border: none;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 300px;
}

.btn-load-more-black:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 190, 97, 0.3);
}

.btn-load-more-black:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.loading-more-black {
  display: none;
  text-align: center;
  padding: 20px;
}

.loading-more-black.visible {
  display: block;
}

/* ========================================== */
/* LOADING & MESSAGES */
/* ========================================== */

.loading-black {
  text-align: center;
  padding: 60px 40px;
  display: none;
}

.loading-black.visible {
  display: block;
}

.spinner-black {
  border: 4px solid #333333;
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.spinner-black.small {
  width: 35px;
  height: 35px;
  border-width: 3px;
}

.status-message-black {
  padding: 16px;
  border-radius: 4px;
  margin: 20px 0;
  font-weight: 500;
  display: none;
}

.status-message-black.success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 2px solid #4caf50;
  color: #4caf50;
  display: block;
}

.status-message-black.error {
  background-color: rgba(244, 67, 54, 0.1);
  border: 2px solid #f44336;
  color: #f44336;
  display: block;
}

.status-message-black.hidden {
  display: none !important;
}

.empty-state-black {
  text-align: center;
  padding: 80px 40px;
  color: var(--text-gray);
  font-size: 18px;
  display: none;
}

.empty-state-black:not(.hidden) {
  display: block;
}

/* ========================================== */
/* CART DRAWER */
/* ========================================== */

.cart-drawer {
  position: fixed;
  right: -400px;
  top: 95px;
  width: 400px;
  height: calc(100vh - 95px);
  background-color: var(--card-bg);
  border-left: 2px solid var(--primary);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-dark);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #000000;
}

.cart-header h2 {
  font-size: 18px;
  font-weight: 700;
}

.cart-close {
  background: none;
  border: none;
  color: #000000;
  font-size: 28px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.cart-close:hover {
  transform: rotate(90deg);
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.empty-cart {
  text-align: center;
  color: var(--text-gray);
  padding: 40px 20px;
  font-style: italic;
}

.cart-item {
  background-color: #1a1a1a;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  background-color: #222;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-light);
}

.cart-item-price {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #0a0a0a;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 8px;
}

.cart-item-qty-btn {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  transition: all 0.3s;
}

.cart-item-qty-btn:hover {
  color: var(--primary-dark);
  transform: scale(1.2);
}

.cart-item-qty-value {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--text-light);
}

.cart-item-remove {
  background: none;
  border: none;
  color: #f44336;
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s;
}

.cart-item-remove:hover {
  color: #ff5252;
}

.cart-footer {
  border-top: 1px solid var(--border-dark);
  padding: 20px;
  background-color: #0a0a0a;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-light);
}

.cart-total span {
  font-size: 20px;
  color: var(--primary);
  font-weight: 800;
}

.btn-checkout,
.btn-clear-cart {
  width: 100%;
  border: none;
  padding: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}

.btn-checkout {
  background-color: var(--primary);
  color: #000000;
  margin-bottom: 10px;
}

.btn-checkout:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-clear-cart {
  background-color: #333333;
  color: var(--text-light);
  border: 1px solid var(--border-dark);
}

.btn-clear-cart:hover {
  background-color: #444444;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.cart-overlay.active {
  display: block;
  opacity: 1;
}

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

.footer-black {
  background-color: #0a0a0a;
  border-top: 2px solid var(--border-dark);
  padding: 40px 0 20px;
  margin-top: 60px;
}

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

.footer-col {
  padding: 0 20px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom-black {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
  font-size: 13px;
  color: var(--text-dark-gray);
}

/* ========================================== */
/* RESPONSIVO */
/* ========================================== */

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

@media (max-width: 768px) {
  .header-top-fixed {
    padding: 6px 0;
  }

  .header-top-links {
    font-size: 10px;
    gap: 15px;
  }
  .header-top-fixed-link {
    color: inherit;
    text-decoration: none;
  }

  .header-spacing {
    height: 80px;
  }

  .header-main-fixed {
    top: 26px;
    padding: 12px 0;
  }

  .logo-fixed h1 {
    font-size: 20px;
  }

  .logo-fixed a img {
    max-height: 45px;
  }

  .cart-icon-header-fixed {
    font-size: 24px;
  }

  .products-grid-black {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-image-black {
    height: auto;
  }

  .bf-title-black {
    font-size: 40px;
  }

  .carousel-item {
    flex: 0 0 calc(50% - 10px);
  }

  .cart-drawer {
    width: 100%;
    right: -100%;
    top: 60px;
    height: calc(100vh - 60px);
  }
}

@media (max-width: 480px) {
  .header-top-links {
    font-size: 9px;
    gap: 10px;
  }

  .carousel-item {
    flex: 0 0 100%;
  }

  .btn-load-more-black {
    min-width: auto;
    width: 100%;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* ========================================== */
/* UTILIDADES */
/* ========================================== */

.hidden {
  display: none !important;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

/* preco pix */
span.reduced {
  font-size: 14px;
  color: #d2c4b1;
  margin-left: 5px;
  text-transform: lowercase;
}


/* ========================================== */
/* CTA FINAL SECTION */
/* ========================================== */

.cta-final-black {
  padding: 0px 0 80px; /* Espaço generoso */
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  /* border-top: 1px solid #222; */
}

.cta-box {
  background: linear-gradient(135deg, #111 0%, #080808 100%);
  border: 1px solid var(--primary); /* Borda Dourada */
  border-radius: 8px;
  padding: 50px 30px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 30px rgba(243, 190, 97, 0.05); /* Glow suave dourado */
  position: relative;
  overflow: hidden;
}

/* Efeito de brilho passando */
.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  100% { left: 100%; }
}

.cta-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-box p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.cta-box .highlight-text {
  font-size: 18px;
  color: var(--text-light);
  margin-top: 20px;
  margin-bottom: 35px;
}

.cta-box strong {
  color: var(--primary);
  font-weight: 900;
}

.btn-cta-final {
  display: inline-block;
  background-color: var(--primary);
  color: #000000;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(243, 190, 97, 0.3);
}

.btn-cta-final:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(243, 190, 97, 0.5);
}

@media (max-width: 768px) {
  .cta-box {
    padding: 30px 20px;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
  
  .cta-box h3 {
    font-size: 22px;
  }
  
  .btn-cta-final {
    width: 100%;
    padding: 16px;
  }
}


/* ========================================== */
/* POPUP LEAD CAPTURE */
/* ========================================== */

.bf-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 10000; /* Acima de tudo, inclusive do loader */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.bf-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.bf-popup-content {
  background: linear-gradient(145deg, #1a1a1a 0%, #000000 100%);
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 40px;
  width: 90%;
  max-width: 480px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 50px rgba(243, 190, 97, 0.2);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bf-popup-overlay.active .bf-popup-content {
  transform: scale(1);
}

.bf-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #666;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.bf-popup-close:hover {
  color: var(--primary);
}

.bf-popup-tag {
  background-color: var(--primary);
  color: #000;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bf-popup-header h2 {
  font-size: 24px;
  color: var(--text-light);
  margin: 15px 0 10px;
  line-height: 1.3;
}

.bf-popup-header p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 25px;
}

.bf-popup-form .form-group {
  margin-bottom: 15px;
}

.bf-popup-form input[type="text"],
.bf-popup-form input[type="email"],
.bf-popup-form input[type="tel"] {
  width: 100%;
  padding: 12px;
  background-color: #222;
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.3s;
}

.bf-popup-form input:focus {
  border-color: var(--primary);
  outline: none;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 12px;
  color: var(--text-gray);
}

.form-check input {
  margin-top: 2px;
  accent-color: var(--primary);
}

.btn-bf-submit {
  width: 100%;
  padding: 14px;
  background-color: var(--primary);
  color: #000;
  border: none;
  border-radius: 4px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-bf-submit:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 190, 97, 0.3);
}

@media (max-width: 480px) {
  .bf-popup-content {
    padding: 30px 20px;
  }
  .bf-popup-header h2 {
    font-size: 20px;
  }
}