/* Conecta Imports: identidade visual (logo: escuro + azul + chrome + bandeiras) */

:root {
  --brand-blue: #0057D9;
  --brand-blue-dark: #003FA3;
  --brand-blue-glow: #1E7BFF;
  --brand-chrome: #C5CDD8;
  --brand-chrome-bright: #E8EEF6;
  --brand-ink: #0F172A;
  --brand-dark: #07080C;
  --brand-dark-panel: #0B0D14;
  --brand-orange: #FF6A1A;
  --brand-red: #D52B1E;
  --brand-green: #009739;
  --brand-yellow: #FEDD00;
  --hex: rgba(0, 87, 217, 0.06);
  --hex-dark: rgba(30, 123, 255, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  background-image:
    radial-gradient(ellipse 70% 45% at 100% -10%, rgba(0, 87, 217, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 35% at -5% 30%, rgba(213, 43, 30, 0.05), transparent 50%),
    radial-gradient(ellipse 55% 40% at 50% 110%, rgba(0, 151, 57, 0.06), transparent 55%);
}

/* Barra das bandeiras Paraguai / Brasil */
.flag-bar {
  height: 4px;
  background: linear-gradient(
    90deg,
    #D52B1E 0%,
    #D52B1E 16%,
    #ffffff 16%,
    #ffffff 20%,
    #0038A8 20%,
    #0038A8 34%,
    #009739 34%,
    #009739 54%,
    #FEDD00 54%,
    #FEDD00 70%,
    #002776 70%,
    #002776 100%
  );
}

.logo-mark {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  background: #05060a;
  border-radius: 0.45rem;
  box-shadow:
    0 0 0 1px rgba(5, 6, 10, 0.9),
    0 0 0 2px rgba(0, 63, 163, 0.35),
    0 10px 28px rgba(5, 6, 10, 0.45);
}

.logo-mark--header {
  height: 3.25rem;
  width: auto;
  max-height: 3.25rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

@media (min-width: 768px) {
  .logo-mark--header {
    height: 3.75rem;
    max-height: 3.75rem;
  }
}

.logo-mark--login {
  width: 11rem;
  height: auto;
  max-width: 70vw;
  margin-left: auto;
  margin-right: auto;
}

.logo-mark--admin {
  width: 9.5rem;
  height: auto;
  max-width: 100%;
}

.logo-mark--footer {
  width: 8.5rem;
  height: auto;
}

a:hover .logo-mark--header {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(5, 6, 10, 0.95),
    0 0 0 2px rgba(30, 123, 255, 0.55),
    0 0 22px rgba(0, 87, 217, 0.35),
    0 12px 30px rgba(5, 6, 10, 0.5);
}

/* Header sticky: escuro como a logo */
.site-header {
  background:
    linear-gradient(180deg, rgba(11, 13, 20, 0.97), rgba(7, 8, 12, 0.94));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30, 123, 255, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  color: #E8EEF6;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(197, 205, 216, 0.85);
  border-radius: 9999px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  background: rgba(30, 123, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(30, 123, 255, 0.35);
}

.nav-dropdown {
  background: #0B0D14;
  border: 1px solid rgba(30, 123, 255, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.nav-dropdown__item {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: rgba(197, 205, 216, 0.9);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown__item:hover {
  background: rgba(30, 123, 255, 0.12);
  color: #fff;
}

.header-search {
  width: 11rem;
  border-radius: 9999px;
  border: 1px solid rgba(30, 123, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, width 0.25s;
}

@media (min-width: 1024px) {
  .header-search {
    width: 14rem;
  }
}

.search-box:focus-within .header-search,
.header-search:focus {
  width: 16rem;
}

@media (min-width: 1024px) {
  .search-box:focus-within .header-search,
  .header-search:focus {
    width: 18rem;
  }
}

.search-box .header-search.w-full,
.search-box:focus-within .header-search.w-full,
.header-search.w-full:focus {
  width: 100%;
}

.header-search::placeholder {
  color: rgba(197, 205, 216, 0.55);
}

.header-search:focus {
  outline: none;
  border-color: rgba(30, 123, 255, 0.65);
  background: rgba(30, 123, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(30, 123, 255, 0.2);
}

.search-box {
  position: relative;
}

.search-suggest {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  min-width: 18rem;
  max-height: 22rem;
  overflow-y: auto;
  z-index: 70;
  background: #0B0D14;
  border: 1px solid rgba(30, 123, 255, 0.35);
  border-radius: 0.9rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 87, 217, 0.15);
}

.search-suggest--mobile {
  min-width: 0;
  width: 100%;
}

.search-suggest__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  color: #E8EEF6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s;
}

.search-suggest__item:last-child {
  border-bottom: none;
}

.search-suggest__item:hover,
.search-suggest__item.is-active {
  background: rgba(30, 123, 255, 0.14);
}

.search-suggest__img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  object-fit: cover;
  background: #122044;
  flex-shrink: 0;
}

.search-suggest__meta {
  min-width: 0;
  flex: 1;
}

.search-suggest__nome {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggest__cat {
  font-size: 0.68rem;
  color: rgba(197, 205, 216, 0.55);
  margin-top: 0.1rem;
}

.search-suggest__preco {
  font-size: 0.8rem;
  font-weight: 700;
  color: #7EB6FF;
  white-space: nowrap;
}

.search-suggest__empty,
.search-suggest__loading {
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(197, 205, 216, 0.65);
}

.search-suggest__footer {
  display: block;
  padding: 0.75rem 0.85rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7EB6FF;
  border-top: 1px solid rgba(30, 123, 255, 0.2);
}

.search-suggest__footer:hover {
  background: rgba(30, 123, 255, 0.1);
  color: #fff;
}

.search-suggest--light {
  position: relative;
  top: 0.4rem;
  left: 0;
  right: 0;
  min-width: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.search-suggest--light .search-suggest__item {
  color: #0f172a;
  border-bottom-color: #f1f5f9;
}

.search-suggest--light .search-suggest__item:hover,
.search-suggest--light .search-suggest__item.is-active {
  background: #eff6ff;
}

.search-suggest--light .search-suggest__cat {
  color: #94a3b8;
}

.search-suggest--light .search-suggest__footer {
  color: #0057D9;
  border-top-color: #e2e8f0;
}

.search-suggest--light .search-suggest__empty,
.search-suggest--light .search-suggest__loading {
  color: #64748b;
}

/* Busca em tempo real do catalogo */
.catalog-search__field {
  position: relative;
  display: flex;
  align-items: center;
}

.catalog-search__icon {
  position: absolute;
  left: 1rem;
  width: 1.1rem;
  height: 1.1rem;
  color: #94a3b8;
  pointer-events: none;
}

.catalog-search__input {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 9999px;
  padding: 0.85rem 2.75rem 0.85rem 2.75rem;
  font-size: 0.95rem;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.catalog-search__input:focus {
  outline: none;
  border-color: #0057D9;
  box-shadow: 0 0 0 4px rgba(0, 87, 217, 0.12);
}

.catalog-search__input::placeholder {
  color: #94a3b8;
}

.catalog-search__clear {
  position: absolute;
  right: 0.85rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  color: #64748b;
  background: #f1f5f9;
  transition: background 0.15s, color 0.15s;
}

.catalog-search__clear:hover {
  background: #e2e8f0;
  color: #0f172a;
}

[data-product-card][hidden] {
  display: none !important;
}

.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  border-radius: 9999px;
  color: #E8EEF6;
  border: 1px solid rgba(197, 205, 216, 0.25);
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.header-icon-btn:hover {
  color: #fff;
  border-color: rgba(30, 123, 255, 0.55);
  background: rgba(30, 123, 255, 0.15);
  box-shadow: 0 0 16px rgba(30, 123, 255, 0.25);
}

.mobile-link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-weight: 500;
  color: #E8EEF6;
  border-radius: 0.5rem;
}

.mobile-link:hover {
  background: rgba(30, 123, 255, 0.12);
  color: #fff;
}

.footer-link {
  color: rgba(197, 205, 216, 0.75);
  transition: color 0.2s;
}

.footer-link:hover {
  color: #fff;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue-glow), var(--brand-blue), var(--brand-blue-dark));
  border-radius: 9999px;
  box-shadow:
    0 0 0 1px rgba(30, 123, 255, 0.35),
    0 10px 30px -8px rgba(0, 87, 217, 0.65),
    0 0 24px rgba(30, 123, 255, 0.25);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(30, 123, 255, 0.5),
    0 14px 36px -8px rgba(0, 87, 217, 0.75),
    0 0 32px rgba(30, 123, 255, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brand-blue);
  background: #fff;
  border: 1.5px solid rgba(0, 87, 217, 0.4);
  border-radius: 9999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-outline:hover {
  background: rgba(0, 87, 217, 0.06);
  border-color: var(--brand-blue);
  box-shadow: 0 0 16px rgba(0, 87, 217, 0.15);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(197, 205, 216, 0.45);
  border-radius: 9999px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-chrome);
  box-shadow: 0 0 20px rgba(30, 123, 255, 0.25);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  background: linear-gradient(135deg, #2FE574, #25D366, #1EBE57);
  border-radius: 9999px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  transition: filter 0.2s, transform 0.2s;
}

.btn-whatsapp:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.fab-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: linear-gradient(145deg, #2FE574, #1EBE57);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
  animation: fab-pulse 2.8s ease-in-out infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.06);
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 36px rgba(37, 211, 102, 0.65); }
}

/* Paineis escuros no estilo da logo */
.panel-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 50% at 85% 15%, rgba(255, 106, 26, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 55% at 10% 80%, rgba(0, 87, 217, 0.45), transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(30, 123, 255, 0.12), transparent 70%),
    linear-gradient(160deg, #0B0D14 0%, #07080C 45%, #0A1228 100%);
}

.panel-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48' viewBox='0 0 56 48'%3E%3Cpath fill='none' stroke='%231E7BFF' stroke-opacity='0.18' stroke-width='1' d='M28 0l28 16v16L28 48 0 32V16z'/%3E%3C/svg%3E");
  background-size: 56px 48px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 15%, transparent 75%);
}

.panel-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(197, 205, 216, 0.06), transparent),
    radial-gradient(circle at 70% 20%, rgba(255, 106, 26, 0.15), transparent 35%);
}

.panel-dark .section-kicker {
  color: var(--brand-blue-glow);
  text-shadow: 0 0 18px rgba(30, 123, 255, 0.55);
}

.panel-dark .text-muted-light {
  color: rgba(197, 205, 216, 0.8);
}

.chrome-text {
  background: linear-gradient(180deg, #ffffff 0%, #C5CDD8 40%, #8B95A8 70%, #E8EEF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(30, 123, 255, 0.35));
}

.glow-blue {
  text-shadow: 0 0 24px rgba(30, 123, 255, 0.55);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero.panel-dark {
  border-bottom: 1px solid rgba(30, 123, 255, 0.2);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48' viewBox='0 0 56 48'%3E%3Cpath fill='none' stroke='%231E7BFF' stroke-opacity='0.22' stroke-width='1' d='M28 0l28 16v16L28 48 0 32V16z'/%3E%3C/svg%3E");
  background-size: 56px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.hero-title {
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.hero-title .accent-a {
  position: relative;
}

.hero-title .accent-a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.08em;
  width: 0.55em;
  height: 0.12em;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--brand-blue-glow), transparent);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(30, 123, 255, 0.8));
}

.hero-logo-frame {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--brand-dark);
  box-shadow:
    0 0 0 1px rgba(30, 123, 255, 0.35),
    0 0 40px rgba(0, 87, 217, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.45);
}

.hero-logo-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 123, 255, 0.7), rgba(197, 205, 216, 0.2), rgba(255, 106, 26, 0.45));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* Faixa de benefícios colorida */
.benefits-strip {
  background: linear-gradient(90deg, #0B0D14 0%, #0F1A35 50%, #0B0D14 100%);
  border-block: 1px solid rgba(30, 123, 255, 0.25);
  color: #fff;
}

.benefit-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(30, 123, 255, 0.25);
}

