/* ==========================================================================
   CAMPANHA CLIMATIZAÇÃO - ESTILOS
   ========================================================================== */

:root {
  --campanha-hero-bg: #0f1a38;
  --campanha-red: #dc2626;
  --campanha-red-hover: #b91c1c;
  --campanha-red-light: #fef2f2;
  --campanha-red-border: #fee2e2;
}

/* Page Layout */
.campanha-body {
  background-color: var(--gray-50);
  font-family: var(--font-body);
}

/* Hero Section */
.campanha-hero {
  position: relative;
  background: var(--campanha-hero-bg);
  background-image: url("../../images/banners/FundoHeroCampanha.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0 100px;
  overflow: hidden;
  text-align: center;
}

.campanha-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.campanha-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.campanha-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid var(--campanha-red);
  color: #fca5a5;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.campanha-badge svg {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.campanha-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: #ffffff !important;
}

.campanha-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gray-300);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Brands Overview */
.campanha-brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.campanha-brand-logo {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 18px 28px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.campanha-brand-logo span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fca5a5;
  text-transform: uppercase;
}

.campanha-brand-logo:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.brand-logo-hero {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

/* Solzaima (black bg) and Delba (dark text) on dark hero: brighten to white */
.brand-logo-hero.brand-logo-dark {
  filter: brightness(0) invert(1);
}

.brand-logo-filter {
  height: 20px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
}

/* On light filter button bg, dark logos look fine; invert only on active (red bg) */
.campanha-filter-btn.active .brand-logo-filter.brand-logo-filter-dark {
  filter: brightness(0) invert(1);
}
.campanha-filter-btn.active .brand-logo-filter:not(.brand-logo-filter-dark) {
  filter: brightness(0) invert(1);
}

.brand-section-logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* Section Divider / Filter Area */
.campanha-filter-section {
  position: relative;
  margin-top: -40px;
  z-index: 10;
  padding: 0 24px;
}

.campanha-filter-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow:
    var(--shadow-lg-light),
    0 10px 30px rgba(15, 26, 56, 0.05);
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  border: 1px solid var(--gray-100);
}

.campanha-filter-btn {
  background: var(--gray-50);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.campanha-filter-btn:hover {
  background: var(--gray-100);
  color: var(--blue-900);
  border-color: var(--gray-300);
}

.campanha-filter-btn.active {
  background: var(--campanha-red);
  color: #fff;
  border-color: var(--campanha-red);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

/* Products Grid Area */
.campanha-products-section {
  max-width: 1200px;
  margin: 60px auto 100px;
  padding: 0 24px;
}

.brand-section-header {
  margin: 60px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 16px;
}

.brand-section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-900);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-section-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 28px;
  background: var(--campanha-red);
  border-radius: 4px;
}

.brand-discount-badge {
  background: var(--campanha-red-light);
  color: var(--campanha-red);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid var(--campanha-red-border);
}

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

/* Card Styling */
.product-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    var(--shadow-lg-light),
    0 12px 28px rgba(15, 26, 56, 0.08);
  border-color: var(--gray-200);
}

/* Floating Badges */
.card-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}

.tag-promo {
  align-self: flex-start;
  background: linear-gradient(
    135deg,
    var(--campanha-red),
    var(--campanha-red-hover)
  );
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(220, 38, 38, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.tag-distribuidor {
  align-self: flex-start;
  background: var(--blue-900);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  opacity: 0.95;
}

/* Card Image */
.card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Square aspect ratio */
  background: var(--gray-50);
  overflow: hidden;
  border-bottom: 1px solid var(--gray-100);
}

.card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s ease;
}

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

/* Card Body */
.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-brand {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 8px;
  height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.2s;
}

.product-name:hover {
  color: var(--orange-600);
}

.product-ref {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-ref span {
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--gray-700);
}

/* Pricing Layout */
.card-price-wrapper {
  margin-top: auto;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-200);
}

.price-original {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price-promo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-900);
}

