/* ============================================================
   MIRAN CLOSET — Redesign Luxury Edition
   Inspiração: estética editorial de alto luxo
   ============================================================ */

/* Neue Montreal — textos / interface */
@import url('https://fonts.cdnfonts.com/css/neue-montreal');
/* Bright Retro — títulos da marca */
@import url('https://fonts.cdnfonts.com/css/bright-retro');
/* Cormorant Garamond — citações e itálicos editoriais */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ─── VARIÁVEIS ────────────────────────────────────────────── */
:root {
  /* Paleta original do site — quente e feminina */
  --red:        #C90F14;   /* crimson da marca */
  --red-dark:   #A00D10;
  --terra:      #C16A4C;   /* terracota — tom de apoio */
  --terra-lt:   #D4A898;   /* terracota claro */
  --beige:      #F0E8DC;   /* linho quente */
  --beige-mid:  #E2D2C3;   /* beige médio */
  --beige-dark: #C9B8A5;   /* beige escuro */
  --black:      #2A1E1C;   /* marrom muito escuro (não preto frio) */
  --dark:       #1A1210;   /* para fundos escuros */
  --gray:       #5A4A44;   /* cinza quente */
  --gray-lt:    #9A8A82;   /* cinza claro quente */
  --white:      #FFFFFF;
  /* Fontes */
  --brand:  'Bright Retro', Georgia, serif;        /* títulos — fonte da marca */
  --serif:  'Bright Retro', Georgia, serif;        /* headings editoriais */
  --serif2: 'Cormorant Garamond', Georgia, serif;  /* citações / itálicos */
  --sans:   'Neue Montreal', 'Helvetica Neue', Arial, sans-serif; /* textos / UI */
  --nav-h:      64px;
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--sans); }

/* ─── TOPBAR ───────────────────────────────────────────────── */
.topbar {
  background: var(--red);
  color: rgba(255,255,255,.9);
  text-align: center;
  padding: 9px 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ─── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
}

/* Logo — centro */
.navbar-logo {
  grid-column: 2;
  font-family: var(--brand);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--black);
  white-space: nowrap;
  line-height: 1;
}
.navbar-logo em {
  font-style: normal;
  color: var(--red);
}

/* Links — esquerda */
.nav-links {
  grid-column: 1;
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }

/* Ações — direita */
.nav-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: opacity .2s;
}
.nav-icon-btn:hover { opacity: .55; }

.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  transition: opacity .2s;
}
.nav-cart-btn:hover { opacity: .55; }

.cart-count {
  display: none;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  border-radius: 50%;
  line-height: 1;
}

/* Botão Admin na navbar */
.nav-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: var(--red);
  color: var(--white);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .09em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s;
  white-space: nowrap;
}
.nav-admin-btn:hover { background: var(--red-dark); opacity: 1; }

/* Dropdown usuário logado */
.nav-user { position: relative; }
.nav-user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  background: var(--white);
  border: 1px solid var(--beige-mid);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  z-index: 500;
  padding: 8px 0;
}
.nav-user-dropdown.aberto { display: block; }
.nav-user-nome {
  display: block;
  padding: 8px 16px 6px;
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray-lt);
  border-bottom: 1px solid var(--beige-mid);
  margin-bottom: 4px;
}
.nav-user-dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: .83rem;
  font-weight: 300;
  color: var(--black);
  transition: color .2s, background .2s;
}
.nav-user-dropdown a:hover { background: var(--beige); color: var(--red); }
.nav-user-sair { color: var(--gray) !important; }
.nav-user-sair:hover { color: var(--red) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--black);
  transition: all .3s;
  transform-origin: center;
}
.nav-hamburger.aberto span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.aberto span:nth-child(2) { opacity: 0; }
.nav-hamburger.aberto span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0;
  width: 100%; height: calc(100vh - var(--nav-h));
  background: var(--white);
  z-index: 199;
  flex-direction: column;
  padding: 32px 32px 40px;
  overflow-y: auto;
}
.mobile-menu.aberto { display: flex; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid rgba(0,0,0,.07);
  font-weight: 300;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--red); }