.benefit-icon--blue {
  background: linear-gradient(145deg, rgba(30, 123, 255, 0.35), rgba(0, 87, 217, 0.15));
  color: #7EB6FF;
  border: 1px solid rgba(30, 123, 255, 0.4);
}

.benefit-icon--green {
  background: linear-gradient(145deg, rgba(0, 151, 57, 0.35), rgba(0, 151, 57, 0.1));
  color: #4ADE80;
  border: 1px solid rgba(0, 151, 57, 0.4);
}

.benefit-icon--orange {
  background: linear-gradient(145deg, rgba(255, 106, 26, 0.35), rgba(255, 106, 26, 0.1));
  color: #FFB088;
  border: 1px solid rgba(255, 106, 26, 0.4);
}

/* Icones de bandeiras: Paraguai e Brasil */
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  min-width: 0;
}

.benefit-item__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-item__text p:first-child {
  font-size: 0.7rem;
  line-height: 1.25;
}

.benefit-item__text p:last-child {
  font-size: 0.6rem;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .benefit-item {
    gap: 0.75rem;
  }

  .benefit-item__text p:first-child {
    font-size: 0.875rem;
  }

  .benefit-item__text p:last-child {
    font-size: 0.75rem;
  }
}

.benefit-flags {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex-shrink: 0;
  max-width: 100%;
}

