/* ============================================================
   LAIANA MATEUS STORE BOUTIQUE — CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --gold:       #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark:  #9A7A30;
  --cream:      #FAF7F2;
  --beige:      #F0E8D8;
  --dark:       #1A1410;
  --dark2:      #2C2416;
  --text:       #3D2E1E;
  --text-light: #7A6A58;
  --white:      #FFFFFF;
  --bar-bg:     #1A1410;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: #000;
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--gold);
  color: #000;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 0;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.top-bar-item i { color: #000; font-size: .8rem; }
.top-bar-item strong { color: #000; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  border-bottom: 1px solid #1c1c1c;
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.7); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  height: 90px;
}

/* Logo — esquerda */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}
.logo img { height: 76px; width: auto; }

/* Nav links — centro, estilo texto elegante */
.nav-links {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.nav-links > li > a {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #a89268;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 20px; right: 20px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-top: 2px solid var(--gold);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s;
  transform: translateX(-50%) translateY(6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a7a62;
  transition: color .15s, background .15s;
}
.dropdown-menu a:hover { color: var(--gold); background: #111; }

/* Nav icons — direita */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-icons a {
  font-size: 1.05rem;
  color: #8a7a62;
  transition: color .2s;
  position: relative;
  padding: 10px 12px;
  display: flex;
  align-items: center;
}
.nav-icons a:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--gold);
  color: #000;
  font-size: .5rem;
  font-weight: 700;
  width: 14px; height: 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-left: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #8a7a62;
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: #000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 36px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.hero-inner--full { justify-content: center; text-align: center; }
.hero-inner--full .hero-text { max-width: 680px; }
.hero-logo { height: 360px; width: auto; margin: 0 auto 16px; display: block; }
.hero-text { flex: 1; max-width: 560px; }
.hero-eyebrow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: .55;
  flex-shrink: 0;
}
.hero-inner--full .hero-eyebrow { justify-content: center; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #f5ede0;
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem;
  color: #a89880;
  line-height: 1.85;
  margin: 0 auto 44px;
  max-width: 460px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;
  transition: background .2s, color .2s;
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #f0e8d8;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 0;
  border: 1px solid #3a3028;
  transition: all .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: 0;
  border: 1px solid var(--gold);
  transition: all .2s;
}
.btn-gold:hover { background: var(--gold); color: #000; }

.hero-image {
  flex: 1;
  max-width: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.15));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.hero-badge {
  position: absolute;
  bottom: 20px; left: 0;
  background: var(--white);
  border: 1px solid #e8ddd0;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
}
.hero-badge-icon { font-size: 1.4rem; color: var(--gold); }
.hero-badge-text strong { display: block; font-weight: 700; color: var(--dark); }
.hero-badge-text span  { color: var(--text-light); font-size: .72rem; }

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar {
  background: #0a0a0a;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  padding: 16px 0;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  border-right: 1px solid #1c1c1c;
  flex: 1;
  min-width: 150px;
  justify-content: center;
}
.feature-item:last-child { border-right: none; }
.feature-item i { font-size: 1rem; color: var(--gold); flex-shrink: 0; }
.feature-item-text { font-size: .68rem; }
.feature-item-text strong { display: block; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #c9b98a; }
.feature-item-text span  { color: #4a3a2a; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 36px; }

.section-header { text-align: center; margin-bottom: 44px; }
.section-eyebrow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .5;
  flex-shrink: 0;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: #f0e4d0;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc { font-size: .9rem; color: var(--text-light); max-width: 460px; margin: 0 auto; line-height: 1.75; }
.section-divider {
  width: 36px; height: 1px;
  background: var(--gold);
  margin: 14px auto 0;
  opacity: .6;
}

/* ============================================================
   BARRA DE CATEGORIAS
   ============================================================ */
.cat-bar {
  background: #0a0a0a;
  border-bottom: 1px solid #1c1c1c;
  padding: 0;
}
.cat-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-pill {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4a3a2a;
  padding: 14px 20px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  flex-shrink: 0;
}
.cat-pill:hover, .cat-pill.ativo { color: var(--gold); border-bottom-color: var(--gold); }

/* ============================================================
   COLEÇÕES
   ============================================================ */
.colecoes { background: var(--cream); }

.colecoes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.colecao-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: #e8ddd0;
}
.colecao-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.colecao-card:hover img { transform: scale(1.06); }
.colecao-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,.75) 0%, rgba(20,14,8,.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  transition: background .3s;
}
.colecao-card:hover .colecao-overlay {
  background: linear-gradient(to top, rgba(20,14,8,.85) 0%, rgba(20,14,8,.2) 60%, transparent 100%);
}
.colecao-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.colecao-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.btn-colecao {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-colecao:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* Placeholder de imagem */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8ddd0, #d4c4a8);
  color: var(--text-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.img-placeholder i { font-size: 2rem; color: var(--gold); }

/* ============================================================
   PRODUTOS EM DESTAQUE
   ============================================================ */
.produtos { background: #000; }

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.produto-card {
  position: relative;
  background: #0d0d0d;
  border: 1px solid #1c1c1c;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  cursor: pointer;
}
.produto-card:hover {
  box-shadow: 0 8px 28px rgba(201,168,76,.12);
  transform: translateY(-3px);
  border-color: #3a3020;
}
.produto-img {
  position: relative;
  aspect-ratio: 4/5;
  background: #111;
  overflow: hidden;
}
.produto-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.produto-card:hover .produto-img img { transform: scale(1.06); }

.produto-wish {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: #ccc;
  cursor: pointer;
  transition: all .2s;
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.produto-wish:hover, .produto-wish.ativo { color: #e05050; }
.produto-wish.ativo i::before { content: '\f004'; }

.produto-badge-novo {
  position: absolute;
  top: 12px; left: 12px;
  background: #000;
  color: var(--gold);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.produto-info { padding: 16px 16px 20px; }
.produto-nome {
  font-size: .8rem;
  font-weight: 700;
  color: #d4c4a8;
  margin-bottom: 4px;
  line-height: 1.45;
  letter-spacing: .02em;
}
.produto-sub {
  font-size: .65rem;
  color: #4a3a2a;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.produto-preco {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
}
.produto-preco-old {
  font-size: .72rem;
  color: #bbb;
  text-decoration: line-through;
  margin-right: 5px;
}

.produtos-cta { text-align: center; }

/* ============================================================
   SOBRE / FEITO À MÃO
   ============================================================ */
.sobre { background: #050505; overflow: hidden; border-top: 1px solid #1c1c1c; }
.sobre-inner {
  display: flex;
  align-items: center;
  gap: 72px;
}
.sobre-inner--centered {
  justify-content: center;
}
.sobre-inner--centered .sobre-text {
  text-align: center;
  max-width: 720px;
  flex: none;
  margin: 0 auto;
}
.sobre-inner--centered .sobre-desc {
  max-width: 600px;
  margin: 0 auto 36px;
}
.sobre-inner--centered .sobre-stats {
  justify-content: center;
}
.sobre-image {
  flex: 1;
  max-width: 480px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #2c2416;
  flex-shrink: 0;
}
.sobre-image img { width: 100%; height: 100%; object-fit: cover; }
.sobre-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 12px;
  opacity: .3;
}
.sobre-text { flex: 1; }
.sobre .section-eyebrow { color: var(--gold-light); }
.sobre-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 700;
  color: #f5ede0;
  line-height: 1.22;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.sobre-title em { font-style: italic; color: var(--gold); }
.sobre-desc {
  font-size: 1rem;
  color: #a89880;
  line-height: 1.85;
  margin-bottom: 32px;
}
.sobre-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
}
.sobre-stat { }
.sobre-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.sobre-stat-lbl {
  font-size: .72rem;
  color: #8a7a68;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================================================
   BANNER INSTAGRAM
   ============================================================ */
.instagram { background: var(--cream); padding: 60px 0; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 40px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #e8ddd0;
}
.insta-item img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.insta-item:hover img { transform:scale(1.08); }
.insta-overlay {
  position:absolute;inset:0;
  background:rgba(201,168,76,.7);
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity .3s;
  font-size:1.6rem;color:var(--white);
}
.insta-item:hover .insta-overlay { opacity:1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark2);
  color: #a89880;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img { height: 90px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; color: #7a6a58; max-width: 260px; }
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: #7a6a58;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .85rem;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.social-icons { display: flex; gap: 12px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #a89880;
  font-size: .95rem;
  transition: all .2s;
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.pagamentos { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pagamento-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: .7rem;
  font-weight: 700;
  color: #a89880;
  letter-spacing: .06em;
}

.footer-bottom {
  padding: 18px 24px;
  text-align: center;
  font-size: .75rem;
  color: #4a3a2a;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   MODAL / OVERLAY
   ============================================================ */
.overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s;
  padding: 20px;
}
.overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: 36px;
  position: relative;
  transform: translateY(16px);
  transition: transform .3s;
}
.overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: var(--text-light);
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.modal-sub { font-size: .88rem; color: var(--text-light); margin-bottom: 24px; }
.modal-input {
  width: 100%;
  border: 1px solid #e0d5c5;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: .9rem;
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  margin-bottom: 12px;
  outline: none;
  transition: border-color .2s;
}
.modal-input:focus { border-color: var(--gold); }
.modal-btn {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 6px;
  padding: 13px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.modal-btn:hover { background: var(--gold-dark); color: var(--white); }

/* ============================================================
   MENU MOBILE
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 1500;
  flex-direction: column;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform .3s;
  pointer-events: none;
}
.mobile-menu.active { transform: translateX(0); pointer-events: auto; }
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-links a {
  padding: 16px 0;
  border-bottom: 1px solid #e8ddd0;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   ANIMAÇÕES AO SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s, transform .6s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity:0; transform:translateX(-30px); transition: opacity .6s, transform .6s; }
.reveal-right { opacity:0; transform:translateX(30px);  transition: opacity .6s, transform .6s; }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform:translateX(0); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 100px; right: 28px;
  background: var(--dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3000;
  transform: translateY(20px);
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .produtos-grid { grid-template-columns: repeat(3, 1fr); }
  .colecoes-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .sobre-inner { flex-direction: column; gap: 40px; }
  .sobre-image { max-width: 100%; }
  .logo img { height: 56px; }
  .nav-inner { height: 70px; padding: 0 20px; }
  .cat-bar-inner { padding: 0 8px; }
  .nav-links, .nav-icons { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-image { max-width: 360px; }
  .top-bar-inner { gap: 16px; }
}

@media (max-width: 640px) {
  section { padding: 48px 0; }
  .hero-inner { padding: 36px 20px 56px; }
  .hero-logo { height: 220px; }
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .colecoes-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-item { padding: 8px 14px; }
  .top-bar-item:nth-child(3),
  .top-bar-item:nth-child(4) { display: none; }
  .sobre-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .produtos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-title { font-size: 1.9rem; }
}
