/* =====================================================
   AMORA — Moda Feminina
   Paleta: rosa clarinho + vinho/bordô + dourado
   Tema claro, editorial de moda, feminino sofisticado
   ===================================================== */

:root {
  --rose:     #fbeef0;
  --rose-2:   #f6e0e4;
  --rose-3:   #f2d3d9;
  --cream:    #fdf8f5;
  --wine:     #6e1a2e;
  --wine-2:   #591525;
  --wine-lt:  #8a3348;
  --gold:     #c29a4e;
  --gold-lt:  #d9b877;
  --ink:      #3a2229;
  --ink-soft: #8a6d74;
  --line:     rgba(110, 26, 46, .14);
  --line-soft:rgba(110, 26, 46, .08);
  --shadow:   0 28px 60px -32px rgba(110, 26, 46, .4);
  --shadow-sm:0 16px 36px -22px rgba(110, 26, 46, .35);

  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--rose); color: var(--ink); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 26px; }

/* ---------- tipografia ---------- */
.eyebrow { font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: .3em; font-size: .74rem; color: var(--wine-lt); margin-bottom: 16px; }
.eyebrow--center { text-align: center; }
.section-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: .2px; color: var(--wine); }
.section-title em { font-style: italic; font-weight: 500; color: var(--wine-lt); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto clamp(34px, 4.5vw, 54px); }
.section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; text-align: left; max-width: none; }

/* ---------- botões ---------- */
.btn { --pad-y: 14px; --pad-x: 30px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: var(--pad-y) var(--pad-x); font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; border-radius: 2px; border: 1px solid transparent; cursor: pointer; transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s; white-space: nowrap; }
.btn--lg { --pad-y: 17px; --pad-x: 36px; font-size: .84rem; }
.btn--wine { background: var(--wine); color: var(--cream); }
.btn--wine:hover { background: var(--wine-2); transform: translateY(-3px); box-shadow: 0 16px 30px -14px rgba(110,26,46,.6); }
.btn--outline { background: transparent; color: var(--wine); border-color: var(--line); }
.btn--outline:hover { border-color: var(--wine); transform: translateY(-3px); }
.btn--gold { background: linear-gradient(180deg, var(--gold-lt), var(--gold)); color: #34240a; letter-spacing: .1em; }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -12px rgba(194,154,78,.7); }

/* ---------- topbar ---------- */
.topbar { background: var(--wine); color: var(--rose-2); overflow: hidden; white-space: nowrap; font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; }
.topbar__track { display: inline-flex; gap: 18px; align-items: center; padding: 9px 0; animation: slide 28s linear infinite; }
.topbar__track b { color: var(--gold-lt); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(251,238,240,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft); transition: box-shadow .4s, background .4s; }
.header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 16px 0; }
.logo { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; letter-spacing: 4px; color: var(--wine); text-align: center; display: inline-flex; flex-direction: column; align-items: center; line-height: 1; justify-self: center; }
.logo i { font-family: var(--font-body); font-style: normal; font-weight: 400; font-size: .58rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-top: 5px; }
.logo--light { color: var(--rose); }
.logo--light i { color: var(--gold-lt); }

.nav { display: flex; gap: 26px; justify-self: start; grid-column: 1; }
.nav a { font-weight: 500; text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: var(--ink); position: relative; padding: 4px 0; transition: color .25s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--wine); transition: width .3s var(--ease); }
.nav a:hover { color: var(--wine); }
.nav a:hover::after { width: 100%; }

.header__actions { justify-self: end; grid-column: 3; display: flex; align-items: center; gap: 14px; }
.bag { position: relative; background: transparent; border: none; color: var(--wine); cursor: pointer; padding: 6px; display: grid; place-items: center; transition: transform .25s; }
.bag:hover { transform: scale(1.08); }
.bag__count { position: absolute; top: -2px; right: -4px; background: var(--gold); color: #34240a; font-family: var(--font-body); font-size: .66rem; font-weight: 600; min-width: 17px; height: 17px; border-radius: 100px; display: grid; place-items: center; padding: 0 4px; transition: transform .3s var(--ease); }
.bag__count.bump { transform: scale(1.4); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line); border-radius: 4px; cursor: pointer; justify-self: start; grid-column: 1; }
.nav-toggle span { width: 20px; height: 1.5px; background: var(--wine); transition: .3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { padding: clamp(30px, 5vw, 60px) 0 clamp(40px, 6vw, 80px); }
.hero__inner { max-width: var(--container); margin: 0 auto; padding: 0 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(3rem, 7.5vw, 6rem); line-height: 1; letter-spacing: .5px; color: var(--wine); margin-bottom: 24px; }
.hero__title em { font-style: italic; font-weight: 500; color: var(--wine-lt); }
.hero__lead { color: var(--ink-soft); font-size: 1.14rem; max-width: 44ch; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero__note { font-size: .86rem; color: var(--wine-lt); letter-spacing: .05em; }
.hero__media { position: relative; }
.hero__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow); }
.hero__tag { position: absolute; top: 24px; left: -18px; background: var(--wine); color: var(--cream); font-family: var(--font-display); font-style: italic; font-size: 1.05rem; line-height: 1.05; text-align: center; padding: 14px 20px; border-radius: 50%; width: 92px; height: 92px; display: grid; place-content: center; box-shadow: var(--shadow-sm); }
.hero__deco { position: absolute; bottom: -18px; right: -12px; font-size: 3rem; filter: drop-shadow(0 8px 14px rgba(110,26,46,.3)); }

