﻿/* =========================================================
   ZIVA ART
   STYLE.CSS
   Identidade: Preto + Vermelho
   ========================================================= */


/* =========================================================
   01. VARIÁVEIS GERAIS
   ========================================================= */

:root {
  --bg: #050505;  --panel: #0b0b0b;
  --line: #232323;

  --text: #f4f4f4;
  --muted: #8c8c8c;

  --red: #ff1722;
  --red2: #d90812;

  --red-glow: rgba(255, 23, 34, 0.35);
  --red-soft: rgba(255, 23, 34, 0.12);
}

/* --- CENTRALIZAÇÃO TOTAL DO CONTEÚDO --- */

/* 1. Centraliza o topo (Header) */
.header {
    max-width: 1600px !important;
    margin: 0 auto !important;
    width: 95% !important;
    float: none !important;
}

/* 2. Centraliza todas as seções do meio (Hero, Stats, Catalogo, Categorias, CTA) */
.hero, 
.stats-section, 
section.section, 
.feature, 
.cta {
    max-width: 1600px !important;
    margin: 0 auto !important;
    width: 95% !important;
    float: none !important;
}

/* 3. Centraliza o rodapé (Footer) */
footer {
    max-width: 1600px !important;
    margin: 0 auto !important;
    width: 95% !important;
}

/* 4. EXCEÇÃO: O Ticker (texto correndo) continua ocupando a tela toda */
.ticker {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
}

/* 5. Garante que o fundo do site continue preto nas laterais */
body {
    background-color: #050505 !important;
    overflow-x: hidden; /* Evita que o site "dance" para os lados */
}


/* =========================================================
   02. RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

/* --- ESTILO DA BARRA DE FILTRO ZIVA --- */
.catalog-toolbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background-color: var(--panel) !important; /* Usa seu cinza escuro */
  padding: 12px 20px !important;
  border-radius: 8px !important;
  margin: 30px 0 !important;
  border: 1px solid var(--line) !important;
}

/* ===== DROPDOWN CUSTOMIZADO DE ORDENAÇÃO (SEM APARÊNCIA WINDOWS) ===== */
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.catalog-sort label {
  color: #777;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.custom-sort-dropdown {
  position: relative;
}