/* Busca overlay */
.search-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--white);
  z-index: 300;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.search-overlay.active { display: flex; }
.search-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: none;
  font-size: 24px; cursor: pointer;
  color: var(--black);
  font-weight: 200;
  line-height: 1;
}
.search-form {
  display: flex;
  width: 100%;
  max-width: 560px;
  border-bottom: 1px solid var(--black);
}
.search-form input {
  flex: 1;
  padding: 12px 0;
  border: none; outline: none;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  background: transparent;
  color: var(--black);
  font-style: italic;
}
.search-form input::placeholder { color: var(--beige-dark); }
.search-form button {
  background: none; border: none;
  cursor: pointer;
  color: var(--black);
  padding: 8px;
  transition: opacity .2s;
}
.search-form button:hover { opacity: .5; }
.search-hint {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-lt);
  font-weight: 300;
}

/* ─── HERO FULL-BLEED ──────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h) - 38px);
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Gradiente quente terracota — identidade do site original */
  background: linear-gradient(160deg, #1A0C0A 0%, #3D1A14 30%, #8B3A28 65%, #C16A4C 100%);
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
}

/* Gradiente de sobreposição */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.2) 50%,
    rgba(0,0,0,.0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 80px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
}

.hero-text {}

.hero-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--brand);
  /* Original usava até 95px — dramático e editorial */
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.hero-title em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--terra-lt);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding-bottom: 6px;
  transition: border-color .3s, gap .3s;
}
.hero-cta:hover { border-color: var(--white); gap: 20px; }
.hero-cta svg { transition: transform .3s; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}

.hero-quote {
  font-family: var(--serif2);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  text-align: right;
  max-width: 280px;
  border-right: 2px solid var(--terra);
  padding-right: 20px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}
.hero-stat {}
.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  font-weight: 400;
}

/* ─── MARQUEE / FAIXA DE TEXTO ─────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 14px 0;
  background: var(--white);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 100s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── CATEGORIAS (Editorial Grid) ──────────────────────────── */
.section-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.cat-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--beige-mid);
  cursor: pointer;
}

/* Placeholder gradientes por categoria — tons quentes terracota */
.cat-item:nth-child(1) .cat-bg { background: linear-gradient(160deg,#C16A4C,#7A3020); }
.cat-item:nth-child(2) .cat-bg { background: linear-gradient(160deg,#A0503A,#3D1A14); }
.cat-item:nth-child(3) .cat-bg { background: linear-gradient(160deg,#D4A898,#8B3A28); }
.cat-item:nth-child(4) .cat-bg { background: linear-gradient(160deg,#5A2A20,#1A0C0A); }

.cat-bg {
  position: absolute;
  inset: 0;
  transition: transform .6s ease;
}
.cat-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cat-item:hover .cat-bg { transform: scale(1.04); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
  transition: background .4s;
}
.cat-item:hover .cat-overlay { background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 55%); }

.cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
}

.cat-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
  font-weight: 400;
}

.cat-name {
  display: block;
  font-family: var(--brand);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  font-weight: 400;
  transition: gap .3s, color .3s;
}
.cat-item:hover .cat-link { gap: 14px; color: var(--white); }

/* ─── TÍTULO DE SEÇÃO ──────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 72px 80px 48px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.section-overline {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 400;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--brand);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--red);
}

.section-header-link {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: gap .3s;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 4px;
}
.section-header-link:hover { gap: 16px; }

/* ─── GRID DE PRODUTOS ─────────────────────────────────────── */
.products-section {
  padding: 0 80px 80px;
}

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

/* Card */
.product-card {
  position: relative;
  background: var(--beige);
  cursor: pointer;
  overflow: hidden;
}

.product-card-inner {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--beige-mid);
}

.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-placeholder-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-placeholder-img::after {
  content: '✦';
  font-size: 28px;
  color: rgba(0,0,0,.12);
  font-family: var(--serif);
}

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 4px 10px;
  font-weight: 400;
  z-index: 2;
}
.product-badge.badge-destaque { background: var(--red); }

/* Quick-view ao hover */
.product-quick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(24,22,20,.85);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
  transform: translateY(100%);
  transition: transform .3s ease;
  font-weight: 400;
}
.product-card:hover .product-quick { transform: translateY(0); }

.product-info {
  padding: 20px 20px 28px;
  background: var(--white);
}

.product-category {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-lt);
  font-weight: 400;
  margin-bottom: 6px;
}

.product-name {
  /* Original: Times New Roman 700 nos cards de produto — editorial */
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-price {
  font-size: 15px;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.product-price-orig {
  font-size: 12px;
  color: var(--gray-lt);
  text-decoration: line-through;
  font-weight: 300;
}

/* ─── EDITORIAL DUPLO ──────────────────────────────────────── */
.editorial-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  margin-top: 2px;
}

.ed-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.ed-panel-bg {
  position: absolute;
  inset: 0;
  transition: transform .7s ease;
}
.ed-panel-bg img { width: 100%; height: 100%; object-fit: cover; }
.ed-panel:hover .ed-panel-bg { transform: scale(1.03); }

/* Painel escuro (esquerda) — gradiente terracota da marca */
.ed-panel--dark .ed-panel-bg {
  background: linear-gradient(145deg, #1A0C0A 0%, #3D1A14 50%, #8B3A28 100%);
}
.ed-panel--dark::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 60%);
}

/* Painel claro (direita) */
.ed-panel--light .ed-panel-bg {
  background: linear-gradient(145deg, #EDE3D4 0%, #D9CCBA 100%);
}
.ed-panel--light::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 60%);
}