@media (max-width: 639px) {
  .flag-badge {
    width: 1.85rem;
    height: 1.25rem;
  }

  .flag-badge--pedido,
  .flag-badge--envio {
    width: 2.15rem;
  }

  .flag-link {
    width: 0.85rem;
  }

  .flag-link svg {
    width: 0.7rem;
    height: 0.55rem;
  }
}

.flag-badge {
  display: block;
  width: 2.55rem;
  height: 1.7rem;
  border-radius: 0.35rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.2),
    0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}

.flag-badge--py {
  box-shadow:
    0 0 0 1.5px rgba(213, 43, 30, 0.45),
    0 0 14px rgba(213, 43, 30, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.35);
}

.flag-badge--br {
  box-shadow:
    0 0 0 1.5px rgba(0, 151, 57, 0.5),
    0 0 14px rgba(0, 151, 57, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.35);
}

.flag-badge--pedido {
  width: 3.1rem;
  box-shadow:
    0 0 0 1.5px rgba(255, 106, 26, 0.5),
    0 0 14px rgba(255, 106, 26, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.35);
}

.flag-badge--envio {
  width: 3.1rem;
  box-shadow:
    0 0 0 1.5px rgba(0, 151, 57, 0.5),
    0 0 14px rgba(0, 151, 57, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.35);
}