.sort-selected {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  color: #ddd;
  padding: 9px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  min-width: 155px;
  justify-content: space-between;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.sort-selected:hover,
.sort-selected.open {
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 0 14px rgba(255,23,34,0.15);
}

.sort-arrow {
  font-size: 10px;
  color: #555;
  transition: transform 0.25s ease, color 0.2s;
}

.sort-selected.open .sort-arrow {
  transform: rotate(180deg);
  color: var(--red);
}

.sort-options {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 170px;
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1001;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(255,23,34,0.1);
  animation: sortFadeIn 0.18s ease-out;
}

.sort-options.open {
  display: block;
}

@keyframes sortFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sort-opt {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #181818;
  color: #bbb;
  padding: 11px 16px;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.sort-opt:last-child { border-bottom: none; }

.sort-opt:hover {
  background: rgba(255,23,34,0.12);
  color: #fff;
  padding-left: 20px;
}

.sort-opt.active {
  background: var(--red);
  color: #fff;
}

.catalog-left {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  position: relative;
}

.catalog-filter-btn {
  background-color: var(--red) !important; /* Usa seu vermelho */
  color: white !important;
  border: none !important;
  padding: 10px 25px !important;
  font-weight: 800 !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-family: 'Inter', sans-serif;
}

/* MENU DE CATEGORIAS (QUE VAI ABRIR AO CLICAR) */
.filter-menu {
  display: none;
  position: absolute;
  top: 55px;
  left: 0;
  background: #0f0f0f;
  border: 1px solid #292929;
  padding: 10px;
  z-index: 1000;
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.8), 0 0 20px rgba(255,23,34,0.15);
}

.filter-menu.open,
.filter-menu.active {
  display: flex !important;
  flex-direction: column;
  gap: 6px;
  animation: filterFadeIn 0.2s ease-out;
}

@keyframes filterFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.filter-menu button,
.filter-menu .filter-option {
  background: none;
  border: none;
  color: #ccc;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.filter-menu button:hover,
.filter-menu .filter-option:hover {
  background: rgba(255, 23, 34, 0.15);
  color: var(--red);
  padding-left: 16px;
}

.filter-menu button.active,
.filter-menu .filter-option.active {
  background: var(--red);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}


/* =========================================================
   03. BARRA SUPERIOR
   ========================================================= */

.announcement {
  height: 30px;
  background: #0e0e0e;
  border-bottom: 1px solid #191919;

  color: #aaa;
  text-align: center;

  font-size: 10px;
  letter-spacing: 2px;

  padding: 8px;
}

.announcement span {
  color: var(--red);
  padding: 0 12px;
}


/* =========================================================
   04. HEADER / MENU
   ========================================================= */

.header {
  height: 78px;

  border-bottom: 1px solid var(--line);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 5vw;

  position: sticky;
  top: 0;

  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(14px);

  z-index: 20;
}

.brand img {
  width: 130px;
  height: auto;
  display: block;
}


/* =========================================================
   05. NAVEGAÇÃO
   ========================================================= */

.nav {
  display: flex;
  gap: 32px;

  color: #aaa;

  font-size: 12px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav a {
  position: relative;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.nav a:hover {
  color: var(--red);
  transform: translateY(-2px);
}


/* Linha vermelha do menu */

.nav a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -9px;

  width: 0;
  height: 2px;

  background: var(--red);

  box-shadow:
    0 0 6px rgba(255, 23, 34, 0.7),
    0 0 14px rgba(255, 23, 34, 0.35);

  transform: translateX(-50%);

  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}


/* =========================================================
   06. AÇÕES DO HEADER
   ========================================================= */

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-btn,
.cart-btn {
  border: 1px solid var(--line);
  background: #0a0a0a;
  color: #ddd;

  height: 38px;
  padding: 0 13px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.icon-btn {
  width: 40px;
  font-size: 22px;
}

.icon-btn:hover,
.cart-btn:hover {
  color: #fff;
  border-color: var(--red);

  transform: translateY(-3px);

  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.4),
    0 0 14px rgba(255, 23, 34, 0.15);
}

.cart-btn {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-btn b {
  background: var(--red);

  padding: 3px 6px;
  margin-left: 7px;

  color: #fff;
}


/* =========================================================
   07. HERO BANNER PRINCIPAL OFICIAL (FULL WIDTH & INTEGRADO)
   ========================================================= */

.hero-banner-section {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #050505;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-banner-wrap {
  width: 100%;
  max-width: 100%;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-banner-wrap:hover .hero-banner-img {
  transform: scale(1.008);
}

.hero {
  min-height: 690px;

  padding: 70px 6vw 65px;

  display: grid;
  grid-template-columns: 1fr 0.9fr;

  gap: 30px;

  overflow: hidden;
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 3px;

  color: #777;
  font-weight: 700;
}

.eyebrow span {
  display: inline-block;

  width: 7px;
  height: 7px;

  background: var(--red);

  margin-right: 8px;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(65px, 9vw, 150px);
  line-height: 0.82;

  letter-spacing: -7px;

  margin: 24px 0 28px;

  font-weight: 700;
}

.hero h1 em,
.feature em,
.cta em {
  color: var(--red);
  font-style: normal;
}

.hero p {
  max-width: 510px;

  color: #9a9a9a;

  font-size: 15px;
  line-height: 1.7;
}


/* =========================================================
   08. BOTÕES
   ========================================================= */

.hero-actions {
  display: flex;
  gap: 10px;

  margin: 28px 0 45px;
}

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  min-height: 48px;

  padding: 0 22px;

  border: 1px solid #2a2a2a;

  font-size: 11px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 1px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
    box-shadow:
        0 10px 28px rgba(255, 23, 34, 0.22),
        0 0 20px rgba(255, 23, 34, 0.12);
}

.btn.primary {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.btn.primary:hover {
  background: #ff3039;

  box-shadow:
    0 8px 25px rgba(255, 23, 34, 0.25),
    0 0 20px rgba(255, 23, 34, 0.18);
}

.btn.ghost:hover {
  border-color: var(--red);
  color: var(--red);

  box-shadow:
    0 0 15px rgba(255, 23, 34, 0.1);
}


/* =========================================================
   09. ESTATÍSTICAS
   ========================================================= */

.stats {
  display: flex;
  gap: 42px;
}

.stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stats strong {
  font-size: 20px;
}

.stats small {
  font-size: 9px;

  color: #666;

  text-transform: uppercase;
  letter-spacing: 1.5px;
}


/* =========================================================
   10. ARTE DO HERO
   ========================================================= */

.hero-art {
  position: relative;

  min-height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.grid {
  position: absolute;
  inset: 5%;

  background-image:
    linear-gradient(#181818 1px, transparent 1px),
    linear-gradient(90deg, #181818 1px, transparent 1px);

  background-size: 38px 38px;

  mask-image:
    radial-gradient(circle, #000 20%, transparent 72%);

  opacity: 0.6;
}

.orb {
  position: absolute;

  width: 430px;
  height: 430px;

  border: 1px solid #292929;

  border-radius: 50%;

  box-shadow:
    0 0 90px rgba(255, 23, 34, 0.08),
    inset 0 0 80px rgba(255, 23, 34, 0.03);
}

.poster {
  width: 300px;
  height: 390px;

  background: #101010;

  border: 1px solid #303030;

  position: relative;

  transform: rotate(5deg);

  padding: 25px;

  box-shadow: 25px 35px 80px #000;
}

.poster:before {
  content: "";

  position: absolute;
  inset: 12px;

  border: 1px solid #222;
}

.poster-line {
  font-size: 9px;
  letter-spacing: 3px;
  color: #777;
}

.poster-word {
  font-family: "Space Grotesk";

  font-size: 53px;
  line-height: 0.8;

  font-weight: 700;

  margin-top: 70px;

  letter-spacing: -3px;
}

.poster-bottom {
  position: absolute;

  bottom: 25px;

  font-size: 7px;
  letter-spacing: 2px;

  color: #777;
}

.poster:after {
  content: "Z";

  position: absolute;

  right: -50px;
  bottom: -55px;

  color: transparent;

  -webkit-text-stroke: 1px #222;

  font-size: 230px;

  font-weight: 900;

  z-index: -1;
}

.floating-card {
  position: absolute;

  background: #111;

  border: 1px solid #333;

  padding: 10px 14px;

  font-size: 8px;
  letter-spacing: 2px;

  color: #888;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.floating-card.top {
  top: 25%;
  right: 4%;
}

.floating-card:hover {
  transform: translateY(-5px);

  border-color: var(--red);

  box-shadow:
    0 0 18px rgba(255, 23, 34, 0.15);
}


/* =========================================================
   11. TICKER
   ========================================================= */

.ticker {
  display: flex;

  gap: 50px;

  white-space: nowrap;
  overflow: hidden;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  padding: 15px 0;

  color: #666;

  font-size: 10px;
  letter-spacing: 3px;
}

.ticker div:before {
  content: "✦";

  color: var(--red);

  margin-right: 45px;
}


/* =========================================================
   12. SEÇÕES
   ========================================================= */

.section {
  padding: 100px 6vw;
}

.section-head {
  display: flex;

  justify-content: space-between;
  align-items: end;

  margin-bottom: 35px;
}

.section h2,
.feature h2,
.cta h2 {
  font-family: "Space Grotesk";

  font-size: clamp(42px, 5vw, 72px);

  line-height: 0.9;

  margin: 12px 0 0;

  letter-spacing: -3px;
}

.text-link {
  font-size: 10px;

  text-transform: uppercase;
  letter-spacing: 2px;

  color: #999;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.text-link:hover {
  color: var(--red);
  transform: translateX(4px);
}


/* =========================================================
   13. PRODUTOS / CARDS
   ========================================================= */

.products {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 15px;
}

.product {
  background: #0a0a0a;

  border: 1px solid #1c1c1c;

  position: relative;

  overflow: hidden;

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;

  animation: zivaProductIn 0.6s ease both;
}


/* NEON + LEVITAÇÃO */

.product:hover {
  transform: translateY(-9px);

  border-color: var(--red);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(255, 23, 34, 0.28),
    0 0 45px rgba(255, 23, 34, 0.12);
}


/* Linha luminosa superior */

.product::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background: var(--red);

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.35s ease;

  z-index: 5;
}

.product:hover::before {
  transform: scaleX(1);
}


/* =========================================================
   14. IMAGEM DOS PRODUTOS
   ========================================================= */

.product-img {
  height: 330px;
  background: #0d0d0d;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.product-img:after {
  content: "";
  display: none;
}


/* Efeito de luz passando */

.product-img::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 23, 34, 0.08),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;

  pointer-events: none;
}

.product:hover .product-img::before {
  left: 150%;
}


/* =========================================================
   15. TAG DOS PRODUTOS
   ========================================================= */

.tag {
  position: absolute;

  top: 12px;
  left: 12px;

  background: var(--red);

  font-size: 8px;

  padding: 5px 8px;

  letter-spacing: 1px;

  z-index: 3;

  box-shadow:
    0 0 12px rgba(255, 23, 34, 0.18);
}


/* =========================================================
   16. INFORMAÇÕES DO PRODUTO
   ========================================================= */

.product-info {
  padding: 17px;
}

.product-info small {
  font-size: 8px;

  color: #777;

  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.product-info h3 {
  font-size: 13px;

  margin: 8px 0 12px;

  transition: color 0.25s ease;
}

.product:hover .product-info h3 {
  color: #fff;
}

.price {
  display: flex;

  gap: 8px;

  align-items: center;
}

.price strong {
  font-size: 15px;
}

.price del {
  font-size: 10px;
  color: #555;
}


/* =========================================================
   17. BOTÃO DOS PRODUTOS
   ========================================================= */

/* BOTÕES DO CARD DE PRODUTO */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 14px;
}

.btn-card-buy {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  height: 38px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(255, 23, 34, 0.25);
}

.btn-card-buy:hover {
  background: #ff3039;
  border-color: #ff3039;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 23, 34, 0.45);
}

.btn-card-cart {
  width: 100%;
  background: #101010;
  color: #aaa;
  border: 1px solid #262626;
  height: 34px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-card-cart:hover {
  background: #181818;
  border-color: var(--red);
  color: #fff;
}

.add {
  display: none;
}

/* BOTÃO CONTINUAR COMPRANDO NO CARRINHO */
.btn-continue-shopping {
  width: 100%;
  background: transparent;
  color: #888;
  border: 1px solid #222;
  height: 42px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.btn-continue-shopping:hover {
  background: #141414;
  border-color: #444;
  color: #fff;
}


/* =========================================================
   18. CATEGORIAS
   ========================================================= */

.categories {
  background: #080808;
}

.category-grid {
  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr;

  grid-template-rows: 250px 250px;

  gap: 12px;
}

.cat {
  border: 1px solid #222;

  background:
    linear-gradient(
      135deg,
      #141414,
      #080808
    );

  padding: 22px;

  position: relative;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.cat:after {
  content: "Z";

  position: absolute;

  right: -25px;
  bottom: -80px;

  color: transparent;

  -webkit-text-stroke: 1px #1d1d1d;

  font-size: 260px;

  font-weight: 900;

  transition:
    transform 0.5s ease,
    -webkit-text-stroke-color 0.35s ease;
}

.cat:hover {
  transform: translateY(-6px);

  border-color: var(--red);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 22px rgba(255, 23, 34, 0.12);
}

.cat:hover:after {
  transform: scale(1.08);

  -webkit-text-stroke-color: rgba(255, 23, 34, 0.18);
}

.cat-big {
  grid-row: span 2;

  background:
    linear-gradient(
      145deg,
      #181818,
      #090909
    );
}

.cat span {
  font-size: 9px;
  color: #666;
}

.cat h3 {
  font-family: "Space Grotesk";

  font-size: 32px;

  line-height: 0.9;

  letter-spacing: -1px;

  position: relative;

  z-index: 2;
}

.cat b {
  position: absolute;

  bottom: 20px;
  left: 22px;

  font-size: 9px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  z-index: 2;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.cat:hover b {
  color: var(--red);
  transform: translateX(5px);
}


/* =========================================================
   19. COMO FUNCIONA
   ========================================================= */

.feature {
  padding: 110px 6vw;

  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 80px;

  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 1px;
}

.steps > div {
  border-top: 1px solid #222;

  padding: 25px 0;

  display: grid;

  grid-template-columns: 55px 1fr;

  column-gap: 20px;
}

.steps b {
  color: var(--red);

  font-size: 10px;
}

.steps h3 {
  margin: 0 0 7px;

  font-size: 16px;
}

.steps p {
  grid-column: 2;

  margin: 0;

  color: #777;

  font-size: 12px;

  line-height: 1.6;
}


/* =========================================================
   20. CTA
   ========================================================= */

.cta {
  text-align: center;

  padding: 130px 20px;

  position: relative;

  overflow: hidden;
}

.cta-mark {
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -45%);

  font-size: 400px;

  font-weight: 900;

  color: transparent;

  -webkit-text-stroke: 1px #151515;

  z-index: -1;
}

.cta p {
  color: #777;

  max-width: 500px;

  margin: 25px auto;
}

.cta .btn {
  margin-top: 15px;
}


<!-- =====================================================
       RODAPÉ PREMIUM (ZIVA ART)
       ===================================================== -->
  <footer class="footer-ziva">
    <div class="footer-container">
      
      <!-- Coluna 1: Logo e Sobre -->
      <div class="footer-col">
        <img src="assets/ziva-logo.png" alt="ZIVA ART" class="footer-logo">
        <p>Artes digitais premium para quem busca exclusividade e qualidade em cada detalhe.</p>
        <div class="social-links">
          <a href="#"><i class="fa-brands fa-instagram"></i></a>
          <a href="#"><i class="fa-brands fa-whatsapp"></i></a>
          <a href="#"><i class="fa-brands fa-behance"></i></a>
        </div>
      </div>

      <!-- Coluna 2: Navegação -->
      <div class="footer-col">
        <h4>NAVEGAÇÃO</h4>
        <ul>
          <li><a href="#inicio">Início</a></li>
          <li><a href="#catalogo">Catálogo</a></li>
          <li><a href="#como-comprar-secao">Como Comprar</a></li>
          <li><a href="#categorias">Categorias</a></li>
        </ul>
      </div>

      <!-- Coluna 3: Suporte -->
      <div class="footer-col">
        <h4>SUPORTE</h4>
        <ul>
          <li><a href="#">Minha Conta</a></li>
          <li><a href="#">Meus Downloads</a></li>
          <li><a href="#">Termos de Uso</a></li>
          <li><a href="#">Contato</a></li>
        </ul>
      </div>

      <!-- Coluna 4: Pagamento -->
      <div class="footer-col">
        <h4>PAGAMENTO SEGURO</h4>
        <p>Aceitamos as principais bandeiras:</p>
        <div class="payment-icons">
          <i class="fa-brands fa-pix"></i>
          <i class="fa-solid fa-barcode"></i>
          <i class="fa-brands fa-cc-visa"></i>
          <i class="fa-brands fa-cc-mastercard"></i>
        </div>
      </div>

    </div>

    <div class="footer-bottom">
      <p>&copy; 2026 ZIVA ART. Todos os direitos reservados. Desenvolvido por Haniel.</p>
    </div>
  </footer>

/* =========================================================
   22. BUSCA
   ========================================================= */

.search-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.8);

  backdrop-filter: blur(10px);

  display: none;

  align-items: flex-start;
  justify-content: center;

  padding-top: 120px;

  z-index: 50;
}

.search-modal.open {
  display: flex;
}

.search-box {
  width: min(700px, 90vw);

  background: #0d0d0d;

  border: 1px solid #333;

  padding: 25px;

  position: relative;
}

.search-box > button {
  position: absolute;

  right: 15px;
  top: 10px;

  background: none;

  border: 0;

  color: #aaa;

  font-size: 25px;

  cursor: pointer;
}

.search-box span {
  font-size: 9px;

  letter-spacing: 2px;

  color: #777;
}

.search-box input {
  width: 100%;

  background: #080808;

  border: 1px solid #2b2b2b;

  color: white;

  padding: 16px;

  margin-top: 12px;

  outline: none;
}

.search-box input:focus {
  border-color: var(--red);

  box-shadow:
    0 0 15px rgba(255, 23, 34, 0.12);
}


/* =========================================================
   23. CARRINHO
   IMPORTANTE: NÃO ALTERADO
   ========================================================= */

.cart {
  position: fixed;

  right: -430px;
  top: 0;

  width: min(430px, 100vw);

  height: 100vh;

  background: #0b0b0b;

  border-left: 1px solid #333;

  z-index: 60;

  display: flex;
  flex-direction: column;

  transition: 0.3s;
}

.cart.open {
  right: 0;
}

.cart-head {
  padding: 25px;

  border-bottom: 1px solid #222;

  display: flex;

  justify-content: space-between;
}

.cart-head h3 {
  font-size: 11px;

  letter-spacing: 2px;
}

.cart-head button {
  background: none;

  border: 0;

  color: #aaa;

  font-size: 25px;

  cursor: pointer;
}

.cart-items {
  padding: 20px;

  flex: 1;

  overflow: auto;
}

.empty {
  text-align: center;

  color: #555;

  margin-top: 100px;

  font-size: 12px;
}

.cart-item {
  display: flex;

  gap: 15px;

  padding: 15px 0;

  border-bottom: 1px solid #1d1d1d;
}

.cart-item .mini {
  width: 70px;
  height: 70px;

  background: #151515;
}

.cart-item h4 {
  font-size: 11px;

  margin: 4px 0;
}

.cart-item span {
  font-size: 10px;

  color: #888;
}

.cart-foot {
  padding: 22px;

  border-top: 1px solid #222;
}

.cart-foot > div {
  display: flex;

  justify-content: space-between;

  margin-bottom: 15px;
}

.cart-foot span {
  color: #777;

  font-size: 11px;
}

.cart-foot strong {
  font-size: 16px;
}

.cart-foot .btn {
  width: 100%;
}


/* =========================================================
   24. OVERLAY
   ========================================================= */

.overlay {
  display: none;

  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.65);

  z-index: 55;
}

.overlay.open {
  display: block;
}


/* =========================================================
   25. ANIMAÇÃO DOS CARDS
   ========================================================= */

@keyframes zivaProductIn {

  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =========================================================
   26. RESPONSIVIDADE
   ========================================================= */

@media (max-width: 900px) {

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;

    padding-top: 50px;
  }

  .hero-art {
    min-height: 420px;
  }

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

  .category-grid {
    grid-template-columns: 1fr 1fr;

    grid-template-rows: 220px 220px;
  }

  .cat-big {
    grid-row: auto;
    grid-column: span 2;
  }

  .feature {
    grid-template-columns: 1fr;

    gap: 45px;
  }

}


@media (max-width: 600px) {

  .header {
    padding: 0 18px;
  }

  .brand img {
    width: 105px;
  }

  .hero {
    padding: 55px 22px;
  }

  .hero h1 {
    font-size: 70px;

    letter-spacing: -5px;
  }

  .hero-art {
    min-height: 360px;
  }

  .poster {
    width: 235px;
    height: 305px;
  }

  .poster-word {
    font-size: 42px;
  }

  .stats {
    gap: 20px;
  }

  .section {
    padding: 75px 22px;
  }

  .products {
    grid-template-columns: 1fr 1fr;

    gap: 8px;
  }

  .product-img {
    height: 190px;
  }

  .product-info {
    padding: 12px;
  }

  .category-grid {
    grid-template-columns: 1fr;

    grid-template-rows: auto;
  }

  .cat,
  .cat-big {
    grid-column: auto;

    min-height: 190px;
  }

  .feature {
    padding: 75px 22px;
  }

  .cta {
    padding: 100px 22px;
  }

  footer {
    grid-template-columns: 1fr;

    padding: 35px 22px;
  }

  .footer-links {
    justify-content: flex-start;

    flex-wrap: wrap;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

}


/* =========================================================
   27. ACESSIBILIDADE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
  }

}
/* =========================================================
   28. CANTOS ARREDONDADOS - ZIVA ART
   ========================================================= */

/* Cards das artes */
.product {
  border-radius: 12px;
  overflow: hidden;
}

/* Imagens dos produtos */
.product-img {
  border-radius: 12px 12px 0 0;
}

/* Botões */
.btn,
.add,
.icon-btn,
.cart-btn {
  border-radius: 8px;
}

/* Campo de pesquisa */
.search-box,
.search-box input {
  border-radius: 10px;
}

/* Categorias */
.cat {
  border-radius: 12px;
  overflow: hidden;
}

/* Poster principal */
.poster {
  border-radius: 10px;
}

/* Cards flutuantes */
.floating-card {
  border-radius: 7px;
}

/* Ticker */
.ticker {
  border-radius: 0;
}

/* Carrinho */
.cart {
  border-radius: 14px 0 0 14px;
}

/* Itens e áreas internas */
.cart-item .mini {
  border-radius: 8px;
}

/* Botões do carrinho */
.cart-foot .btn {
  border-radius: 8px;
}

/* Modal de busca */
.search-modal {
  border-radius: 12px;
}

/* Pequenos elementos */
.tag {
  border-radius: 5px;
}

/* =========================================================
   29. HOVER MAIS ELEGANTE
   ========================================================= */

.product,
.cat,
.btn,
.add,
.icon-btn,
.cart-btn,
.floating-card {
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

/* =========================================================
   30. NEON DOS CARDS
   ========================================================= */

.product:hover {
  transform: translateY(-9px);
  border-color: var(--red);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(255, 23, 34, 0.28),
    0 0 45px rgba(255, 23, 34, 0.12);
}

.cat:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(255, 23, 34, 0.14);
}

/* =========================================================
   31. BOTÕES
   ========================================================= */

.btn {
    position: relative;
    overflow: hidden;

    translate: var(--mouse-x, 0px) var(--mouse-y, 0px);

    transition:
        translate 0.18s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;

    will-change: translate;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.45s ease;
  pointer-events: none;
}

.btn:hover::before {
  left: 140%;
}

.btn:hover {
  box-shadow:
    0 9px 24px rgba(255, 23, 34, 0.20),
    0 0 18px rgba(255, 23, 34, 0.10);
}

.btn.primary:hover {
  background: #ff3039;
  border-color: #ff3039;
  box-shadow:
    0 9px 26px rgba(255, 23, 34, 0.30),
    0 0 22px rgba(255, 23, 34, 0.16);
}

.btn.ghost:hover {
  color: #fff;
  border-color: var(--red);
  box-shadow:
    0 8px 22px rgba(255, 23, 34, 0.16),
    inset 0 0 15px rgba(255, 23, 34, 0.04);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* =========================================================
   32. ANIMAÇÃO DE ENTRADA
   ========================================================= */

/* Esconde o conteúdo somente enquanto o loader está ativo. */
body:not(.ziva-loaded) .announcement,
body:not(.ziva-loaded) .header,
body:not(.ziva-loaded) .hero,
body:not(.ziva-loaded) .ticker,
body:not(.ziva-loaded) .section,
body:not(.ziva-loaded) .feature,
body:not(.ziva-loaded) .cta,
body:not(.ziva-loaded) footer {
  opacity: 0;
}

/* Entrada rápida, mas perceptível. */
body.ziva-loaded .announcement {
  animation: zivaFadeDown 0.30s ease-out 0.02s both;
}

body.ziva-loaded .header {
  animation: zivaFadeDown 0.38s ease-out 0.06s both;
}

body.ziva-loaded .hero-copy .eyebrow {
  animation: zivaFadeUp 0.32s ease-out 0.10s both;
}

body.ziva-loaded .hero-copy h1 {
  animation: zivaFadeUp 0.38s ease-out 0.15s both;
}

body.ziva-loaded .hero-copy > p {
  animation: zivaFadeUp 0.32s ease-out 0.22s both;
}

body.ziva-loaded .hero-actions {
  animation: zivaFadeUp 0.32s ease-out 0.28s both;
}

body.ziva-loaded .stats {
  animation: zivaFadeUp 0.32s ease-out 0.34s both;
}

body.ziva-loaded .hero-art {
  animation: zivaFadeLeft 0.45s ease-out 0.18s both;
}

body.ziva-loaded .ticker {
  animation: zivaFadeUp 0.30s ease-out 0.40s both;
}

/* Cards entram em sequência. */
body.ziva-loaded .product {
  animation: zivaProductIn 0.45s ease-out both;
}

body.ziva-loaded .product:nth-child(1) { animation-delay: 0.42s; }
body.ziva-loaded .product:nth-child(2) { animation-delay: 0.47s; }
body.ziva-loaded .product:nth-child(3) { animation-delay: 0.52s; }
body.ziva-loaded .product:nth-child(4) { animation-delay: 0.57s; }
body.ziva-loaded .product:nth-child(5) { animation-delay: 0.62s; }
body.ziva-loaded .product:nth-child(6) { animation-delay: 0.67s; }
body.ziva-loaded .product:nth-child(7) { animation-delay: 0.72s; }
body.ziva-loaded .product:nth-child(8) { animation-delay: 0.77s; }

@keyframes zivaProductIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zivaFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zivaFadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zivaFadeLeft {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================================================
   33. LOADER
   ========================================================= */

.ziva-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #050505;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.40s ease,
    visibility 0.40s ease;
}

.ziva-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  animation: zivaLoaderLogo 0.40s ease-out both;
}

.loader-logo span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 54px;
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -4px;
}

.loader-logo small {
  margin-top: 8px;
  color: #ff1722;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 8px;
  transform: translateX(4px);
}

.loader-line {
  width: 100px;
  height: 2px;
  margin-top: 28px;
  background: #ff1722;
  transform-origin: left;
  animation: zivaLoaderLine 0.50s ease-out 0.08s both;
}

@keyframes zivaLoaderLogo {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zivaLoaderLine {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* =========================================================
   34. ACESSIBILIDADE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   35. MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .btn:hover {
    transform: translateY(-2px);
  }
}

/* =========================================================
   36. CORREÇÃO FINAL - HERO + ESTATÍSTICAS
   ========================================================= */

.hero {
  min-height: 690px !important;
  height: auto !important;
  padding: 70px 6vw 65px !important;
  display: grid !important;
  grid-template-columns: 1fr 0.9fr !important;
  gap: 30px !important;
  position: relative !important;
  overflow: hidden !important;
}

.hero-copy {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.hero-actions {
  position: relative !important;
  z-index: 5 !important;
}

.hero-art {
  position: relative !important;
  z-index: 1 !important;
  min-height: 500px !important;
}

.ticker {
  position: relative !important;
  z-index: 2 !important;
}


/* ESTATÍSTICAS */

.stats-section {
  width: 100%;
  padding: 60px 6vw;
  background: #050505;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.stats-section .stats {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-section .stat-item {
  position: relative;
  min-height: 120px;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stats-section .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
  height: calc(100% - 20px);
  background: #252525;
}

.stats-section .stat-item strong {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(48px, 4.5vw, 76px) !important;
  font-weight: 800;
  line-height: 1 !important;
  letter-spacing: -3px;
  color: #f4f4f4;
  white-space: nowrap;
}

.stats-section .stat-item small {
  display: block !important;
  margin-top: 14px !important;
  font-family: "Inter", sans-serif;
  font-size: 9px !important;
  font-weight: 700;
  line-height: 1 !important;
  letter-spacing: 3px;
  color: #686868;
  text-transform: uppercase;
  white-space: nowrap;
}

.stats-section + .section {
  padding-top: 80px;
}


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

@media (max-width: 900px) {

  .hero {
    grid-template-columns: 1fr !important;
  }

  .stats-section {
    padding: 50px 25px;
  }

  .stats-section .stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .stats-section .stat-item {
    min-height: 100px;
    padding: 10px 15px;
  }

  .stats-section .stat-item:nth-child(2)::after,
  .stats-section .stat-item:nth-child(4)::after {
    display: none;
  }

  .stats-section .stat-item strong {
    font-size: 48px !important;
  }
}

@media (max-width: 600px) {

  .stats-section {
    padding: 40px 20px;
  }

  .stats-section .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-section .stat-item strong {
    font-size: 40px !important;
    letter-spacing: -2px;
  }

  .stats-section .stat-item small {
    font-size: 8px !important;
    letter-spacing: 2px;
  }
}
/* =========================================================
   CORREÇÃO DEFINITIVA DO HERO
   ========================================================= */

.hero {
    min-height: 690px !important;
    height: 690px !important;

    box-sizing: border-box !important;

    position: relative !important;

    display: grid !important;
    grid-template-columns: 1fr 0.9fr !important;

    padding: 70px 6vw 65px !important;

    overflow: hidden !important;
}


.hero-copy {
    position: relative !important;

    z-index: 5 !important;

    min-height: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    justify-content: center !important;

    align-items: flex-start !important;
}


.hero-copy > p {
    position: relative !important;
    z-index: 5 !important;

    margin-bottom: 28px !important;
}


.hero-actions {
    position: relative !important;

    z-index: 10 !important;

    display: flex !important;

    gap: 14px !important;
}


.hero-art {
    position: relative !important;

    z-index: 2 !important;

    min-height: 500px !important;

    height: 100% !important;
}


/* TICKER SEM SOBREPOSIÇÃO */

.ticker {
    position: relative !important;

    z-index: 20 !important;

    margin-top: 0 !important;

    clear: both !important;
}


/* ESTATÍSTICAS */

.stats-section {
    position: relative !important;

    z-index: 10 !important;

    clear: both !important;
}
/* =========================================================
   CORREÇÃO DA LOGO DO HEADER
   ========================================================= */

.header .brand {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;

    width: auto !important;
    height: auto !important;

    display: flex !important;
    align-items: center !important;

    border: 0 !important;
    box-shadow: none !important;
}

.header .brand img {
  height: 58px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;

  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
/* =========================================================
   TICKER CONTÍNUO - ZIVA ART (FAIXA FINA & ELEGANTE)
   ========================================================= */

.ticker {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;

    overflow: hidden !important;

    display: flex !important;
    align-items: center !important;

    border-top: 1px solid #1c1c1c !important;
    border-bottom: 1px solid #1c1c1c !important;

    background: #050505 !important;

    position: relative !important;
    z-index: 20 !important;
}

.ticker-track {
    display: flex !important;
    align-items: center !important;

    width: max-content !important;
    flex-shrink: 0 !important;

    gap: 40px !important;

    white-space: nowrap !important;

    animation: tickerMoveRight 26s linear infinite !important;

    will-change: transform !important;
}

.ticker-track span {
    display: inline-block !important;

    font-family: "Space Grotesk", sans-serif !important;

    font-size: 11px !important;

    font-weight: 700 !important;

    letter-spacing: 2.5px !important;

    color: #cccccc !important;

    text-transform: uppercase !important;
    line-height: 1 !important;
}

.ticker-track b {
    display: inline-block !important;

    font-size: 8px !important;

    color: #ff1722 !important;

    font-weight: 700 !important;
    line-height: 1 !important;
}

/* ESQUERDA → DIREITA */

@keyframes tickerMoveRight {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}

/* mantém o movimento mesmo quando passar o mouse */

.ticker:hover .ticker-track {
    animation-play-state: running !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .ticker {
        height: 36px !important;
        min-height: 36px !important;
    }

    .ticker-track {
        gap: 25px !important;
        animation: tickerMoveRight 24s linear infinite !important;
    }

    .ticker-track span {
        font-size: 9.5px !important;
        letter-spacing: 1.8px !important;
    }

    .ticker-track b {
        font-size: 7px !important;
    }

}
/* =========================================================
   ZIVA ART - CATÁLOGO
   VERSÃO LIMPA
   ========================================================= */

#catalogo {
    width: 1100px !important;
    max-width: calc(100% - 44px) !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding-left: 0 !important;
    padding-right: 0 !important;

    box-sizing: border-box !important;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

#catalogo .section-head {
    width: 100% !important;
    margin-bottom: 28px !important;
}


/* =========================================================
   BARRA DO CATÁLOGO
   ========================================================= */

#catalogo .catalog-toolbar {
    position: relative !important;

    width: 100% !important;
    min-height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    margin: 0 0 24px 0 !important;
    padding: 0 !important;

    border-top: 1px solid rgba(255,255,255,.09) !important;
    border-bottom: 1px solid rgba(255,255,255,.09) !important;

    box-sizing: border-box !important;
}


/* =========================================================
   LADO ESQUERDO
   ========================================================= */

#catalogo .catalog-left {
    position: relative !important;

    display: flex !important;
    align-items: center !important;

    gap: 16px !important;

    height: 100% !important;
}


/* =========================================================
   BOTÃO FILTRO
   ========================================================= */

#catalogo .catalog-filter-btn {
    appearance: none !important;
    -webkit-appearance: none !important;

    height: 40px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 8px !important;

    padding: 0 18px !important;
    margin: 0 !important;

    background: var(--red) !important;

    border: 1px solid var(--red) !important;
    border-radius: 8px !important;

    color: #fff !important;

    font-family: inherit !important;
    font-size: 10px !important;
    font-weight: 800 !important;

    letter-spacing: 1px !important;
    text-transform: uppercase !important;

    line-height: 1 !important;

    cursor: pointer !important;

    box-sizing: border-box !important;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease !important;
}

#catalogo .catalog-filter-btn:hover {
    background: #ff3039 !important;
    border-color: #ff3039 !important;

    transform: translateY(-1px) !important;

    box-shadow:
        0 8px 22px rgba(255,23,34,.18) !important;
}


/* =========================================================
   CONTADOR
   ========================================================= */

#catalogo .catalog-results {
    color: #777 !important;

    font-size: 10px !important;
    font-weight: 500 !important;

    white-space: nowrap !important;
}


/* =========================================================
   FILTRO FLUTUANTE
   ========================================================= */

#catalogo .catalog-filters {
    position: absolute !important;

    top: calc(100% + 9px) !important;
    left: 0 !important;

    z-index: 9999 !important;

    width: 205px !important;

    display: none !important;

    flex-direction: column !important;

    gap: 3px !important;

    padding: 7px !important;
    margin: 0 !important;

    background: rgba(12,12,12,.97) !important;

    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 8px !important;

    box-shadow:
        0 18px 45px rgba(0,0,0,.55) !important;

    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;

    box-sizing: border-box !important;
}


/* PASSOU O MOUSE NO FILTRO */
#catalogo .catalog-left:hover .catalog-filters {
    display: flex !important;
}


/* MOUSE DENTRO DO MENU */
#catalogo .catalog-filters:hover {
    display: flex !important;
}