/* ---------- marquee ---------- */
.marquee { background: var(--wine); color: var(--rose); overflow: hidden; padding: 15px 0; }
.marquee__track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; animation: slide 30s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; letter-spacing: .5px; }
.marquee__track i { color: var(--gold-lt); font-style: normal; font-size: .9rem; }

/* ---------- categorias ---------- */
.cats { padding: clamp(54px, 8vw, 90px) 0; }
.cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat { position: relative; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; padding: 24px; }
.cat::before { content: ""; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; transition: transform .8s var(--ease); }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(110,26,46,.05) 40%, rgba(110,26,46,.72)); }
.cat:hover::before { transform: scale(1.08); }
.cat span { position: relative; z-index: 1; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--cream); text-align: center; }

/* ---------- loja / produtos ---------- */
.shop { padding: clamp(50px, 7vw, 90px) 0; }
.shop__all { font-weight: 500; text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: var(--wine); border-bottom: 1px solid var(--wine); padding-bottom: 3px; transition: color .25s, border-color .25s; }
.shop__all:hover { color: var(--gold); border-color: var(--gold); }
.shop__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 22px; }
.product { background: transparent; }
.product__img { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 4px; background: var(--rose-2); }
.product__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product:hover .product__img img { transform: scale(1.06); }
.product__badge { position: absolute; top: 12px; left: 12px; background: var(--cream); color: var(--wine); font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; padding: 5px 11px; border-radius: 100px; }
.product__badge--sale { background: var(--wine); color: var(--cream); }
.product__add { position: absolute; left: 12px; right: 12px; bottom: 12px; background: rgba(253,248,245,.95); color: var(--wine); border: none; border-radius: 3px; padding: 12px; font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; cursor: pointer; opacity: 0; transform: translateY(10px); transition: opacity .35s var(--ease), transform .35s var(--ease), background .25s, color .25s; }
.product__add:hover { background: var(--wine); color: var(--cream); }
.product:hover .product__add { opacity: 1; transform: none; }
.product__body { padding: 16px 4px 0; text-align: center; }
.product__body h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.16rem; color: var(--ink); margin-bottom: 6px; }
.product__price { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.product__price span { font-weight: 600; color: var(--wine); font-size: 1.05rem; }
.product__price small { color: var(--ink-soft); font-size: .8rem; }
.product__price del { color: var(--ink-soft); font-size: .85rem; }

/* ---------- lookbook ---------- */
.lookbook { padding: clamp(54px, 8vw, 96px) 0; }
.lookbook__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.lookbook__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow); }
.lookbook__copy .section-title { text-align: left; }
.lookbook__copy p { color: var(--ink-soft); font-size: 1.08rem; margin: 18px 0 26px; max-width: 44ch; }

/* ---------- diferenciais ---------- */
.perks { padding: clamp(46px, 6vw, 76px) 0; background: var(--cream); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.perks__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.perk { text-align: center; padding: 10px; }
.perk__ico { font-size: 1.9rem; display: block; margin-bottom: 12px; }
.perk h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.16rem; color: var(--wine); margin-bottom: 6px; }
.perk p { color: var(--ink-soft); font-size: .92rem; }

/* ---------- a marca ---------- */
.brand { padding: clamp(56px, 8vw, 100px) 0; }
.brand__inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.brand__media { position: relative; }
.brand__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow); }
.brand__stamp { position: absolute; right: -18px; bottom: 28px; width: 108px; height: 108px; border-radius: 50%; background: var(--gold); color: #34240a; display: grid; place-content: center; text-align: center; box-shadow: var(--shadow-sm); transform: rotate(-6deg); }
.brand__stamp span { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .16em; font-size: .66rem; }
.brand__stamp strong { font-family: var(--font-display); font-weight: 600; font-size: 2rem; line-height: 1; }
.brand__copy .section-title { text-align: left; }
.brand__copy p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 16px; }
.brand__signs { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px 22px; }
.brand__signs span { color: var(--wine-lt); font-weight: 500; letter-spacing: .04em; }