.price-suffix {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.price-iva-info {
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.price-consult {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange-600);
}

/* Card Button */
.btn-card-quote {
  width: 100%;
  background: var(--orange-500);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-card-quote:hover {
  background: var(--orange-300);
  box-shadow: 0 4px 10px rgba(209, 124, 43, 0.2);
}

.btn-card-quote.in-quote {
  background: var(--success);
  cursor: default;
  opacity: 0.85;
}

.btn-card-quote.in-quote:hover {
  background: var(--success);
  box-shadow: none;
}

.btn-card-quote:disabled {
  cursor: not-allowed;
  pointer-events: auto;
}

.btn-card-quote.in-quote:hover {
  background: var(--success-dark);
}

/* Info Banner Section */
.campanha-info-banner {
  background: var(--blue-900);
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.campanha-info-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.campanha-info-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff !important;
}

.campanha-info-text {
  color: var(--gray-300);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.campanha-info-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-info-primary {
  background: var(--orange-500);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-info-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
}

.btn-info-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-info-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Loading/Skeleton Styles */
.skeleton-card {
  height: 420px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skeleton-img {
  width: 100%;
  height: 180px;
  background: var(--gray-100);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.skeleton-text-line {
  height: 16px;
  background: var(--gray-100);
  border-radius: 4px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.skeleton-text-line.short {
  width: 60%;
}

.skeleton-text-line.title {
  height: 24px;
}

.skeleton-btn {
  height: 44px;
  background: var(--gray-100);
  border-radius: 8px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.skeleton-card .skeleton-img::after,
.skeleton-card .skeleton-text-line::after,
.skeleton-card .skeleton-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 20%,
    rgba(255, 255, 255, 0.6) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* Quote Drawer */
.quote-drawer {
  position: fixed;
  top: 136px;
  right: -450px;
  width: min(380px, 100vw);
  height: calc(100vh - 124px);
  height: calc(100dvh - 124px);
  background: white;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  border-radius: 16px 0 0 0px;
  pointer-events: none;
}

.quote-drawer.open {
  right: 0;
  pointer-events: auto;
}

.quote-drawer-header {
  background: linear-gradient(
    135deg,
    var(--orange-500) 0%,
    var(--orange-700) 100%
  );
  padding: 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-radius: 16px 0 0 0px;
}

.quote-drawer-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.close-drawer-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-drawer-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

.quote-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
}

.quote-drawer-footer {
  padding: 20px;
  background: white;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.drawer-actions-secondary {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.quote-drawer .btn-text {
  flex: 1;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  text-decoration: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote-drawer .btn-text:hover:not(:disabled) {
  background: var(--gray-100);
  color: var(--gray-900);
  border-color: var(--gray-300);
}

.quote-drawer .btn-text:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--gray-50);
}

.quote-drawer .quote-summary {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: white;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.quote-drawer .quote-items {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  margin-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange-300) var(--gray-100);
}

.quote-item {
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 80px;
}

.quote-item-ref {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 4px;
  font-size: 0.8rem;
  word-break: break-all;
}

.quote-item-name {
  font-family: var(--font-body);
  color: var(--gray-600);
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  word-wrap: break-word;
  margin-bottom: 6px;
}

.quote-item-qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  background: white;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  width: fit-content;
}

.quote-qty-btn {
  width: 22px;
  height: 22px;
  border: none;
  background: var(--gray-200);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gray-700);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote-qty-btn:hover {
  background: var(--orange-500);
  color: white;
  transform: scale(1.1);
}

.quote-qty-btn:active {
  transform: scale(0.95);
}

.quote-qty-value {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-700);
  min-width: 28px;
  text-align: center;
}

.remove-btn {
  background: transparent;
  color: var(--gray-400);
  border: none;
  padding: 4px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s ease;
  min-width: 24px;
  height: 24px;
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.remove-btn:hover {
  background: var(--gray-100);
  color: var(--error);
  transform: scale(1.1);
  opacity: 1;
}

.remove-btn:active {
  transform: scale(0.95);
}

/* Quote Toggle Bookmark */
.quote-toggle-bookmark {
  position: fixed;
  top: 214px;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--orange-500) 0%,
    var(--orange-700) 100%
  );
  color: white;
  padding: 7px 12px 7px 14px;
  border-radius: 50px 0 0 50px;
  box-shadow: -4px 4px 15px rgba(219, 111, 39, 0.4);
  cursor: pointer;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: right center;
  font-family: var(--font-display);
  font-weight: 700;
}

.quote-toggle-bookmark:hover {
  padding-right: 18px;
  transform: scale(1.04);
  box-shadow: -6px 6px 20px rgba(219, 111, 39, 0.6);
}

.quote-toggle-bookmark:active {
  transform: scale(0.95);
}

.bookmark-icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.bookmark-count {
  background: white;
  color: #db2777;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes shimmy {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

.quote-toggle-bookmark.pulse {
  animation: shimmy 0.5s ease-in-out;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero */
  .campanha-hero {
    padding: 48px 0 72px;
  }

  .campanha-brands-grid {
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .campanha-brand-logo {
    padding: 12px 14px;
    flex: 1;
    min-width: 0;
  }

  .brand-logo-hero {
    height: 32px;
    max-width: 100px;
  }

  /* Filters */
  .campanha-filter-container {
    padding: 10px;
    gap: 8px;
  }

  .campanha-filter-btn {
    padding: 10px 16px;
    font-size: 0.875rem;
  }

  /* Products section */
  .campanha-products-section {
    margin: 40px auto 60px;
    padding: 0 16px;
  }

  .brand-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 40px 0 20px;
  }

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

  /* Compact cards for 2-col layout */
  .card-body {
    padding: 12px;
  }

  .card-img {
    padding: 10px;
  }

  .product-name {
    font-size: 0.85rem;
  }

  .price-value {
    font-size: 1.1rem;
  }

  .btn-card-quote {
    padding: 10px 8px;
    font-size: 0.8rem;
    gap: 5px;
  }

  .tag-promo,
  .tag-distribuidor {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  /* Quote drawer → bottom sheet */
  .quote-drawer {
    width: 100%;
    right: auto;
    left: 0;
    top: auto;
    bottom: -100%;
    height: 82dvh;
    border-radius: 20px 20px 0 0;
    transition: bottom 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .quote-drawer.open {
    bottom: 0;
  }

  .quote-drawer-header {
    border-radius: 20px 20px 0 0;
    padding-top: 24px;
    position: relative;
  }

  .quote-drawer-header::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
  }

  .quote-drawer-body {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
  }

  .quote-drawer-footer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .quote-toggle-bookmark {
    top: auto;
    bottom: calc(128px + env(safe-area-inset-bottom));
    right: 0;
  }
}

@media (max-width: 400px) {
  .campanha-brands-grid {
    gap: 8px;
  }

  .campanha-brand-logo {
    padding: 10px 10px;
  }

  .brand-logo-hero {
    height: 26px;
    max-width: 80px;
  }

  .products-grid {
    gap: 8px;
  }
}