/* =========================================================
   OPÇÕES
   ========================================================= */

#catalogo .filter-option {
    width: 100% !important;
    height: 38px !important;

    display: flex !important;
    align-items: center !important;

    padding: 0 12px !important;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 5px !important;

    background: transparent !important;

    color: #888 !important;

    font-family: inherit !important;
    font-size: 10px !important;
    font-weight: 700 !important;

    letter-spacing: .8px !important;

    text-align: left !important;
    text-transform: uppercase !important;

    cursor: pointer !important;

    box-sizing: border-box !important;

    transition:
        background .2s ease,
        color .2s ease !important;
}

#catalogo .filter-option:hover {
    background: rgba(255,255,255,.06) !important;
    color: #fff !important;
}

#catalogo .filter-option.active {
    background: var(--red) !important;
    color: #fff !important;
}


/* =========================================================
   ORDENAÇÃO
   ========================================================= */

#catalogo .catalog-sort {
    display: flex !important;
    align-items: center !important;

    gap: 7px !important;
}

#catalogo .catalog-sort label {
    color: #777 !important;

    font-size: 10px !important;

    white-space: nowrap !important;
}

#catalogo .catalog-sort select {
    appearance: none !important;
    -webkit-appearance: none !important;

    width: 135px !important;
    height: 36px !important;

    margin: 0 !important;
    padding: 0 18px 0 0 !important;

    border: 0 !important;
    outline: 0 !important;

    background-color: transparent !important;

    color: #ddd !important;

    font-family: inherit !important;
    font-size: 10px !important;
    font-weight: 700 !important;

    cursor: pointer !important;

    box-shadow: none !important;
}