.benefit-flags:hover .flag-badge {
  transform: translateY(-2px);
}

.flag-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  filter: drop-shadow(0 0 6px rgba(30, 123, 255, 0.7));
  animation: flag-pulse 2.2s ease-in-out infinite;
}

@keyframes flag-pulse {
  0%, 100% { opacity: 0.7; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(2px); }
}

.color-chips {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.color-chips span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 9999px;
  box-shadow: 0 0 8px currentColor;
}

/* Cards de produto */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.product-card:hover {
  border-color: rgba(0, 87, 217, 0.35);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(0, 87, 217, 0.12),
    0 0 28px rgba(0, 87, 217, 0.1);
  transform: translateY(-3px);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #0B0D14, #122044 50%, #1a1040);
  overflow: hidden;
}

.product-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 8, 12, 0.15));
  pointer-events: none;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.badge-promo {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.25rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), #E8450A);
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(255, 106, 26, 0.45);
}

.badge-estoque {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #64748b;
}

.badge-estoque::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.badge-estoque.is-low::before {
  background: #f59e0b;
  box-shadow: 0 0 6px #f59e0b;
}

.badge-estoque.is-out::before {
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
}

.price-old {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 0.85rem;
}

.price-now {
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 1.125rem;
}

.section-kicker {
  font-family: Orbitron, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.category-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  background: var(--brand-dark);
  box-shadow: 0 0 0 1px rgba(30, 123, 255, 0.2);
  transition: box-shadow 0.3s, transform 0.3s;
}

.category-tile:hover {
  box-shadow:
    0 0 0 1px rgba(30, 123, 255, 0.5),
    0 12px 32px rgba(0, 87, 217, 0.3);
  transform: translateY(-2px);
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.5s, opacity 0.3s;
}

.category-tile:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.category-tile__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(7, 8, 12, 0.92));
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(30, 123, 255, 0.4);
}