.ed-panel-content {
  position: relative;
  z-index: 2;
  padding: 56px 52px;
  width: 100%;
}

.ed-panel-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 14px;
}
.ed-panel--dark .ed-panel-label { color: rgba(255,255,255,.5); }
.ed-panel--light .ed-panel-label { color: rgba(255,255,255,.7); }

.ed-panel-title {
  font-family: var(--brand);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.ed-panel--dark .ed-panel-title { color: var(--white); }
.ed-panel--dark .ed-panel-title em { font-style: italic; font-family: var(--serif); color: var(--terra-lt); }
.ed-panel--light .ed-panel-title { color: var(--white); }

.ed-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid;
  padding-bottom: 4px;
  transition: gap .3s;
}
.ed-panel:hover .ed-panel-cta { gap: 16px; }
.ed-panel--dark .ed-panel-cta { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.35); }
.ed-panel--light .ed-panel-cta { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.5); }

/* ─── PERKS ────────────────────────────────────────────────── */
.perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,.07);
}

.perk {
  padding: 52px 48px;
  border-right: 1px solid rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.perk:last-child { border-right: none; }

.perk-icon {
  font-size: 18px;
  color: var(--red);
  letter-spacing: -0.04em;
}

.perk-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--black);
}

.perk-text {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.75;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.45);
  padding: 72px 80px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand {}