#catalogo .catalog-sort select:hover {
    color: #fff !important;
}

#catalogo .catalog-sort select:focus {
    outline: none !important;
    box-shadow: none !important;
}

#catalogo .catalog-sort select option {
    background: #0b0b0b !important;
    color: #fff !important;
}


/* =========================================================
   ARTES
   ========================================================= */

#catalogo .products {
    width: 100% !important;
    max-width: 1100px !important;

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 14px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box !important;
}


/* CARDS */

#catalogo .product {
    width: 100% !important;
    min-width: 0 !important;

    box-sizing: border-box !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    #catalogo {
        width: calc(100% - 40px) !important;
        max-width: none !important;
    }

    #catalogo .products {
        grid-template-columns:
            repeat(3, minmax(0,1fr)) !important;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 700px) {

    #catalogo {
        width: calc(100% - 28px) !important;
        max-width: none !important;
    }

    #catalogo .catalog-toolbar {
        height: auto !important;
        min-height: 58px !important;
        padding: 9px 0 !important;
    }

    #catalogo .catalog-left {
        gap: 9px !important;
    }

    #catalogo .catalog-results {
        font-size: 9px !important;
    }

    #catalogo .catalog-sort label {
        display: none !important;
    }

    #catalogo .catalog-sort select {
        width: 110px !important;
    }

    #catalogo .products {
        grid-template-columns:
            repeat(2, minmax(0,1fr)) !important;

        gap: 9px !important;
    }

}
/* ===================================================
   ESTILO DA BARRA DE FILTRO (ZIVA ART)
   =================================================== */

.catalog-toolbar {
  display: flex;
  justify-content: space-between; /* Empurra um pra cada lado */
  align-items: center;
  background-color: #0d0d0d;      /* Fundo da barra cinza escuro */
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #1a1a1a;      /* Borda bem sutil */
  margin: 30px 0;
  width: 100%;
}

.catalog-left {
  display: flex;
  align-items: center;
  gap: 20px; /* Espaço entre o botão e o texto */
}

.catalog-filter-btn {
  background-color: #ff0000 !important; /* Vermelho ZIVA */
  color: white !important;
  border: none;
  padding: 10px 25px;
  font-weight: 800;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  transition: 0.3s;
}

.catalog-filter-btn:hover {
  background-color: #cc0000 !important; /* Escurece um pouco ao passar o mouse */
}

.catalog-results {
  color: #666; /* Cor cinza do texto */
  font-size: 14px;
}

.catalog-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 14px;
}

.catalog-sort select {
  background-color: #000;
  color: #fff;
  border: 1px solid #333;
  padding: 8px 12px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

/* Ajuste para telas de celular */
@media (max-width: 768px) {
  .catalog-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }
}
/* --- CONSERTO FINAL DO LAYOUT --- */

/* Isso tira o "efeito fila" que esmagou os produtos */
#catalogo {
  display: block !important;
}

/* Isso garante que os produtos voltem a ter 4 colunas */
.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 25px;
  width: 100% !important;
  margin-top: 20px;
}

/* Ajuste para o título não sumir ou ficar torto */
.section-head {
  display: flex !important;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

/* Ajuste para celular: se a tela for pequena, mostra apenas 2 colunas */
@media (max-width: 900px) {
  .products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 500px) {
  .products {
    grid-template-columns: 1fr !important;
  }
}
/* Quando você clica no menu de ordenar */
#catalogSort:focus {
  border-color: #ff0000 !important; /* Borda fica vermelha */
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3) !important; /* Um brilho vermelho em volta */
  outline: none;
}

/* Tenta mudar a cor da seleção (funciona em alguns navegadores) */
#catalogSort option:checked,
#catalogSort option:hover {
  box-shadow: 0 0 10px #ff0000 inset !important;
  background-color: #ff0000 !important;
  color: white !important;
}
/* --- CENTRALIZAÇÃO SEGURA (ESTILO BLACK ARTES) --- */