/* Slider de categorias */
.cat-slider {
  position: relative;
}

.cat-slider__track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.cat-slider__track::-webkit-scrollbar {
  display: none;
}

.cat-slider__slide {
  flex: 0 0 calc((100% - 0.85rem) / 2);
  scroll-snap-align: start;
  min-width: 0;
}

@media (min-width: 640px) {
  .cat-slider__track {
    gap: 1rem;
  }

  .cat-slider__slide {
    flex: 0 0 calc((100% - 2rem) / 3);
  }
}

@media (min-width: 1024px) {
  .cat-slider__slide {
    flex: 0 0 calc((100% - 4rem) / 5);
  }
}

.cat-slider__nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cat-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  color: #fff;
  background: #0B0D14;
  border: 1px solid rgba(30, 123, 255, 0.35);
  box-shadow: 0 0 14px rgba(0, 87, 217, 0.2);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, opacity 0.2s;
}

.cat-slider__btn:hover {
  background: #0057D9;
  border-color: #1E7BFF;
  transform: translateY(-1px);
}

.cat-slider__btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.cat-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.cat-slider__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: #cbd5e1;
  border: none;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}

.cat-slider__dot.is-active {
  background: #0057D9;
  transform: scale(1.25);
}

/* Page banner escuro */
.page-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(255, 106, 26, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 80% at 5% 50%, rgba(0, 87, 217, 0.4), transparent 55%),
    linear-gradient(120deg, #07080C, #0F1A35 60%, #0B0D14);
  border-bottom: 1px solid rgba(30, 123, 255, 0.25);
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48' viewBox='0 0 56 48'%3E%3Cpath fill='none' stroke='%231E7BFF' stroke-opacity='0.2' stroke-width='1' d='M28 0l28 16v16L28 48 0 32V16z'/%3E%3C/svg%3E");
  background-size: 56px 48px;
  pointer-events: none;
}

.page-banner .section-kicker {
  color: #7EB6FF;
}

.page-banner p {
  color: rgba(197, 205, 216, 0.85);
}

/* CTA escuro */
.cta-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(255, 106, 26, 0.25), transparent 50%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(0, 87, 217, 0.4), transparent 50%),
    #07080C;
  color: #fff;
  border-block: 1px solid rgba(30, 123, 255, 0.3);
}

.cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48' viewBox='0 0 56 48'%3E%3Cpath fill='none' stroke='%231E7BFF' stroke-opacity='0.18' stroke-width='1' d='M28 0l28 16v16L28 48 0 32V16z'/%3E%3C/svg%3E");
  background-size: 56px 48px;
  pointer-events: none;
}

/* Footer escuro */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 80% 0%, rgba(0, 87, 217, 0.3), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 100%, rgba(255, 106, 26, 0.12), transparent 50%),
    #07080C;
  color: rgba(232, 238, 246, 0.9);
  border-top: 1px solid rgba(30, 123, 255, 0.25);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48' viewBox='0 0 56 48'%3E%3Cpath fill='none' stroke='%231E7BFF' stroke-opacity='0.15' stroke-width='1' d='M28 0l28 16v16L28 48 0 32V16z'/%3E%3C/svg%3E");
  background-size: 56px 48px;
  pointer-events: none;
}

.site-footer .font-display {
  color: #7EB6FF;
}

/* Reveal: so esconde se o JS de animacao estiver ativo */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-anim .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.flash {
  padding: 0.85rem 1.1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.flash-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.flash-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.flash-info {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

@media (max-width: 900px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }
}

.admin-body {
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(0, 87, 217, 0.06), transparent 55%),
    #f1f5f9;
  color: #0f172a;
  min-height: 100vh;
}

.admin-sidebar {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #E8EEF6;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 40% at 20% 0%, rgba(30, 123, 255, 0.25), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 100%, rgba(255, 106, 26, 0.12), transparent 50%),
    linear-gradient(180deg, #0B0D14 0%, #07080C 100%);
  border-right: 1px solid rgba(30, 123, 255, 0.2);
}

.admin-sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48' viewBox='0 0 56 48'%3E%3Cpath fill='none' stroke='%231E7BFF' stroke-opacity='0.16' stroke-width='1' d='M28 0l28 16v16L28 48 0 32V16z'/%3E%3C/svg%3E");
  background-size: 56px 48px;
  pointer-events: none;
}