.footer-logo {
  font-family: var(--brand);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer-logo em { font-style: normal; color: var(--red); }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  max-width: 220px;
  font-weight: 300;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-soc {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: border-color .2s, color .2s;
  cursor: pointer;
}
.footer-soc:hover { border-color: var(--red); color: var(--white); }

.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 22px;
  display: block;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  font-weight: 300;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 11px;
  color: rgba(255,255,255,.2);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.footer-bottom-accent { font-family: var(--serif); font-style: italic; }

/* ─── WHATSAPP FLOAT ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  background: #25D366;
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
  z-index: 999;
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
}

/* ─── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 80px;
  font-size: 11px;
  color: var(--gray-lt);
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.06);
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--gray-lt); transition: color .2s; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb-sep { color: var(--beige-dark); font-size: 10px; }

/* ─── BOTÕES GLOBAIS ───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 14px 36px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 400;
  border: 1px solid var(--black);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary:hover { background: var(--red); border-color: var(--red); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--black);
  padding: 14px 36px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 400;
  border: 1px solid var(--black);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 4px;
  cursor: pointer;
  transition: gap .3s, border-color .3s;
  border-top: none; border-left: none; border-right: none;
}
.btn-ghost:hover { gap: 16px; border-color: var(--white); }

/* ─── ANIMAÇÕES ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }

/* ─── PRODUTO (página individual) ─────────────────────────── */
.product-ph-sym {
  font-family: var(--serif);
  font-size: 36px;
  color: rgba(0,0,0,.1);
}

/* ─── RESPONSIVO — TABLET ──────────────────────────────────── */
@media (max-width: 1024px) {
  .navbar { padding: 0 24px; }

  .hero-content { padding: 0 40px 56px; grid-template-columns: 1fr; }
  .hero-aside { display: none; }

  .section-cats { grid-template-columns: repeat(2, 1fr); }
  .cat-item { aspect-ratio: 4/3; }

  .section-header { padding: 56px 40px 36px; }
  .products-section { padding: 0 40px 64px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .editorial-duo { grid-template-columns: 1fr; }

  .perks { grid-template-columns: 1fr; }
  .perk { border-right: none; border-bottom: 1px solid rgba(0,0,0,.07); }
  .perk:last-child { border-bottom: none; }

  .footer { padding: 56px 40px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }

  .breadcrumb { padding: 14px 40px; }
}

/* ─── RESPONSIVO — MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .navbar { padding: 0 16px; grid-template-columns: auto 1fr auto; }
  .navbar-logo { grid-column: 1; font-size: 18px; }
  .nav-links { display: none; }
  .nav-actions { grid-column: 3; gap: 10px; }
  .nav-hamburger { display: flex; }

  /* Botão admin no mobile: só ícone, sem texto */
  .nav-admin-btn { padding: 6px 8px; gap: 0; }
  .nav-admin-btn svg { width: 16px; height: 16px; }
  .nav-admin-btn .nav-admin-txt { display: none; }

  /* Esconde busca no mobile para não lotar a barra */
  .nav-search-btn { display: none; }

  .hero { height: calc(100svh - var(--nav-h) - 34px); min-height: 480px; }
  .hero-content { padding: 0 24px 44px; grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .hero-aside { display: none; }

  .marquee-strip { padding: 12px 0; }

  .section-cats { grid-template-columns: repeat(2, 1fr); }
  .cat-item { aspect-ratio: 3/4; }

  .section-header { padding: 48px 20px 28px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .products-section { padding: 0 20px 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }

  .ed-panel-content { padding: 32px 28px; }

  .perk { padding: 36px 24px; }

  .footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .breadcrumb { padding: 12px 20px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 46px; height: 46px; }
}

/* ═══════════════════════════════════════════════════════════
   ANIMAÇÕES GLOBAIS
═══════════════════════════════════════════════════════════ */

/* ── Transição de página ─────────────────────────────────── */
body {
  transition: opacity 0.32s ease;
}
body.page-entering {
  opacity: 0;
}
body.page-entered {
  opacity: 1;
}
body.page-leaving {
  opacity: 0;
  pointer-events: none;
}

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2),
              transform 0.65s cubic-bezier(.22,.68,0,1.2);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar ao scrollar ──────────────────────────────────── */
.navbar {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.navbar-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

/* ── Imagens com reveal ──────────────────────────────────── */
.img-reveal {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.img-revealed {
  opacity: 1;
  transform: scale(1);
}

/* ── Product card hover lift ─────────────────────────────── */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.09);
}

/* ── Botão hover com ripple suave ────────────────────────── */
.btn-cart,
.btn-whatsapp,
.btn-secondary {
  transition: background 0.25s ease, transform 0.18s ease, box-shadow 0.25s ease;
}
.btn-cart:hover,
.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.13);
}

/* ── Links do carrinho e cat hover ──────────────────────────*/
.cat-item {
  transition: transform 0.4s ease;
}
.cat-item:hover {
  transform: scale(1.015);
}

/* ── Fade up keyframe (mantém compatibilidade) ───────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── WhatsApp float pulse ────────────────────────────────── */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.35); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.6); }
}
.whatsapp-float {
  animation: waPulse 2.5s ease-in-out infinite;
}

/* ── Reduce motion: respeita preferência do usuário ─────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    
    transition-duration: 0.01ms !important;
  }
  body, body.page-entering, body.page-leaving { opacity: 1 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 100s !important; }
}