/* 1. Limitamos a largura das seções principais */
.hero, .stats-section, .section, footer, .cta {
  max-width: 1250px !important; /* Largura máxima confortável */
  margin-left: auto !important;  /* Centraliza */
  margin-right: auto !important; /* Centraliza */
  width: 92% !important;         /* Garante folga em telas menores */
}

/* 2. Mantemos o fundo da Header e do Ticker ocupando a tela toda */
.header, .ticker, .announcement {
  max-width: none !important;
  width: 100% !important;
}

/* 3. Ajuste para a barra de filtro e produtos não passarem do limite */
.catalog-toolbar, .products {
  max-width: 100% !important; /* Eles vão respeitar o tamanho da seção pai */
}
/* --- ESTILO SEÇÃO COMO COMPRAR ZIVA --- */
.como-comprar {
  padding: 80px 0;
  text-align: center;
}

.comprar-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0;
}

.comprar-header p {
  color: #888;
  margin-bottom: 50px;
}

.eyebrow-red {
  color: #ff0000;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 12px;
  position: relative;
}

.eyebrow-red::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #ff0000;
  vertical-align: middle;
  margin-right: 10px;
}

.comprar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 colunas iguais */
  gap: 20px;
  margin-top: 20px;
}

.passo-card {
  background-color: #0d0d0d;
  border: 1px solid #1a1a1a;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: left;
  transition: 0.3s;
}

.passo-num {
  background-color: #ff0000;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.passo-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.passo-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* Efeito de destaque no último passo (igual a sua foto) */
.passo-destaque {
  border: 2px solid #ff0000 !important;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

/* Ajuste para celular */
@media (max-width: 1000px) {
  .comprar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .comprar-grid {
    grid-template-columns: 1fr;
  }
}
/* --- ESTILO SEÇÃO COMO COMPRAR (IGUAL À REFERÊNCIA) --- */

.como-comprar-secao {
    background-color: #050505;
    padding: 60px 0 70px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.comprar-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.comprar-titulo {
    text-align: center;
    margin-bottom: 50px;
}

.passo-label {
    color: #ff0000;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.comprar-titulo h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
}

.comprar-titulo p {
    color: #888;
}

/* Criando os Quadrados (Grid) */
.comprar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 colunas iguais */
    gap: 20px;
}

.card-passo {
    background-color: #0b0b0e;
    border: 1px solid #1a1a20;
    padding: 30px 20px;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

/* Efeito ao passar o mouse: acende a borda vermelha e eleva o card */
.card-passo:hover {
    border-color: #ff1722 !important;
    box-shadow: 0 0 25px rgba(255, 23, 34, 0.25), 0 12px 35px rgba(0, 0, 0, 0.6) !important;
    transform: translateY(-6px);
}

.card-passo:hover .num-caixa {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 23, 34, 0.6);
}

/* Os quadradinhos com os números */
.num-caixa {
    background-color: #ff1722;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 900;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 23, 34, 0.35);
    transition: all 0.3s ease;
}

.card-passo h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
}

.card-passo p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

/* Para o Celular (Responsivo) */
@media (max-width: 1100px) {
    .comprar-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 por linha no tablet */
    }
}

@media (max-width: 600px) {
    .comprar-grid {
        grid-template-columns: 1fr; /* 1 por linha no celular */
    }
}
/* --- ESTILO DO MODAL DE LOGIN (ZIVA ART) --- */
.ziva-modal {
  display: none; /* Ele começa escondido */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85); /* Fundo escuro */
  backdrop-filter: blur(10px);    /* Efeito de vidro fosco */
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

/* Essa classe ".open" é o que o JS vai colocar para o modal aparecer */
.ziva-modal.open {
  display: flex;
}

.modal-box {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  width: min(400px, 95vw);
  padding: 40px;
  border-radius: 16px;
  position: relative;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #444;
  font-size: 30px;
  cursor: pointer;
}

.close-modal:hover { color: #ff0000; }

.auth-header h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 5px;
}

.auth-header p {
  color: #666;
  font-size: 13px;
  margin-bottom: 30px;
}

.form-group {
  text-align: left;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  background: #050505;
  border: 1px solid #222;
  padding: 12px;
  border-radius: 8px;
  color: white;
  outline: none;
}

.form-group input:focus { border-color: #ff0000; }

.btn-block { width: 100%; margin-top: 10px; }

.auth-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
}

.auth-footer span { color: #ff0000; font-weight: bold; cursor: pointer; }
/* --- BOTÕES PREMIUM COM ÍCONE VERMELHO --- */
.actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-premium {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 10px 22px;
  border-radius: 50px; /* Formato pílula */
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* AQUI MUDAMOS A COR DO ÍCONE PARA VERMELHO */
.btn-premium i {
  font-size: 15px;
  color: #ff0000 !important; /* Vermelho ZIVA */
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3); /* Brilho suave no ícone */
}

/* Efeito ao passar o mouse */
.btn-premium:hover {
  border-color: #ff0000;
  background-color: #111;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* A BOLINHA DO CONTADOR */
.badge-count {
  position: absolute;
  top: -4px;
  right: 2px;
  background-color: #ff0000;
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  border: 2px solid #050505;
}
/* --- ESTILO DA ÁREA DE DOWNLOADS (ZIVA ART) --- */

.area-cliente-visual {
  margin-top: 50px;
  padding-bottom: 80px;
  border-top: 1px solid #1a1a1a; /* Linha sutil para separar as seções */
}

/* Criando a grade de quadrados */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* O Quadrado (Card) do Download */
.card-download {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Efeito ao passar o mouse */
.card-download:hover {
  border-color: #ff0000;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Área da Imagem */
.download-preview {
  position: relative;
  height: 200px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-preview img {
  max-width: 80%;
  opacity: 0.4; /* Deixa a imagem mais escura, estilo 'comprada' */
}

/* A Tag Verde de Liberado */
.status-liberado {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #00ff00; /* Verde limão */
  color: #000;
  font-size: 10px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* Informações e Botão */
.download-detalhes {
  padding: 25px;
}

.download-detalhes small {
  color: #555;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.download-detalhes h3 {
  font-size: 16px;
  margin: 8px 0 20px 0;
  color: #fff;
}

/* O Botão de Baixar Vermelho */
.btn-baixar-ziva {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ff0000;
  color: #fff;
  text-decoration: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  transition: 0.3s;
}

.btn-baixar-ziva:hover {
  background: #fff;
  color: #000;
}
/* --- ESTILO DO RODAPÉ ZIVA --- */
.footer-ziva {
  background-color: #050505;
  border-top: 1px solid #1a1a1a;
  padding: 80px 0 30px 0;
  margin-top: 50px;
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Divide em 4 colunas */
  gap: 40px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-col p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

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

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

.footer-col ul li a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--red);
  padding-left: 5px;
}

/* Ícones Sociais */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--red);
}

/* Ícones de Pagamento */
.payment-icons {
  display: flex;
  gap: 15px;
  font-size: 24px;
  color: #333;
  margin-top: 15px;
}

/* Rodapé Final */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #1a1a1a;
  margin-top: 60px;
  padding-top: 30px;
}

.footer-bottom p {
  color: #444;
  font-size: 12px;
}

/* Ajuste para Celular */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links, .payment-icons {
    justify-content: center;
  }
}
/* --- AJUSTE DO MODAL DE BUSCA --- */
.search-modal {
  display: none; /* Esconde por padrão */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000; /* Fica em cima de tudo */
  align-items: center;
  justify-content: center;
}

/* Quando a busca estiver aberta */
.search-modal.open {
  display: flex;
}

.search-box {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  width: min(600px, 90vw);
  padding: 40px;
  border-radius: 16px;
  position: relative;
}

#closeSearch {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #444;
  font-size: 30px;
  cursor: pointer;
}

#closeSearch:hover { color: #ff0000; }
/* --- AJUSTE PARA O TOPO NÃO QUEBRAR NO CELULAR --- */
@media (max-width: 600px) {
  
  /* 1. Esconde as palavras (Busca, Login, Carrinho) e deixa só o desenho */
  .btn-premium span {
    display: none !important;
  }

  /* 2. Deixa os botões redondinhos e menores no celular */
  .btn-premium {
    padding: 10px !important;
    min-width: 40px;
    justify-content: center;
    gap: 0 !important;
  }

  /* 3. Ajusta o espaço entre os botões para caber tudo */
  .actions {
    gap: 8px !important;
  }

  /* 4. Ajusta o tamanho da Logo no celular para não empurrar os botões */
  .brand img {
    width: 100px !important;
  }

  /* 5. Garante que a bolinha do carrinho fique no lugar certo */
  .badge-count {
    top: -5px;
    right: -5px;
  }
}
/* --- HEADER REESTRUTURADO ZIVA ART (VERMELHO) --- */
.header {
  height: auto !important;
  padding: 15px 0 0 0 !important;
  display: flex !important;
  flex-direction: column !important;
  background: rgba(5, 5, 5, 0.95) !important;
}

.header-top-row {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 15px 20px;
  gap: 30px;
}

/* Barra de Busca Premium */
.header-search-bar {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.header-search-bar input {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid #222;
  padding: 12px 25px;
  border-radius: 50px;
  color: #fff;
  outline: none;
  font-size: 13px;
  transition: 0.3s;
}

.header-search-bar input:focus {
  border-color: #ff0000; /* Borda Vermelha */
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.header-search-bar button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ff0000; /* Lupa Vermelha */
  cursor: pointer;
  font-size: 16px;
}

/* Navegação de Baixo */
.header-nav-bottom {
  width: 100%;
  border-top: 1px solid #111;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 12px 0;
  background: #050505;
}

.header-nav-bottom a {
  font-size: 11px;
  font-weight: 800;
  color: #777;
  text-decoration: none;
  letter-spacing: 1.5px;
  transition: 0.3s;
}

.header-nav-bottom a:hover {
  color: #ff0000; /* Texto Vermelho no hover */
}

/* Ajuste dos ícones dos botões para serem Vermelhos */
.btn-premium i {
  color: #ff0000 !important;
}

/* --- CORAÇÃO NOS PRODUTOS --- */
.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.wishlist-btn:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.wishlist-btn.active i {
  color: white !important; /* Coração preenchido fica branco sobre o fundo vermelho */
}

/* Esconder busca no celular para não bugar */
@media (max-width: 900px) {
  .header-search-bar { display: none; }
  .header-nav-bottom { gap: 20px; overflow-x: auto; padding: 12px 20px; justify-content: flex-start; }
}
/* CORAÇÃO ATIVO (VERMELHO) */
.wishlist-btn.active i {
    color: #ff0000 !important; /* Força o vermelho */
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5)); /* Dá um brilho leve */
}

/* Garante que o ícone mude para o estilo preenchido */
.wishlist-btn.active .fa-heart {
    font-weight: 900; /* Deixa o coração 'cheio' */
}
/* --- ESTILO DO PAINEL DE FAVORITOS --- */
.fav-panel {
    position: fixed;
    top: 0;
    right: -430px; /* Começa escondido na direita */
    width: min(400px, 100vw);
    height: 100vh;
    background: #0b0b0b;
    border-left: 1px solid #1a1a1a;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.fav-panel.open {
    right: 0; /* Desliza para dentro da tela */
}