.admin-brand {
  display: block;
  margin-bottom: 1.75rem;
}

.admin-brand__label {
  margin-top: 0.75rem;
  font-family: Orbitron, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7EB6FF;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.admin-nav__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(197, 205, 216, 0.85);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.admin-nav__link:hover {
  background: rgba(30, 123, 255, 0.12);
  color: #fff;
}

.admin-nav__link.is-active {
  background: rgba(30, 123, 255, 0.2);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(30, 123, 255, 0.35);
}

.admin-nav__link--danger {
  color: #fca5a5;
}

.admin-nav__link--danger:hover {
  background: rgba(213, 43, 30, 0.15);
  color: #fecaca;
}

.admin-nav__icon {
  width: 1.1rem;
  text-align: center;
  opacity: 0.7;
  font-size: 0.8rem;
}

.admin-nav__divider {
  height: 1px;
  margin: 0.75rem 0;
  background: rgba(30, 123, 255, 0.2);
}

.admin-sidebar__footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(30, 123, 255, 0.15);
}

.admin-sidebar__tagline {
  margin-top: 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(197, 205, 216, 0.45);
}

.admin-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(11, 13, 20, 0.97), rgba(7, 8, 12, 0.94));
  color: #E8EEF6;
  border-bottom: 1px solid rgba(30, 123, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .admin-topbar {
    padding: 1.1rem 2rem;
  }
}

.admin-topbar .section-kicker {
  color: #7EB6FF;
}

.admin-topbar__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.admin-topbar__user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.admin-topbar__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, #1E7BFF, #003FA3);
  box-shadow: 0 0 14px rgba(30, 123, 255, 0.35);
}

.admin-topbar__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.admin-topbar__role {
  font-size: 0.7rem;
  color: rgba(197, 205, 216, 0.6);
}

.admin-content {
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .admin-content {
    padding: 2rem;
  }
}

.admin-stat {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  border-top: 3px solid #0057D9;
}

.admin-stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.35rem;
  font-family: Orbitron, sans-serif;
}

.admin-stat__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
}

.admin-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.admin-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.admin-panel__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.admin-table th,
.admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.875rem;
}

.admin-table th {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  background: #f8fafc;
  font-family: Orbitron, sans-serif;
}

.admin-table tbody tr:hover {
  background: rgba(0, 87, 217, 0.03);
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: #f1f5f9;
  color: #64748b;
}

.admin-badge--ok {
  background: #ecfdf5;
  color: #047857;
}

.admin-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #334155;
}

.form-input {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 217, 0.15);
}

.form-input--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(30, 123, 255, 0.3);
  color: #fff;
}

.form-input--dark::placeholder {
  color: rgba(197, 205, 216, 0.45);
}

.form-input--dark:focus {
  background: rgba(30, 123, 255, 0.1);
  border-color: rgba(30, 123, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(30, 123, 255, 0.2);
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 85% 15%, rgba(255, 106, 26, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 55% at 10% 80%, rgba(0, 87, 217, 0.4), transparent 55%),
    linear-gradient(160deg, #0B0D14 0%, #07080C 45%, #0A1228 100%);
}

.admin-login__glow {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='48' viewBox='0 0 56 48'%3E%3Cpath fill='none' stroke='%231E7BFF' stroke-opacity='0.18' stroke-width='1' d='M28 0l28 16v16L28 48 0 32V16z'/%3E%3C/svg%3E");
  background-size: 56px 48px;
  pointer-events: none;
}

.admin-login__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26rem;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(11, 13, 20, 0.88);
  border: 1px solid rgba(30, 123, 255, 0.3);
  box-shadow:
    0 0 0 1px rgba(30, 123, 255, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(0, 87, 217, 0.15);
  backdrop-filter: blur(12px);
}

.admin-login .admin-label {
  color: rgba(197, 205, 216, 0.9);
}

@media (min-width: 640px) {
  .admin-login__card {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .js-anim .reveal {
    opacity: 1;
    transform: none;
  }
}