/* ---------- newsletter ---------- */
.news { padding: clamp(20px, 4vw, 40px) 0 clamp(56px, 8vw, 90px); }
.news__inner { background: var(--wine); border-radius: 8px; padding: clamp(38px, 5vw, 64px); text-align: center; color: var(--rose); position: relative; overflow: hidden; }
.news__inner::before, .news__inner::after { content: "🫐"; position: absolute; font-size: 8rem; opacity: .1; }
.news__inner::before { top: -30px; left: -20px; }
.news__inner::after { bottom: -40px; right: -10px; }
.news__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 4vw, 2.8rem); position: relative; z-index: 1; }
.news__title em { font-style: italic; color: var(--gold-lt); }
.news__copy p { color: rgba(251,238,240,.82); margin-top: 12px; position: relative; z-index: 1; }
.news__form { display: flex; gap: 10px; max-width: 480px; margin: 26px auto 0; position: relative; z-index: 1; }
.news__form input { flex: 1; padding: 15px 20px; border: 1px solid rgba(251,238,240,.3); background: rgba(251,238,240,.08); border-radius: 3px; color: var(--cream); font-family: var(--font-body); font-size: .96rem; outline: none; }
.news__form input::placeholder { color: rgba(251,238,240,.55); }
.news__form input:focus { border-color: var(--gold-lt); }
.news__ok { margin-top: 18px; color: var(--gold-lt); font-weight: 500; position: relative; z-index: 1; }

/* ---------- footer ---------- */
.footer { background: var(--wine-2); color: var(--rose-2); padding-top: 58px; }
.footer__inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; padding-bottom: 42px; }
.footer .logo { align-items: flex-start; text-align: left; justify-self: start; }
.footer__brand p { margin: 16px 0 20px; max-width: 34ch; color: rgba(246,224,228,.8); }
.footer__social { display: flex; gap: 18px; }
.footer__social a { color: var(--gold-lt); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; transition: color .25s; }
.footer__social a:hover { color: #fff; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols h5 { font-family: var(--font-display); font-weight: 500; font-size: 1rem; color: var(--gold-lt); margin-bottom: 14px; }
.footer__cols a, .footer__cols p { display: block; font-size: .92rem; margin-bottom: 8px; color: rgba(246,224,228,.82); transition: color .25s; }
.footer__cols a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(251,238,240,.12); padding: 20px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer__bottom span { color: rgba(246,224,228,.6); font-size: .82rem; }
.footer__credit strong { color: var(--gold-lt); }

/* ---------- whatsapp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: #25d366; box-shadow: 0 12px 30px -8px rgba(37,211,102,.7); animation: pulse 2.6s ease-in-out infinite; transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse { 0%,100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 14px rgba(37,211,102,0); } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =====================================================
   RESPONSIVO
   ===================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 440px; margin: 0 auto; width: 100%; order: -1; }
  .cats__grid { grid-template-columns: repeat(2, 1fr); }
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook__inner { grid-template-columns: 1fr; gap: 36px; }
  .lookbook__img { max-width: 520px; }
  .perks__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .brand__inner { grid-template-columns: 1fr; gap: 44px; }
  .brand__media { max-width: 440px; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .header__inner { grid-template-columns: auto 1fr auto; }
  .nav { position: fixed; top: 0; right: 0; left: auto; height: 100vh; height: 100dvh; overflow-y: auto; width: min(82vw, 320px); flex-direction: column; gap: 4px; padding: 96px 30px 40px; background: var(--cream); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .4s var(--ease); z-index: 90; }
  .nav.is-open { transform: none; box-shadow: 0 0 0 100vmax rgba(0,0,0,.5), -30px 0 60px -20px rgba(110,26,46,.3); }
  .nav a { font-size: 1.1rem; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-toggle { display: flex; }
  .logo { justify-self: center; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .container, .hero__inner { padding: 0 18px; }
  .cats__grid, .shop__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .perks__grid { grid-template-columns: 1fr; gap: 22px; }
  .news__form { flex-direction: column; }
  .product__add { opacity: 1; transform: none; position: static; margin-top: 10px; }
  .hero__actions .btn { flex: 1 1 auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* menu mobile: botao X acima do painel */
.nav-toggle { position: relative; z-index: 95; }