.fav-head {
    padding: 25px;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fav-head h3 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
}

#closeFavs {
    background: none;
    border: none;
    color: #555;
    font-size: 30px;
    cursor: pointer;
}

#closeFavs:hover { color: #ff0000; }

.fav-items {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

/* Item dentro da lista de favoritos */
.fav-product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #151515;
}

.fav-product-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.fav-product-item h4 {
    font-size: 13px;
    color: #fff;
    margin-bottom: 5px;
}

.fav-product-item .btn-buy-fav {
    color: #ff0000;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
}
/* AJUSTE PARA A IMAGEM FICAR PERFEITA NO QUADRADO */
.product-img {
  width: 100%;
  height: 290px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0c0c0c;
  position: relative;
}

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

/* Efeito de zoom sutil ao passar o mouse */
.product:hover .product-img img {
  transform: scale(1.08);
}

/* =========================================================
   ZIVA ART - MODAL DE DETALHES DO PRODUTO (PREMIUM)
   ========================================================= */
.ziva-art-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ziva-art-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.art-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.art-modal-container {
  position: relative;
  background: #0d0d0d;
  border: 1px solid #242424;
  border-radius: 14px;
  max-width: 1020px;
  width: 94%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 35px 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 23, 34, 0.18);
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
  z-index: 2;
}

.ziva-art-modal.open .art-modal-container {
  transform: scale(1);
}

/* Custom Scrollbar for Modal */
.art-modal-container::-webkit-scrollbar {
  width: 6px;
}
.art-modal-container::-webkit-scrollbar-track {
  background: #0a0a0a;
}
.art-modal-container::-webkit-scrollbar-thumb {
  background: #252525;
  border-radius: 3px;
}
.art-modal-container::-webkit-scrollbar-thumb:hover {
  background: #ff1722;
}

.art-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 26px;
  background: #181818;
  border: 1px solid #2e2e2e;
  color: #aaa;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.art-modal-close:hover {
  background: #ff1722;
  border-color: #ff1722;
  color: #fff;
  transform: rotate(90deg);
}

.art-modal-body {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 35px;
  align-items: start;
}

/* Galeria / Imagem */
.art-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.art-modal-main-img-wrap {
  position: relative;
  background: #141414;
  border: 1px solid #222;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-modal-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.art-modal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff1722;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 23, 34, 0.4);
}

.art-modal-img-footer {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #777;
  padding: 0 4px;
}

.art-modal-img-footer span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.art-modal-img-footer i {
  color: #ff1722;
}

/* Informações */
.art-modal-info {
  display: flex;
  flex-direction: column;
}

.art-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.art-breadcrumbs a {
  color: #ff1722;
  transition: color 0.2s;
}

.art-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* Destaque Alta Resolução */
.art-feature-card {
  background: linear-gradient(135deg, rgba(255, 23, 34, 0.12), rgba(18, 18, 18, 0.9));
  border-left: 3px solid #ff1722;
  border-top: 1px solid #242424;
  border-right: 1px solid #242424;
  border-bottom: 1px solid #242424;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.art-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 23, 34, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff1722;
  font-size: 16px;
  flex-shrink: 0;
}

.art-feature-text strong {
  display: block;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.5px;
}

.art-feature-text p {
  margin: 2px 0 0 0;
  font-size: 11px;
  color: #999;
}

/* Arquivos Inclusos */
.art-files-section {
  margin-bottom: 20px;
}

.art-section-label {
  font-size: 10px;
  font-weight: 800;
  color: #777;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.art-files-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.art-file-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.art-file-card:hover {
  border-color: #ff1722;
  background: #181818;
}

.art-file-card i {
  font-size: 18px;
  color: #ff1722;
}

.art-file-card .file-info strong {
  font-size: 11px;
  color: #eee;
  display: block;
}

.art-file-card .file-info span {
  font-size: 9px;
  color: #777;
  display: block;
  margin-top: 1px;
}

/* Preço */
.art-pricing-box {
  background: #121212;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.art-discount-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.discount-pill {
  background: #ff1722;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
}

.economy-text {
  font-size: 12px;
  color: #aaa;
  font-weight: 600;
}

.art-price-values {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.art-price-values del {
  color: #666;
  font-size: 15px;
}

.art-price-values strong {
  color: #ff1722;
  font-size: 30px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

/* Ações */
.art-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-buy-now {
  width: 100%;
  background: #ff1722;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 23, 34, 0.35);
  transition: all 0.25s ease;
}

.btn-buy-now:hover {
  background: #ff333d;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 23, 34, 0.5);
}

.btn-add-cart-modal {
  width: 100%;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-add-cart-modal:hover {
  border-color: #ff1722;
  color: #ff1722;
  background: rgba(255, 23, 34, 0.08);
}

.art-trust-footer {
  border-top: 1px solid #1c1c1c;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #777;
}

.art-trust-footer p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.art-trust-footer p i {
  color: #ff1722;
}

.art-payment-methods {
  display: flex;
  gap: 12px;
  font-size: 18px;
  color: #666;
}

/* Seção de Descrição */
.art-modal-description {
  margin-top: 30px;
  border-top: 1px solid #222;
  padding-top: 25px;
}

.desc-header {
  position: relative;
  margin-bottom: 14px;
}

.desc-header h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin: 0;
}

.desc-line {
  width: 45px;
  height: 3px;
  background: #ff1722;
  margin-top: 6px;
  border-radius: 2px;
}

.desc-intro,
.desc-sub,
.desc-footer-note {
  color: #999;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.desc-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.desc-list li {
  color: #bbb;
  font-size: 13px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.desc-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #ff1722;
  font-size: 10px;
  top: 2px;
}

.desc-list li strong {
  color: #fff;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
  .art-modal-container {
    padding: 25px 18px;
    width: 96%;
  }

  .art-modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .art-title {
    font-size: 22px;
  }

  .art-trust-footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* =========================================================
   ZIVA ART - BOTÃO FLUTUANTE WHATSAPP (PREMIUM)
   ========================================================= */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.whatsapp-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow:
    0 8px 25px rgba(37, 211, 102, 0.45),
    0 0 0 0 rgba(37, 211, 102, 0.4);
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow:
    0 14px 35px rgba(37, 211, 102, 0.6),
    0 0 0 0 rgba(37, 211, 102, 0);
}

/* Animação de pulso */
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}

.whatsapp-pulse-2 {
  animation-delay: 0.8s;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Tooltip ao hover */
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  border: 1px solid #25D366;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(-50%) translateX(8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 7px;
  border-style: solid;
  border-color: transparent transparent transparent #111;
}

.whatsapp-tooltip i {
  color: #25D366;
  font-size: 15px;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Responsivo mobile */
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-btn {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* =========================================================
   ZIVA ART - MODAL DE AUTENTICAÇÃO / LOGIN / CADASTRO
   ========================================================= */

.ziva-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ziva-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.auth-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #0d0d0f;
  border: 1px solid rgba(255, 23, 34, 0.3);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(255, 23, 34, 0.15);
  border-radius: 16px;
  padding: 36px 30px;
  color: #fff;
  z-index: 2;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ziva-modal.open .auth-box {
  transform: translateY(0) scale(1);
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-modal:hover {
  background: rgba(255, 23, 34, 0.2);
  border-color: #ff1722;
  color: #ff1722;
  transform: rotate(90deg);
}

.auth-header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-logo-badge {
  width: 56px;
  height: 56px;
  background: #000;
  border: 2px solid #ff1722;
  border-radius: 14px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(255, 23, 34, 0.35);
}

.auth-logo-badge img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.auth-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 6px;
}

.auth-header p {
  color: #888;
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}

/* Alertas */
.auth-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-alert.error {
  background: rgba(255, 23, 34, 0.12);
  border: 1px solid rgba(255, 23, 34, 0.4);
  color: #ff6b72;
}

.auth-alert.success {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
}

/* Formulário */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: #ff1722;
  font-size: 11px;
}

.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.forgot-link {
  font-size: 12px;
  color: #ff1722;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.forgot-link:hover {
  text-decoration: underline;
  color: #ff4752;
}

.form-group input {
  width: 100%;
  background: #151518;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  padding: 13px 16px;
  border-radius: 8px;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: #ff1722;
  background: #18181c;
  box-shadow: 0 0 15px rgba(255, 23, 34, 0.25);
}

.input-pass-wrap {
  position: relative;
  width: 100%;
}

.input-pass-wrap input {
  padding-right: 46px;
}

.btn-toggle-pass {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #777;
  cursor: pointer;
  font-size: 15px;
  padding: 4px;
  transition: color 0.2s;
}

.btn-toggle-pass:hover {
  color: #fff;
}

.forgot-instructions {
  color: #aaa;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 10px;
  text-align: center;
}

.btn-auth-submit {
  width: 100%;
  background: linear-gradient(135deg, #ff1722, #b3000b);
  border: none;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  box-shadow: 0 8px 25px rgba(255, 23, 34, 0.35);
  transition: all 0.25s ease;
}

.btn-auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 23, 34, 0.55);
}

.btn-auth-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.auth-footer p {
  color: #888;
  font-size: 13px;
  margin: 0;
}

.auth-footer a {
  color: #ff1722;
  font-weight: 700;
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.2s;
}

.auth-footer a:hover {
  text-decoration: underline;
  color: #ff4752;
}

/* Menu do Usuário Logado */
.user-menu-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  width: 220px;
  background: #0d0d0f;
  border: 1px solid rgba(255, 23, 34, 0.3);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 100;
}

.user-menu-dropdown .user-info-bar {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
}

.user-menu-dropdown .user-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.user-menu-dropdown .user-email {
  font-size: 11px;
  color: #888;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: #ccc;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.user-menu-item:hover {
  background: rgba(255, 23, 34, 0.15);
  color: #ff1722;
}

.user-menu-item.logout {
  color: #ff4752;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4px;
}

/* =========================================================
   ZIVA ART - PACOTE MOBILE PRO (RESPONSIVIDADE COMPLETA)
   ========================================================= */

@media (max-width: 868px) {
  /* 1. Header Compacto */
  .header {
    height: auto !important;
    padding: 10px 14px !important;
    width: 100% !important;
  }

  .header-top-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .header .brand img {
    height: 38px !important;
    max-width: 120px !important;
  }

  .header-search-bar {
    flex: 1 !important;
    max-width: 220px !important;
  }

  .header-search-bar input {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }

  .header-top-row .actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .header-top-row .actions .btn-premium {
    padding: 8px 10px !important;
    font-size: 13px !important;
    min-width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  /* Esconde textos dos botões no mobile para caber os 3 ícones perfeitamente */
  .header-top-row .actions .btn-premium span:not(.badge-count) {
    display: none !important;
  }

  .badge-count {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    font-size: 10px !important;
    width: 18px !important;
    height: 18px !important;
  }

  /* 2. Menu de Navegação Horizontal com Touch Scroll */
  .header-nav-bottom {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 18px !important;
    padding: 8px 6px 2px 6px !important;
    width: 100% !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    margin-top: 6px !important;
  }

  .header-nav-bottom::-webkit-scrollbar {
    display: none !important;
  }

  .header-nav-bottom a {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    padding: 4px 8px !important;
    color: #bbb !important;
    flex-shrink: 0 !important;
  }

  /* 3. Hero Section no Mobile */
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    height: auto !important;
    padding: 30px 16px 40px !important;
    gap: 25px !important;
  }

  .hero-copy {
    align-items: center !important;
    text-align: center !important;
  }

  .hero-copy h1 {
    font-size: 32px !important;
    line-height: 1.15 !important;
  }

  .hero-art {
    min-height: 340px !important;
    height: 340px !important;
  }

  /* 4. Barra do Catálogo */
  .catalog-toolbar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    padding: 12px 0 !important;
  }

  .catalog-left {
    justify-content: space-between !important;
    width: 100% !important;
  }

  .catalog-sort {
    width: 100% !important;
    justify-content: space-between !important;
  }

  .catalog-sort select {
    flex: 1 !important;
  }

  /* 5. Grade de Produtos no Celular */
  .products {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .product {
    max-width: 100% !important;
  }

  /* 6. Como Comprar Passo a Passo */
  .comprar-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* 7. Feature / Como Funciona */
  .steps {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* 8. Downloads Grid */
  .downloads-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* 9. Rodapé Mobile */
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }

  .footer-col .social-links {
    justify-content: center !important;
  }

  .footer-col .payment-icons {
    justify-content: center !important;
  }
}

@media (min-width: 540px) and (max-width: 868px) {
  /* Em telas médias (tablets pequenos), coloca 2 produtos por linha */
  .products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* =====================================================
   SINGLE PRODUCT PAGE (ZIVA ART)
   ===================================================== */

/* Transição fade da view */
#homeView, #productView {
  transition: opacity 0.35s ease;
}
#homeView.fading, #productView.fading {
  opacity: 0;
  pointer-events: none;
}

#productView {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  box-sizing: border-box;
  animation: pvFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pvFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Barra do topo */
.pv-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pv-back {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.pv-back:hover {
  background: rgba(255,23,34,0.15);
  border-color: #ff1722;
  color: #ff1722;
  transform: translateX(-4px);
}

.pv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}
.pv-breadcrumb span:first-child,
.pv-breadcrumb span:nth-child(3) {
  color: #aaa;
  transition: color 0.2s;
}
.pv-breadcrumb span:first-child:hover,
.pv-breadcrumb span:nth-child(3):hover { color: #ff1722; }
.pv-breadcrumb strong { color: #fff; }

/* Grade principal 2 colunas */
.pv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Coluna imagem */
.pv-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,23,34,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(255,23,34,0.1);
}
.pv-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pv-img-frame:hover img { transform: scale(1.04); }

.pv-discount-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ff1722;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.pv-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  background: #0d0d0f;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px;
}
.pv-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #ccc;
}
.pv-badge i { color: #ff1722; font-size: 13px; }

/* Coluna info */
.pv-info-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pv-cat {
  display: inline-block;
  background: rgba(255,23,34,0.12);
  border: 1px solid rgba(255,23,34,0.35);
  color: #ff1722;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  align-self: flex-start;
}

.pv-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.pv-feature-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(90deg, rgba(255,23,34,0.12), transparent);
  border-left: 3px solid #ff1722;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}
.pv-feature-bar i { color: #ff1722; font-size: 20px; }
.pv-feature-bar strong { display: block; font-size: 13px; color: #fff; font-weight: 800; }
.pv-feature-bar small { color: #888; font-size: 12px; }

/* Arquivos */
.pv-files-label {
  font-size: 11px;
  font-weight: 800;
  color: #aaa;
  letter-spacing: 1px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pv-files-label i { color: #ff1722; }

.pv-files-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pv-file-card {
  background: #111114;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pv-file-card i { color: #ff1722; font-size: 16px; }
.pv-file-card strong { font-size: 12px; color: #fff; }
.pv-file-card small { font-size: 10px; color: #777; }

/* Checkout box */
.pv-checkout {
  background: #0d0d10;
  border: 1px solid rgba(255,23,34,0.25);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pv-price-row { display: flex; align-items: baseline; gap: 10px; }
.pv-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}
.pv-old-price { font-size: 15px; color: #555; text-decoration: line-through; }

.pv-btns { display: flex; flex-direction: column; gap: 9px; }

.pv-btn-buy {
  width: 100%;
  background: linear-gradient(135deg, #ff1722, #b3000b);
  border: none;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(255,23,34,0.4);
  transition: all 0.25s;
}
.pv-btn-buy:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,23,34,0.6); }

.pv-btn-cart {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.pv-btn-cart:hover { background: rgba(255,255,255,0.07); border-color: #fff; }

.pv-whats-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #25D366;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.pv-whats-link:hover { color: #4df089; text-decoration: underline; }

/* Relacionados */
.pv-related {
  margin-top: 60px;
}
.pv-related h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}

/* Responsivo */
@media (max-width: 868px) {
  .pv-grid { grid-template-columns: 1fr; gap: 24px; }
  .pv-title { font-size: 24px; }
  .pv-files-grid { grid-template-columns: 1fr; }
  #productView { padding: 20px 16px 60px; }
  .pv-topbar { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   ZIVA ART - AJUSTES DE ESTILO & FUNDO 100% PRETO
   ========================================================= */

/* Fundo 100% preto puro */
body {
  background-color: #050505 !important;
  background-image: none !important;
}

/* ESTATÍSTICAS / NÚMEROS: 100% LIMPOS, SEM QUADRADO, FUNDO PRETO */
.stats-section {
  background: #050505 !important;
}

.stats-section .stat-item,
.stat-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0 !important;
  transform: none !important;
}

.stats-section .stat-item:hover,
.stat-item:hover {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Linha divisória sutil entre os números */
.stats-section .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15px;
  width: 1px;
  height: calc(100% - 30px);
  background: #1f1f1f !important;
}

/* 1. HEADER TRANSLÚCIDO COM DESFOQUE DE FUNDO */
.header,
header.header {
  background: rgba(8, 8, 11, 0.85) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55) !important;
}

/* Barra de Busca */
.header-search-bar {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 30px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.header-search-bar:focus-within {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 23, 34, 0.6) !important;
  box-shadow: 0 0 20px rgba(255, 23, 34, 0.3), inset 0 0 10px rgba(255, 23, 34, 0.05) !important;
}

.header-search-bar input {
  background: transparent !important;
  color: #fff !important;
}

/* Botões do Topo (Login, Favoritos, Carrinho) */
.btn-premium {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
}

.btn-premium:hover {
  background: rgba(255, 23, 34, 0.16) !important;
  border-color: rgba(255, 23, 34, 0.5) !important;
  box-shadow: 0 4px 18px rgba(255, 23, 34, 0.25) !important;
  transform: translateY(-2px);
}

/* 2. CARDS DE PRODUTOS */
.product,
#catalogo .product,
article.product {
  background: rgba(15, 15, 19, 0.6) !important;
  backdrop-filter: blur(18px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45) !important;
  overflow: hidden !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              box-shadow 0.35s ease !important;
}

.product:hover,
#catalogo .product:hover,
article.product:hover {
  transform: translateY(-8px) scale(1.01) !important;
  border-color: rgba(255, 23, 34, 0.5) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 
              0 0 30px rgba(255, 23, 34, 0.22) !important;
}

.product-img {
  background: rgba(0, 0, 0, 0.4) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.product-info {
  background: rgba(10, 10, 14, 0.4) !important;
}

.btn-card-cart {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #fff !important;
  transition: all 0.25s ease !important;
}

.btn-card-cart:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #fff !important;
}

/* 3. CARRINHO LATERAL */
.cart,
aside#cart {
  background: rgba(10, 10, 14, 0.92) !important;
  backdrop-filter: blur(30px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(190%) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: -15px 0 60px rgba(0, 0, 0, 0.85) !important;
}

.cart-head {
  background: rgba(255, 255, 255, 0.03) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.cart-foot {
  background: rgba(255, 255, 255, 0.03) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.cart-item {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-radius: 12px !important;
  padding: 12px !important;
  margin-bottom: 12px !important;
  transition: border-color 0.2s ease !important;
}

.cart-item:hover {
  border-color: rgba(255, 23, 34, 0.35) !important;
}

/* 4. MODAIS */
.modal-box,
.art-modal-box,
.auth-box {
  background: rgba(12, 12, 16, 0.92) !important;
  backdrop-filter: blur(32px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(32px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 
              0 0 40px rgba(255, 23, 34, 0.18) !important;
}

.art-file-card,
.pv-file-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-radius: 10px !important;
  transition: all 0.25s ease !important;
}

.art-pricing-box,
.pv-checkout {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 23, 34, 0.3) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 23, 34, 0.05) !important;
}

/* =========================================================
   SEÇÃO DE FEEDBACKS REAIS / DEPOIMENTOS
   ========================================================= */

.feedbacks-section {
  padding: 80px 0 90px !important;
  position: relative;
}

.feedbacks-section .section-head {
  text-align: center;
  margin-bottom: 45px;
}

.feedbacks-section .section-head .eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ff1722;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.feedbacks-section .section-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1.15;
}

.feedbacks-section .section-head h2 em {
  color: #ff1722;
  font-style: normal;
}

.feedbacks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.feedback-card {
  background: #0b0b0e;
  border: 1px solid #1c1c22;
  border-radius: 18px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feedback-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 23, 34, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 23, 34, 0.15);
}

.feedback-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #ff1722;
  font-size: 14px;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 8px rgba(255, 23, 34, 0.45));
}

.feedback-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: #c7c7c7;
  font-style: italic;
  margin: 0 0 28px;
  flex-grow: 1;
}

.feedback-text strong {
  color: #fff;
  font-weight: 700;
  font-style: normal;
}

.feedback-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1722, #b3000b);
  color: #fff;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 23, 34, 0.4);
}

.author-info strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.author-info small {
  font-size: 11.5px;
  color: #777;
  display: block;
}

/* Responsivo para Feedbacks */
@media (max-width: 1024px) {
  .feedbacks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .feedbacks-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feedback-card {
    padding: 28px 20px;
  }
}

/* =========================================================
   BARRA DE GARANTIA & SELOS DE SEGURANÇA
   ========================================================= */

.trust-bar-section {
  padding: 40px 0 60px !important;
  max-width: 1400px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card {
  background: #09090c;
  border: 1px solid #191920;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover {
  border-color: #ff1722;
  box-shadow: 0 0 20px rgba(255, 23, 34, 0.2);
  transform: translateY(-4px);
}

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 23, 34, 0.1);
  border: 1px solid rgba(255, 23, 34, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff1722;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
  background: #ff1722;
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 23, 34, 0.6);
}

.trust-info strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}

.trust-info span {
  font-size: 12px;
  color: #888;
  line-height: 1.3;
  display: block;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FAQ - PERGUNTAS FREQUENTES (ACORDEÃO INTERATIVO)
   ========================================================= */

.faq-section {
  padding: 80px 0 90px !important;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #09090c;
  border: 1px solid #1a1a22;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
  border-color: rgba(255, 23, 34, 0.45);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 23, 34, 0.12);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #ff1722;
}

.faq-question i {
  color: #ff1722;
  font-size: 14px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 22px;
}

.faq-answer p {
  color: #b0b0b8;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
}

/* =========================================================
   PROVA SOCIAL FLUTUANTE (NOTIFICAÇÃO RECENTE DE COMPRA)
   ========================================================= */

.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(12, 12, 16, 0.95);
  border: 1px solid rgba(255, 23, 34, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 23, 34, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 999;
  max-width: 380px;
  transform: translateY(120px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-proof-toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1722, #b3000b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 23, 34, 0.5);
}

.toast-body {
  flex-grow: 1;
}

.toast-body strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.toast-body p {
  margin: 0;
  font-size: 12px;
  color: #aaa;
  line-height: 1.3;
}

.toast-body p b {
  color: #ff1722;
  font-weight: 700;
}

.toast-body small {
  display: block;
  font-size: 10px;
  color: #25D366;
  margin-top: 3px;
  font-weight: 600;
}

.toast-close {
  background: transparent;
  border: none;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.toast-close:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .social-proof-toast {
    left: 12px;
    right: 12px;
    bottom: 85px; /* Acima do botão do WhatsApp no celular */
    max-width: none;
  }
}

/* =========================================================
   PROTEÇÃO DE ASSETS E IMAGENS
   ========================================================= */
img, .product-img img, .pv-img-frame img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}


/* =========================================================
   CHECKOUT TRANSPARENTE MULTI-ETAPAS (ZIVA ART PRETO & VERMELHO)
   ========================================================= */

.checkout-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.checkout-modal.open {
  display: flex;
  animation: checkoutFadeIn 0.25s ease-out;
}

@keyframes checkoutFadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.checkout-window {
  position: relative;
  width: 100%;
  max-width: 1060px;
  max-height: 92vh;
  background: #09090c;
  border: 1px solid #22222a;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 45px rgba(255, 23, 34, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #eee;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
}

/* HEADER DO CHECKOUT */
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: #0d0d12;
  border-bottom: 1px solid #1c1c24;
}

.checkout-brand .checkout-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.checkout-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-node {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.step-node .step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1a1a22;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #888;
}

.step-node.active {
  color: #fff;
}

.step-node.active .step-num {
  background: var(--red, #ff1722);
  border-color: var(--red, #ff1722);
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 23, 34, 0.6);
}

.step-node.completed {
  color: #00ff88;
}

.step-node.completed .step-num {
  background: #00ff88;
  border-color: #00ff88;
  color: #000;
}

.step-divider {
  width: 28px;
  height: 2px;
  background: #22222a;
}

.step-divider.active {
  background: var(--red, #ff1722);
}

.checkout-close-btn {
  background: transparent;
  border: none;
  color: #888;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
  transition: color 0.2s;
}

.checkout-close-btn:hover {
  color: var(--red, #ff1722);
}

/* CORPO DO CHECKOUT (GRID 2 COLUNAS) */
.checkout-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.checkout-main-col {
  padding: 28px 32px;
  border-right: 1px solid #1c1c24;
  overflow-y: auto;
}

.checkout-sidebar-col {
  padding: 28px 24px;
  background: #0d0d12;
  overflow-y: auto;
}

/* SEÃ‡ÃƒO HEAD */
.checkout-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.checkout-section-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-checkout-login-trigger {
  background: transparent;
  border: none;
  color: var(--red, #ff1722);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.btn-checkout-login-trigger:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* INPUTS E FORM */
.checkout-input-group {
  margin-bottom: 14px;
}

.checkout-input-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkout-input-group input {
  width: 100%;
  padding: 13px 14px;
  background: #14141b;
  border: 1px solid #282834;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.checkout-input-group input:focus {
  border-color: var(--red, #ff1722);
  box-shadow: 0 0 10px rgba(255, 23, 34, 0.25);
  background: #171720;
}

.checkout-input-group input::placeholder {
  color: #555;
}

.field-hint {
  display: block;
  font-size: 11px;
  color: #666;
  margin-top: 4px;
}

.checkout-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* BOTÃ•ES DE AÃ‡ÃƒO */
.checkout-actions {
  margin-top: 24px;
}

.checkout-actions-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.btn-checkout-primary {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #ff1722, #b8050e);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(255, 23, 34, 0.35);
}

.btn-checkout-primary:hover {
  background: linear-gradient(135deg, #ff2e38, #d60813);
  box-shadow: 0 8px 25px rgba(255, 23, 34, 0.5);
  transform: translateY(-1px);
}

.btn-checkout-back {
  background: transparent;
  border: 1px solid #2a2a35;
  color: #aaa;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-checkout-back:hover {
  color: #fff;
  border-color: #444;
  background: #14141c;
}

/* ETAPA 2: REVISÃƒO E MÃ‰TODO */
.checkout-review-card {
  background: #121218;
  border: 1px solid #23232c;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.review-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #777;
  letter-spacing: 0.5px;
}

.review-value {
  font-size: 14px;
  color: #eee;
  font-weight: 600;
  margin-top: 2px;
}

.btn-review-edit {
  background: transparent;
  border: none;
  color: var(--red, #ff1722);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-review-edit:hover {
  text-decoration: underline;
}

.security-badge {
  font-size: 11px;
  color: #00ff88;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.payment-method-card {
  background: #13131a;
  border: 2px solid var(--red, #ff1722);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 0 20px rgba(255, 23, 34, 0.15);
}

.pm-radio-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pm-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.pm-radio-label strong {
  font-size: 15px;
  color: #fff;
}

.pm-badge-pix {
  background: rgba(0, 255, 136, 0.12);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pm-desc {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
  margin: 0;
  padding-left: 24px;
}

/* ETAPA 3: TELA DE PIX */
.pix-screen-wrapper {
  text-align: center;
}

.pix-screen-header h2 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}

.pix-screen-header p {
  font-size: 13px;
  color: #888;
  margin-bottom: 18px;
}

.pix-qr-container {
  background: #121218;
  border: 1px solid #23232c;
  border-radius: 14px;
  padding: 24px 20px;
  max-width: 440px;
  margin: 0 auto;
}

.pix-qr-frame {
  background: #ffffff;
  padding: 14px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 14px;
}

.pix-qr-frame img {
  width: 210px;
  height: 210px;
  display: block;
  object-fit: contain;
}

.pix-amount-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 14px;
}

.pix-amount-badge strong {
  font-size: 20px;
  color: #00ff88;
  font-weight: 700;
}

.pix-copy-box {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.pix-copy-box input {
  flex: 1;
  background: #09090c;
  border: 1px solid #282834;
  border-radius: 7px;
  padding: 10px 12px;
  color: #777;
  font-size: 11px;
  font-family: monospace;
  outline: none;
}

.btn-copy-pix {
  background: var(--red, #ff1722);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-copy-pix:hover {
  background: #ff2e38;
}

.btn-copy-pix.copied {
  background: #00b862 !important;
}

.pix-status-box {
  background: #0b0b0e;
  border: 1px solid #1e1e26;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
}

.pix-pulse-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #ff9900;
  margin-bottom: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff9900;
  box-shadow: 0 0 10px #ff9900;
  animation: pulseAnim 1.4s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.pix-timer-text {
  font-size: 11px;
  color: #777;
}

.pix-timer-text strong {
  color: #eee;
}

.btn-cancel-pix {
  background: transparent;
  border: none;
  color: #666;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-cancel-pix:hover {
  color: #aaa;
  text-decoration: underline;
}

/* ETAPA 4: SUCESSO */
.checkout-success-box {
  text-align: center;
  padding: 20px 10px;
}

.success-glow-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.15);
  border: 2px solid #00ff88;
  color: #00ff88;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
  animation: successBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successBounce {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.checkout-success-box h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}

.success-sub {
  font-size: 13px;
  color: #aaa;
  max-width: 460px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.checkout-downloads-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 24px;
}

.download-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #13131b;
  border: 1px solid #252532;
  border-radius: 10px;
  padding: 12px 14px;
  text-align: left;
}

.download-item-card img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  background: #000;
}

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

.download-item-info strong {
  font-size: 13px;
  color: #fff;
  display: block;
}

.download-item-info span {
  font-size: 11px;
  color: #777;
}

.btn-download-cdr {
  background: #00b862;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(0, 184, 98, 0.3);
}

.btn-download-cdr:hover {
  background: #00d672;
  transform: translateY(-1px);
}

/* SIDEBAR RESUMO */
.checkout-summary-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1c1c24;
}

.summary-count {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.summary-back-btn {
  background: transparent;
  border: none;
  color: #777;
  font-size: 12px;
  cursor: pointer;
}

.summary-back-btn:hover {
  color: #fff;
  text-decoration: underline;
}

.checkout-items-scroll {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 18px;
  padding-right: 4px;
}

.checkout-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-item-thumb {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: #161620;
  border: 1px solid #282834;
  flex-shrink: 0;
}

.checkout-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-item-qty {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red, #ff1722);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-item-details {
  flex: 1;
}

.checkout-item-title {
  font-size: 13px;
  font-weight: 600;
  color: #eee;
  display: block;
}

.checkout-item-cat {
  font-size: 11px;
  color: #666;
}

.checkout-item-price {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

/* CUPOM */
.checkout-coupon-box {
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid #1c1c24;
}

.coupon-input-wrap {
  display: flex;
  gap: 8px;
}

.coupon-input-wrap input {
  flex: 1;
  padding: 10px 12px;
  background: #14141b;
  border: 1px solid #282834;
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  text-transform: uppercase;
}

.coupon-input-wrap input:focus {
  border-color: var(--red, #ff1722);
}

.coupon-input-wrap button {
  background: #22222c;
  color: #fff;
  border: 1px solid #333342;
  border-radius: 7px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.coupon-input-wrap button:hover {
  background: var(--red, #ff1722);
  border-color: var(--red, #ff1722);
}

.coupon-feedback {
  display: block;
  font-size: 11px;
  margin-top: 6px;
}

/* TOTAIS */
.checkout-totals {
  padding-top: 14px;
  border-top: 1px solid #1c1c24;
  margin-bottom: 20px;
}

.total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.total-line span:last-child {
  color: #ccc;
  font-weight: 600;
}

.grand-total-line {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #242430;
  font-size: 16px;
  color: #fff;
}

.grand-total-line strong:last-child {
  font-size: 20px;
  color: var(--red, #ff1722);
  text-shadow: 0 0 15px rgba(255, 23, 34, 0.4);
}

/* TRUST */
.checkout-trust-list {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #1c1c24;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-item {
  font-size: 11px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item i {
  color: var(--red, #ff1722);
  font-size: 12px;
}

/* RESPONSIVO */
@media (max-width: 860px) {
  .checkout-body {
    grid-template-columns: 1fr;
  }
  .checkout-main-col {
    border-right: none;
    border-bottom: 1px solid #1c1c24;
    padding: 20px;
  }
  .checkout-sidebar-col {
    padding: 20px;
  }
  .checkout-stepper {
    display: none;
  }
}
