/* ============================================================
   LIORIT — Página de Vendas
   Identidade: Cinzel · Cormorant Garamond · Jost
   Paleta: Teal #2A8C8A + Rosa Blush #D070A0
   ============================================================ */

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

:root {
  /* Paleta */
  --teal: #2A8C8A;
  --teal-dark: #1F6968;
  --teal-deep: #14403F;
  --rose: #D070A0;
  --rose-soft: #E9B8CE;
  --rose-pale: #F5DCE6;
  --lavender: #E5D4E5;
  --mint: #CFE8E2;
  --bg: #FBF7F2;
  --bg-warm: #F4ECE1;
  --ink: #14403F;
  --ink-muted: #5A6F6E;
  --line: rgba(20,64,63,.12);

  /* Tipografia */
  --font-display: 'Cinzel', 'Trajan Pro', serif;
  --font-editorial: 'Cormorant Garamond', 'Garamond', serif;
  --font-body: 'Jost', 'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1320px;
  --nav-h: 84px;

  /* Animação */
  --ease: cubic-bezier(.22,.7,.2,1);
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--teal);
}

.italic-line {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--ghost:hover { background: var(--teal); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: #fff; color: var(--teal); border-color: #fff; }
.btn--rose { background: #2A8C8A; color: #fff; }
.btn--rose:hover { background: #1F6968; transform: translateY(-1px); }

.section {
  padding: 120px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.section--full { max-width: none; padding: 0; }

/* ============================================================
   FUNDO POR SEÇÃO — cada seção com sua própria paleta
   ============================================================ */
#conceito {
  background: #F9EFEC; /* blush pálido */
  max-width: none;
  width: 100%;
  margin: 0;
}
#conceito > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
#marcas {
  background: #EEF6F2; /* mint pálido */
  max-width: none;
  width: 100%;
  margin: 0;
}
#marcas > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section-head { text-align: center; margin-bottom: 72px; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  margin-bottom: 16px;
}
.section-head .sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--rose);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   1. HEADER — estilo Paola Davinci (white minimalist)
   ============================================================ */

/* Top thin announcement bar */
.pd-topbar{
  position:fixed;top:0;left:0;right:0;
  background:#fff;
  border-bottom:1px solid var(--line);
  z-index:101;
  height:36px;
  font-family:var(--font-body);
}
.pd-topbar__inner{
  max-width:none;
  height:100%;
  padding:0 32px;
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;
  font-size:11px;
  letter-spacing:.04em;
  color:var(--ink);
}
.pd-topbar__left{
  flex:1;min-width:0;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  color:var(--ink-muted);
}
.pd-topbar__links{
  display:flex;align-items:center;
  gap:0;list-style:none;padding:0;margin:0;
  flex-shrink:0;
}
.pd-topbar__links li{display:flex;align-items:center}
.pd-topbar__links li + li::before{
  content:'';
  display:inline-block;
  width:1px;height:11px;
  background:var(--line);
  margin:0 18px;
}
.pd-topbar__links a{
  color:var(--ink);
  text-decoration:none;
  letter-spacing:.04em;
  transition:color .2s;
}
.pd-topbar__links a:hover{color:var(--rose)}

/* Main header */
.pd-hdr{
  position:fixed;top:36px;left:0;right:0;
  background:#fff;
  border-bottom:1px solid var(--line);
  z-index:100;
  height:84px;
  font-family:var(--font-body);
  transition:box-shadow .3s var(--ease);
}
.pd-hdr.scrolled{box-shadow:0 4px 18px rgba(20,64,63,.06)}
.pd-hdr__inner{
  height:100%;
  padding:0 32px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
}

/* Menu button (hamburger + word) */
.pd-hdr__menu{
  display:inline-flex;align-items:center;
  gap:12px;
  background:none;border:none;
  padding:8px 0;
  color:var(--ink);
  cursor:pointer;
  font-family:inherit;
  justify-self:start;
}
.pd-burger{
  display:inline-flex;flex-direction:column;justify-content:center;
  gap:5px;
  width:22px;
}
.pd-burger span{
  display:block;
  width:22px;height:1.5px;
  background:var(--ink);
  transition:transform .3s var(--ease);
}
.pd-hdr__menu-label{
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--ink);
}
.pd-hdr__menu:hover .pd-burger span{background:var(--rose)}
.pd-hdr__menu:hover .pd-hdr__menu-label{color:var(--rose)}

/* Centered logo */
.pd-hdr__logo{
  font-family:var(--font-display);
  font-weight:400;
  font-size:32px;
  letter-spacing:.42em;
  text-indent:.42em;
  color:var(--ink);
  text-decoration:none;
  white-space:nowrap;
  justify-self:center;
}

/* Right icons */
.pd-hdr__icons{
  display:inline-flex;align-items:center;
  gap:24px;
  justify-self:end;
}
.pd-icon{
  position:relative;
  width:36px;height:36px;
  display:inline-flex;align-items:center;justify-content:center;
  background:none;border:none;cursor:pointer;
  color:var(--ink);
  transition:color .2s;
}
.pd-icon:hover{color:var(--rose)}
.pd-icon__badge{
  position:absolute;
  top:2px;right:0;
  background:var(--rose);
  color:#fff;
  font-family:var(--font-body);
  font-size:9px;font-weight:500;
  border-radius:999px;
  padding:1px 5px;
  line-height:1.2;
  letter-spacing:0;
}

/* Search panel (slide down, branco) */
.hv-search{
  position:fixed;top:0;left:0;right:0;
  background:#fff;z-index:200;
  padding:5rem 2rem 4rem;
  transform:translateY(-100%);
  transition:transform .5s cubic-bezier(.65,.05,.36,1);
  box-shadow:0 8px 30px rgba(20,64,63,.08);
  border-bottom:1px solid var(--line);
}
.hv-search.open{transform:translateY(0)}
.ov-close{
  position:absolute;top:18px;right:24px;
  background:none;border:1px solid var(--line);
  color:var(--ink);cursor:pointer;
  padding:10px 20px;
  font-family:var(--font-body);
  font-size:11px;letter-spacing:.2em;text-transform:uppercase;
  transition:all .2s;display:flex;align-items:center;gap:10px;
}
.ov-close:hover{border-color:var(--ink);background:var(--bg)}
.ov-close svg{transition:transform .3s ease}
.ov-close:hover svg{transform:rotate(90deg)}
.ov-close--dark{
  border-color:var(--line);color:var(--ink);
}
.hv-search-inner{max-width:880px;margin:0 auto;text-align:center}
.hv-search-title{
  font-family:var(--font-display);
  font-size:clamp(24px,3vw,40px);font-weight:400;
  color:var(--ink);margin:0 0 2rem;line-height:1.2;letter-spacing:.08em;
}
.hv-search-form{
  display:flex;align-items:stretch;gap:0;
  border:1px solid var(--line);background:#fff;
}
.hv-search-input{
  flex:1;border:none;background:transparent;
  padding:0 1.25rem;font-size:16px;font-family:inherit;
  color:var(--ink);outline:none;height:54px;min-width:0;
}
.hv-search-input::placeholder{color:var(--ink-muted);font-style:italic}
.hv-search-submit{
  background:var(--ink);color:#fff;border:none;
  padding:0 2.5rem;font-size:11px;font-weight:400;
  text-transform:uppercase;letter-spacing:.28em;
  cursor:pointer;font-family:inherit;transition:background .2s;
}
.hv-search-submit:hover{background:var(--teal-deep)}

/* Menu drawer (estilo Paola Davinci — slide from left) */
.pd-drawer-backdrop{
  position:fixed;inset:0;
  background:rgba(20,64,63,.35);
  z-index:189;
  opacity:0;visibility:hidden;
  transition:opacity .35s ease,visibility .35s;
}
.pd-drawer-backdrop.open{opacity:1;visibility:visible}

.pd-drawer{
  position:fixed;top:0;bottom:0;left:0;
  width:min(420px,92vw);
  background:#fff;
  z-index:190;
  display:flex;flex-direction:column;
  transform:translateX(-100%);
  transition:transform .45s var(--ease);
  box-shadow:0 0 50px rgba(20,64,63,.10);
  font-family:var(--font-body);
}
.pd-drawer.open{transform:translateX(0)}

/* Drawer header */
.pd-drawer__head{
  display:flex;align-items:center;justify-content:space-between;
  padding:0 24px;
  height:64px;
  border-bottom:1px solid var(--line);
  flex-shrink:0;
}
.pd-drawer__title{
  font-family:var(--font-body);
  font-size:11px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--ink-muted);
}
.pd-drawer__close{
  width:36px;height:36px;
  display:inline-flex;align-items:center;justify-content:center;
  background:none;border:none;cursor:pointer;
  color:var(--ink);
  transition:color .2s,transform .3s;
}
.pd-drawer__close:hover{color:var(--rose);transform:rotate(90deg)}

/* List */
.pd-drawer__nav{
  flex:1;overflow-y:auto;
  padding:8px 0;
}
.pd-drawer__list{
  list-style:none;padding:0;margin:0;
}
.pd-drawer__item{
  border-bottom:1px solid var(--line);
}
.pd-drawer__item > a,
.pd-drawer__link{
  display:flex;align-items:center;justify-content:space-between;
  width:100%;
  padding:18px 24px;
  background:none;border:none;
  font-family:var(--font-body);
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--ink);
  text-decoration:none;
  cursor:pointer;
  text-align:left;
  transition:background .2s,color .2s;
}
.pd-drawer__item > a:hover,
.pd-drawer__link:hover{
  background:var(--bg);
  color:var(--rose);
}
.pd-drawer__item--featured > a{
  color:var(--rose);
  font-family:var(--font-editorial);
  font-style:italic;
  font-size:18px;
  letter-spacing:.06em;
  text-transform:none;
  font-weight:500;
}
.pd-drawer__item--featured > a:hover{color:var(--teal)}
.pd-chev{
  flex-shrink:0;
  color:var(--ink-muted);
  transition:transform .3s var(--ease);
}
.pd-drawer__item.open .pd-chev{transform:rotate(90deg)}
.pd-drawer__item > a:hover .pd-chev,
.pd-drawer__link:hover .pd-chev{color:var(--rose)}

/* Sub-list (expandable) */
.pd-drawer__sub{
  list-style:none;padding:0;margin:0;
  max-height:0;overflow:hidden;
  background:var(--bg);
  transition:max-height .4s var(--ease);
}
.pd-drawer__item.open .pd-drawer__sub{max-height:600px}
.pd-drawer__sub li{border-top:1px solid var(--line)}
.pd-drawer__sub li:first-child{border-top:none}
.pd-drawer__sub a{
  display:block;
  padding:14px 24px 14px 40px;
  font-family:var(--font-body);
  font-size:12px;
  letter-spacing:.06em;
  color:var(--ink-muted);
  text-decoration:none;
  transition:color .2s,background .2s;
}
.pd-drawer__sub a:hover{
  color:var(--rose);
  background:rgba(255,255,255,.5);
}

/* Footer */
.pd-drawer__foot{
  padding:20px 24px 24px;
  border-top:1px solid var(--line);
  display:flex;flex-direction:column;
  gap:10px;
  flex-shrink:0;
  background:var(--bg);
}
.pd-drawer__foot-link{
  font-family:var(--font-body);
  font-size:12px;
  letter-spacing:.04em;
  color:var(--ink);
  text-decoration:none;
  transition:color .2s;
}
.pd-drawer__foot-link:hover{color:var(--rose)}
.pd-drawer__foot-meta{
  margin-top:8px;
  font-family:var(--font-editorial);
  font-style:italic;
  font-size:12px;
  color:var(--ink-muted);
}

@media (max-width:1024px){
  /* Header duplo em mobile — topbar visível + header */
  .pd-topbar{
    display:block; height:32px;
    background:#fff; color:var(--ink);
    border-bottom:1px solid var(--line);
  }
  .pd-topbar__inner{padding:0 14px}
  .pd-topbar__left{
    flex:1; text-align:center; color:var(--ink);
    font-size:10px; letter-spacing:.18em;
    text-transform:uppercase; opacity:.92;
  }
  .pd-topbar__links{display:none}
  .pd-hdr{top:32px;height:60px}
  .pd-hdr__inner{padding:0 16px;gap:8px}
  .pd-hdr__menu-label{display:none}
  .pd-hdr__logo{font-size:22px;letter-spacing:.32em;text-indent:.32em}
  .pd-hdr__icons{gap:8px}
  .pd-icon{width:34px;height:34px}
}
@media (max-width:600px){
  .pd-icon[aria-label="Meus Favoritos"]{display:none}
}

/* ============================================================
   2. HERO — full-width image (mesmo estilo do home.html)
   ============================================================ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  margin-top: 120px; /* compensa pd-topbar (36px) + pd-hdr (84px) */
  overflow: hidden;
  background: #000;
}
@media (max-width:1024px){
  .hero{margin-top:64px}
}
.hero-carousel{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.hero-img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
  filter:brightness(.45) saturate(.55);
}
.hero-carousel .hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.06);
  transition:opacity 1.6s ease-in-out, transform 7s ease-out;
  will-change:opacity,transform;
}
.hero-carousel .hero-slide.is-active{
  opacity:1;
  transform:scale(1);
}
.hero::after{
  content:"";position:absolute;inset:0;
  background:radial-gradient(ellipse at center,rgba(0,0,0,.05) 0%,rgba(0,0,0,.18) 70%,rgba(0,0,0,.28) 100%);
  pointer-events:none;
}
.hero-copy{
  position:absolute;inset:0;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;
  padding:0 8rem;
  z-index:2;
}
.hero-over{
  font-family:var(--font-body);
  font-size:11px;text-transform:uppercase;letter-spacing:.32em;
  color:rgba(255,255,255,.65);
  margin-bottom:1.25rem;
}
.hero-h1{
  font-family:var(--font-display);
  font-size:clamp(38px,5.4vw,72px);
  font-weight:400;
  line-height:1.1;
  letter-spacing:.08em;
  color:#fff;
  max-width:880px;
  margin:0;
}
.hero-sub{
  font-family:var(--font-editorial);
  font-style:italic;
  font-size:clamp(16px,1.4vw,20px);
  color:rgba(255,255,255,.78);
  line-height:1.6;
  max-width:560px;
  margin-top:1.25rem;
}
.hero .hero__ctas{
  display:flex;gap:14px;flex-wrap:wrap;justify-content:center;
  margin-top:2.25rem;
}
@media (max-width:1024px){
  .hero{height:100vh;min-height:560px}
  .hero-copy{padding:0 1.5rem}
  .hero-img{filter:brightness(.42) saturate(.5)}
}

@keyframes scrollLine {
  0%, 100% { opacity: .3; transform: scaleY(.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   3. BRAND STRIP
   ============================================================ */
.brand-strip {
  background: #ede3d7;
  color: #0A2020;
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}
.brand-strip::before,
.brand-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.brand-strip::before { left: 0; background: linear-gradient(90deg, #ede3d7, transparent); }
.brand-strip::after { right: 0; background: linear-gradient(-90deg, #ede3d7, transparent); }
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite;
  align-items: center;
}
.marquee span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: .26em;
  padding: 0 36px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.marquee span + span::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  margin-right: 36px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   4. CONCEITO (3 pilares)
   ============================================================ */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.concept-card {
  background: #fff;
  padding: 56px 40px;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.concept-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.concept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(20,64,63,.15);
}
.concept-card:hover::before { transform: scaleX(1); }
.concept-card .num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 60px;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .55;
}
.concept-card h3 {
  font-size: 22px;
  letter-spacing: .14em;
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.concept-card p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ============================================================
   5. COLEÇÃO (Baby/Kids/Teen)
   ============================================================ */
.collection-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
/* Espaçamento equilibrado de "A coleção" */
#colecao > .section { padding-top: 72px; padding-bottom: 96px; }
@media (max-width: 1024px) {
  #colecao > .section { padding-top: 56px; padding-bottom: 64px; }
}
@media (max-width: 768px) {
  #colecao > .section { padding-top: 40px; padding-bottom: 48px; }
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.collection-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--rose-soft);
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20,64,63,.75));
}
.collection-card .info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: #fff;
  z-index: 1;
}
.collection-card .age {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 16px;
  color: var(--rose-soft);
  margin-bottom: 4px;
}
.collection-card h3 {
  font-size: 30px;
  letter-spacing: .2em;
  margin-bottom: 8px;
}
.collection-card .cats {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 24px;
  line-height: 1.7;
}
.collection-card .more {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid #fff;
  transition: border-color .2s, color .2s;
}
.collection-card:hover .more { color: var(--rose-soft); border-color: var(--rose-soft); }

/* ============================================================
   6. MARCAS — grid
   ============================================================ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brand-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  background: var(--bg-warm);
  isolation: isolate;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -28px rgba(20,64,63,.32);
}

.brand-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
  z-index: 0;
}
.brand-card:hover .brand-card__bg { transform: scale(1.06); }

.brand-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity .5s var(--ease), background .5s var(--ease);
}

/* Variantes de cor do overlay */
.brand-card--rose   .brand-card__overlay { background: rgba(208, 112, 160, 0.72); }
.brand-card--blue   .brand-card__overlay { background: rgba(42, 140, 138, 0.72); }
.brand-card--green  .brand-card__overlay { background: rgba(95, 158, 138, 0.72); }
.brand-card--purple .brand-card__overlay { background: rgba(140, 110, 168, 0.72); }

/* Hover: revela a imagem */
.brand-card:hover .brand-card__overlay { opacity: 0.45; }

/* Conteúdo */
.brand-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px 28px;
  gap: 10px;
}
.brand-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 18px rgba(0,0,0,.18);
  transition: transform .45s var(--ease);
}
.brand-card__desc {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 15px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.92);
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s var(--ease) .05s, transform .45s var(--ease) .05s;
}
.brand-card__paragraph {
  display: none;
}
.brand-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.7);
  padding-bottom: 4px;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s var(--ease) .1s, transform .45s var(--ease) .1s, gap .25s var(--ease);
}

.brand-card:hover .brand-card__title { transform: translateY(-4px); }
.brand-card:hover .brand-card__desc,
.brand-card:hover .brand-card__cta {
  opacity: 1;
  transform: translateY(0);
}
.brand-card:hover .brand-card__cta { gap: 12px; }

/* Card destaque (feature) — overlay quase desaparece, texto + parágrafo aparecem */
.brand-card--feature .brand-card__paragraph {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.95);
  max-width: 30ch;
  margin: 6px auto 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease) .12s, transform .5s var(--ease) .12s;
}
.brand-card--feature:hover .brand-card__overlay { opacity: 0.18; }
.brand-card--feature:hover .brand-card__paragraph {
  opacity: 1;
  transform: translateY(0);
}
.brand-card--feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(20,64,63,.55), transparent 55%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.brand-card--feature:hover::after { opacity: 1; }

/* ============================================================
   7. A LOJA — pilares + Iguatemi
   ============================================================ */
.store-section {
  background: #EDE3D7; /* champagne/areia mais escuro */
  color: var(--ink);
  padding: 0 32px 120px;
}
.store-section .section-head h2 { color: var(--ink); }
.store-section .section-head .eyebrow { color: var(--teal); }
.store-section .section-head .sub { color: var(--ink-muted); }

.pillars {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 96px;
}
.pillar {
  text-align: center;
  padding: 24px 16px;
  border-top: 1px solid rgba(255,255,255,.16);
  position: relative;
}
.pillar::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--rose);
}
.pillar h3 {
  font-size: 18px;
  letter-spacing: .22em;
  color: #fff;
  margin: 24px 0 12px;
}
.pillar p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.7;
}
.pillar .icon {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 32px;
  color: var(--rose-soft);
  position: relative;
  display: inline-block;
}
.pillar .icon::after {
  content: "";
  position: absolute;
  inset: -10px -14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.4), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(208,112,160,.45), rgba(248,212,224,.2));
  opacity: 0;
  transform: scale(.6);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  z-index: -1;
}
.pillar:hover .icon::after { opacity: 1; transform: scale(1); }
.pillar:hover .icon { color: #fff; }

.location {
  max-width: var(--container);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: rgba(255,255,255,.4);
  padding: 56px;
  border: 1px dashed rgba(20,64,63,.18);
  border-radius: 14px;
}
.location__copy .eyebrow { color: var(--teal); }
.location__copy h3 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: .12em;
  margin: 16px 0;
  color: var(--ink);
}
.location__copy .address {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  color: var(--rose);
  margin-bottom: 24px;
  line-height: 1.6;
}
.location__copy .hours {
  display: grid;
  gap: 6px;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.location__media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--rose-soft);
  overflow: hidden;
  border-radius: 4px;
}
.location__media img,
.location__media iframe { width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }
.location__media .map-link {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--bg);
  color: var(--ink);
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(20,64,63,.15);
  transition: background .25s var(--ease), color .25s var(--ease), gap .25s var(--ease);
}
.location__media .map-link:hover { background: var(--rose); color: #fff; gap: 12px; }

/* ============================================================
   8. CTA FINAL
   ============================================================ */
.cta-final {
  text-align: center;
  background: #fff;
  padding: 140px 32px;
}
.cta-final h2 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.cta-final .accent {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.cta-final p {
  font-family: var(--font-editorial);
  font-size: 22px;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}
.cta-final .ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   9. FOOTER
   ============================================================ */
.footer {
  background: #ede3d7;
  color: #4A5A5A;
  padding: 80px 32px 32px;
  font-size: 13px;
}
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .26em;
  color: #fff;
  margin-bottom: 22px;
}
.footer .brand {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: .42em;
  color: #fff;
  margin-bottom: 14px;
}
.footer .tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--rose-soft);
  font-size: 16px;
  margin-bottom: 22px;
}
.footer ul li { margin-bottom: 8px; line-height: 1.8; }
.footer a { transition: color .2s; }
.footer a:hover { color: var(--rose-soft); }
.footer .social { display: flex; gap: 12px; margin-top: 16px; }
.footer .social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.footer .social a:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.footer__legal {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   REVEAL ON SCROLL — efeito forte vindo de baixo
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(80px) scale(.97);
  filter: blur(6px);
  transition:
    opacity 1.1s cubic-bezier(.16,.84,.3,1),
    transform 1.1s cubic-bezier(.16,.84,.3,1),
    filter 1.1s cubic-bezier(.16,.84,.3,1);
  will-change: opacity, transform, filter;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Itens em grids (concept, collection, brands, pillars) — entrada escalonada */
.concept-grid .reveal,
.collection-grid .reveal,
.brands-grid > * { /* todos os cards de marca já são .reveal via container, mas reforçamos */ }

.concept-grid .reveal:nth-child(1) { transition-delay: 0s; }
.concept-grid .reveal:nth-child(2) { transition-delay: .12s; }
.concept-grid .reveal:nth-child(3) { transition-delay: .24s; }

.collection-grid .reveal:nth-child(1) { transition-delay: 0s; }
.collection-grid .reveal:nth-child(2) { transition-delay: .12s; }
.collection-grid .reveal:nth-child(3) { transition-delay: .24s; }

.pillars .reveal:nth-child(1) { transition-delay: 0s; }
.pillars .reveal:nth-child(2) { transition-delay: .1s; }
.pillars .reveal:nth-child(3) { transition-delay: .2s; }
.pillars .reveal:nth-child(4) { transition-delay: .3s; }

/* Cabeçalhos de seção entram primeiro, com translação mais forte */
.section-head.reveal {
  transform: translateY(100px) scale(.98);
}
.section-head.reveal.in {
  transform: translateY(0) scale(1);
}

/* ============================================================
   BANNER DUO (Baby x Kids) — vindo da liorit.html
   ============================================================ */
.banner-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: none;
  width: calc(100% + 64px);
  margin: 0 -32px 56px;
}
.banner-duo .item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
}
.banner-duo .item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.banner-duo .item:hover img { transform: scale(1.04); }
.banner-duo .item .copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.4));
  padding: 24px;
}
.banner-duo .item .copy h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: .14em;
  color: #fff;
}
.banner-duo .item .copy p {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.banner-duo .item .btn--ghost {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}
.banner-duo .item:hover .btn--ghost {
  background: #fff;
  color: var(--ink);
}

@media (max-width: 1024px) {
  .banner-duo { width: calc(100% + 40px); margin-left: -20px; margin-right: -20px; }
}
@media (max-width: 768px) {
  .banner-duo { grid-template-columns: 1fr; gap: 0; }
  .banner-duo .item { aspect-ratio: 4/5; }
}
@media (max-width: 600px) {
  .banner-duo { width: calc(100% + 36px); margin-left: -18px; margin-right: -18px; }
}

/* ============================================================
   ATELIER — institucional editorial luxo (verde/teal)
   ============================================================ */
.atelier {
  position: relative;
  max-width: var(--container);
  margin: 24px auto 56px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
}
.atelier__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.atelier__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.atelier__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--teal);
}
.atelier__label .dash {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--teal);
}
.atelier__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: .02em;
  color: var(--ink);
  margin: 0;
}
.atelier__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--rose);
}
.atelier__lede {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 52ch;
  margin: 0;
}
.atelier__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.atelier__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(20,64,63,.12);
  border-radius: 0;
  backdrop-filter: none;
  transition: padding-left .25s var(--ease);
}
.atelier__list li:last-child {
  border-bottom: 1px solid rgba(20,64,63,.12);
}
.atelier__list li:hover {
  background: transparent;
  padding-left: 6px;
  transform: none;
}
.atelier__list .num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--rose);
  line-height: 1;
  padding-top: 2px;
  min-width: 36px;
}
.atelier__list h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 6px;
}
.atelier__list li > div p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-muted);
  font-weight: 400;
  margin: 0;
}

/* Mídia direita — placeholders leves, sem card pesado */
.atelier__media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.atelier__placeholder {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(20,64,63,.12);
  overflow: hidden;
  transition: border-color .35s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
}
.atelier__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.atelier__placeholder::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(20,64,63,.55), transparent);
  pointer-events: none;
}
.atelier__placeholder:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -18px rgba(20,64,63,.32);
  border-color: rgba(20,64,63,.22);
}
.atelier__placeholder:hover img { transform: scale(1.04); }

.atelier__placeholder-caption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: .04em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

@media (max-width: 880px) {
  .atelier {
    margin: 16px 0 40px;
  }
  .atelier__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .atelier__list li {
    padding: 18px 0;
    gap: 18px;
  }
  .atelier__list .num { font-size: 20px; min-width: 30px; }
  .atelier__placeholder { aspect-ratio: 16/10; }
}

/* ============================================================
   (LEGADO — mantido caso ainda usado em outras páginas)
   ============================================================ */
.storefront {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 56px auto 72px;
  padding: 56px clamp(28px, 4vw, 64px);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(248,212,224,.55) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(207,232,226,.45) 0%, transparent 55%),
    linear-gradient(135deg, #fbf6ee 0%, #f5ede0 60%, #ebe0cd 100%);
  overflow: hidden;
  isolation: isolate;
}

.storefront__media {
  position: relative;
  z-index: 2;
  aspect-ratio: 5/4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(20,64,63,.32);
}
.storefront__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.storefront__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 460px;
}
.storefront__copy h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  letter-spacing: .02em;
  color: var(--ink);
  margin: 0;
}
.storefront__copy h3 em {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
  letter-spacing: .01em;
}
.storefront__copy p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
}
.storefront__copy .btn { align-self: flex-start; margin-top: 6px; }

/* Arco-íris pastel (bandas concêntricas) */
.storefront__arc {
  position: absolute;
  bottom: -32%;
  right: -8%;
  width: 540px;
  height: 540px;
  z-index: 0;
  pointer-events: none;
  filter: blur(.3px);
}
.storefront__arc .band {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 28px solid;
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(-12deg);
  opacity: .65;
}
.storefront__arc .band--1 {
  border-top-color: #f8d4e0;
  border-right-color: #f8d4e0;
  inset: 0;
}
.storefront__arc .band--2 {
  border-top-color: #ffd9a3;
  border-right-color: #ffd9a3;
  inset: 38px;
}
.storefront__arc .band--3 {
  border-top-color: #cfe8e2;
  border-right-color: #cfe8e2;
  inset: 76px;
}
.storefront__arc .band--4 {
  border-top-color: #e5d4e5;
  border-right-color: #e5d4e5;
  inset: 114px;
}

/* Nuvens flutuantes */
.storefront__cloud {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  filter: blur(2px);
  animation: floatCloud 12s ease-in-out infinite;
}
.storefront__cloud::before,
.storefront__cloud::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
}
.cloud-1 {
  top: 8%; left: 4%;
  width: 140px; height: 38px;
}
.cloud-1::before { width: 60px; height: 60px; top: -22px; left: 18px; }
.cloud-1::after  { width: 46px; height: 46px; top: -16px; left: 70px; }
.cloud-2 {
  top: 22%; left: 38%;
  width: 100px; height: 28px;
  animation-delay: -4s;
  animation-duration: 16s;
  opacity: .8;
}
.cloud-2::before { width: 44px; height: 44px; top: -16px; left: 12px; }
.cloud-2::after  { width: 32px; height: 32px; top: -10px; left: 50px; }

@keyframes floatCloud {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Bolhas 3D pastel */
.storefront__sphere {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), transparent 45%),
              radial-gradient(circle at 70% 70%, var(--c2, #d49ab3) 0%, var(--c1, #f8d4e0) 100%);
  box-shadow:
    inset 4px 4px 12px rgba(255,255,255,.5),
    inset -6px -8px 16px rgba(0,0,0,.08),
    0 18px 32px -12px rgba(180,110,130,.28);
  animation: floatSphere 8s ease-in-out infinite;
}
.sphere-1 {
  --c1: #f8d4e0; --c2: #d49ab3;
  width: 80px; height: 80px;
  top: 14%; right: 38%;
}
.sphere-2 {
  --c1: #cfe8e2; --c2: #6fb3a8;
  width: 56px; height: 56px;
  bottom: 14%; left: 36%;
  animation-delay: -3s;
}
.sphere-3 {
  --c1: #ffe9c8; --c2: #c9a96b;
  width: 38px; height: 38px;
  top: 52%; right: 6%;
  animation-delay: -5s;
}
@keyframes floatSphere {
  0%, 100% { transform: translateY(0) rotate(0); }
  33%      { transform: translateY(-12px) rotate(6deg); }
  66%      { transform: translateY(8px)  rotate(-4deg); }
}

/* Divisor com arco-íris fininho — assinatura visual entre seções */
.rainbow-divider {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 24px 0;
}
.rainbow-divider span {
  width: 36px; height: 4px;
  border-radius: 999px;
  display: block;
}
.rainbow-divider span:nth-child(1) { background: #f8d4e0; }
.rainbow-divider span:nth-child(2) { background: #ffd9a3; }
.rainbow-divider span:nth-child(3) { background: #cfe8e2; }
.rainbow-divider span:nth-child(4) { background: #e5d4e5; }
.rainbow-divider span:nth-child(5) { background: #d49ab3; }

@media (max-width: 880px) {
  .storefront {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }
  .storefront__arc { width: 360px; height: 360px; bottom: -42%; right: -20%; }
  .storefront__arc .band { border-width: 22px; }
  .storefront__arc .band--2 { inset: 26px; }
  .storefront__arc .band--3 { inset: 52px; }
  .storefront__arc .band--4 { inset: 78px; }
  .sphere-1 { width: 56px; height: 56px; }
  .sphere-2 { width: 40px; height: 40px; }
  .sphere-3 { width: 28px; height: 28px; }
}

/* Reveal mais forte e dramático — cards de marca */
.reveal--brand {
  opacity: 0;
  transform: translateY(160px) scale(.78) rotate(-3deg);
  filter: blur(14px);
  transform-origin: 50% 80%;
  transition:
    opacity 1.3s cubic-bezier(.16,.84,.3,1),
    transform 1.3s cubic-bezier(.16,.84,.3,1),
    filter 1.3s cubic-bezier(.16,.84,.3,1);
}
.reveal--brand.in {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0);
  filter: blur(0);
}

/* Respeitar usuário com prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--brand {
    transform: none !important;
    filter: none !important;
    transition: opacity .4s ease !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVO — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --nav-h: 70px; }
  .section { padding: 88px 24px; }

  .concept-grid { grid-template-columns: 1fr; gap: 16px; }
  .collection-grid { grid-template-columns: 1fr; gap: 16px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .store-section { padding: 0 20px 88px; }
  .location { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  .location__media { width: 100%; max-width: 100%; }
  .location__media iframe,
  .location__media img { width: 100%; max-width: 100%; height: 100%; }
  .atelier { padding-left: 0; padding-right: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .hero { height: 70vh; min-height: 480px; }
  .hero-h1 { font-size: clamp(36px, 6vw, 56px) !important; }
}

/* ============================================================
   RESPONSIVO — MOBILE GRANDE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 64px 20px; }

  /* Hero ocupa a tela toda em mobile (igual home.html) */
  .hero { height: 100vh; height: 100svh; min-height: 560px; margin-top: 64px; }
  .hero-img { object-position: center center; }
  .hero-copy { padding: 0 24px; justify-content: flex-end !important; padding-bottom: 28% !important; }
  .hero-over { font-size: 11px; letter-spacing: .3em; }
  .hero-sub { font-size: 14px; }
  .hero__ctas { flex-wrap: wrap; gap: 10px; margin-top: 1.25rem !important; }
  .btn { padding: 12px 24px; font-size: 12px; }

  /* Stacked cards verticais com efeito sticky em mobile */
  .concept-grid,
  .collection-grid,
  .brands-grid {
    display: flex !important;
    flex-direction: column;
    grid-template-columns: none !important;
    overflow: visible;
    gap: 18px;
    padding: 0;
    margin: 0;
  }

  .concept-grid > *,
  .collection-grid > *,
  .brands-grid > * {
    position: sticky;
    top: 90px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 14px 32px -16px rgba(20,64,63,.22);
    transition: box-shadow .35s ease, transform .35s ease;
  }

  /* Card por carrossel: z-index crescente — o próximo sobe por cima */
  .concept-grid > *:nth-child(1),
  .collection-grid > *:nth-child(1),
  .brands-grid > *:nth-child(1) { z-index: 1; }
  .concept-grid > *:nth-child(2),
  .collection-grid > *:nth-child(2),
  .brands-grid > *:nth-child(2) { z-index: 2; }
  .concept-grid > *:nth-child(3),
  .collection-grid > *:nth-child(3),
  .brands-grid > *:nth-child(3) { z-index: 3; }
  .brands-grid > *:nth-child(4) { z-index: 4; }
  .brands-grid > *:nth-child(5) { z-index: 5; }
  .brands-grid > *:nth-child(6) { z-index: 6; }
  .brands-grid > *:nth-child(7) { z-index: 7; }
  .brands-grid > *:nth-child(8) { z-index: 8; }
  .brands-grid > *:nth-child(9) { z-index: 9; }

  .brands-grid > .brand-card { aspect-ratio: 1/1; }
  .brand-card__title { font-size: 16px; letter-spacing: .26em; }

  /* Esconde dots se ainda existirem do carrossel anterior */
  .carousel-dots { display: none !important; }

  .section-head h2 { font-size: clamp(26px, 6vw, 34px); letter-spacing: .06em; }
  .section-head .sub { font-size: 14px; }

  /* Storefront em mobile */
  .storefront {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px;
    margin: 32px 16px 48px;
    border-radius: 18px;
  }
  .storefront__copy h3 { font-size: clamp(24px, 6vw, 32px); }
  .storefront__copy p { font-size: 14px; }
  .storefront__media { aspect-ratio: 4/3; border-radius: 12px; }
  .storefront__arc {
    width: 280px; height: 280px;
    bottom: -50%; right: -28%;
    opacity: .55;
  }
  .storefront__arc .band { border-width: 18px; }
  .storefront__arc .band--2 { inset: 22px; }
  .storefront__arc .band--3 { inset: 44px; }
  .storefront__arc .band--4 { inset: 66px; }
  .cloud-1 { transform: scale(.7); top: 4%; left: 2%; }
  .cloud-2 { transform: scale(.6); top: 18%; left: 50%; }
  .sphere-1 { width: 48px; height: 48px; top: 8%; right: 18%; }
  .sphere-2 { width: 36px; height: 36px; bottom: 8%; left: 12%; }
  .sphere-3 { width: 24px; height: 24px; top: 50%; right: 4%; }

  /* Pillars em mobile */
  .pillar { padding: 32px 16px; }
  .pillars { gap: 18px; }

  /* Marquee tipografia */
  .marquee span { font-size: 18px; padding: 0 24px; }

  /* Mega menu mais compacto em mobile */
  .liorit-mega .mega-head { padding: 14px 18px; }
  .liorit-mega .mega-logo { font-size: 20px; letter-spacing: .35em; }
  .liorit-mega .mega-content { padding: 24px 18px 32px; }

  /* Reveal: reduz translação para não criar viewport gigante */
  .reveal { transform: translateY(50px) scale(.98); }
  .section-head.reveal { transform: translateY(60px) scale(.99); }
  .reveal--brand {
    transform: translateY(90px) scale(.85) rotate(-2deg);
    filter: blur(8px);
  }
}

/* ============================================================
   RESPONSIVO — MOBILE PEQUENO (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  .brands-grid { grid-template-columns: 1fr; gap: 14px; }
  .brand-card__title { font-size: 18px; letter-spacing: .26em; }
  .pillars { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .footer__grid > div:nth-child(n+2) { display: none; }
  .footer .social { justify-content: center; }
  .footer .brand { font-size: 36px; letter-spacing: .42em; }
  .footer .tagline { font-size: 18px; }
  .footer p { font-size: 15px; line-height: 1.7; }
  .section { padding: 56px 18px; }
  .hero-h1 { font-size: 32px !important; letter-spacing: .04em; line-height: 1.1; }
  /* Hero full screen em mobile pequeno também */
  .hero { height: 100vh; height: 100svh; min-height: 520px; }
  /* Brands em 2 colunas mantidas (agrupadas, pareadas) */
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* Mapa / location em mobile pequeno */
  .store-section { padding: 0 16px 64px; }
  .location { padding: 18px; gap: 18px; margin-top: 32px; border-radius: 12px; }
  .location__copy h3 { font-size: 24px; }
  .location__media { aspect-ratio: 4/3; border-radius: 8px; }
  .location__media iframe,
  .location__media img { width: 100% !important; height: 100% !important; max-width: 100%; }
  .location__media .map-link { left: 10px; bottom: 10px; padding: 8px 14px; font-size: 10px; }
  .atelier__placeholder { aspect-ratio: 16/10; }

  /* CTAs empilham */
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; max-width: 280px; text-align: center; }

  /* Concept e collection cards mais compactos */
  .concept-card { padding: 28px 20px; }
  .collection-card .info { padding: 18px 16px; }

  /* Storefront ainda mais enxuto */
  .storefront { margin: 24px 12px 40px; padding: 24px 18px; }
  .storefront__arc { display: none; }
  .cloud-2 { display: none; }
  .sphere-2 { display: none; }

  /* Rainbow divider menor */
  .rainbow-divider span { width: 24px; height: 3px; }

  /* Newsletter / footer mais respiráveis */
  .cta-final { padding: 56px 20px; }
  .footer { padding: 40px 20px 24px; }

  /* Reveal mais leve em telas pequenas */
  .reveal { transform: translateY(40px) scale(.99); filter: blur(4px); }
  .reveal--brand {
    transform: translateY(70px) scale(.9) rotate(-2deg);
    filter: blur(6px);
  }
}

/* ============================================================
   RESPONSIVO — MOBILE EXTRA PEQUENO (≤380px)
   ============================================================ */
@media (max-width: 380px) {
  .hero-h1 { font-size: 28px !important; }
  .section-head h2 { font-size: 22px; letter-spacing: .04em; }
  .pd-hdr__logo { font-size: 22px; letter-spacing: .35em; }
  .liorit-mega .mega-logo { font-size: 18px; letter-spacing: .3em; }
}

/* ============================================================
   MENU MOBILE OFF-CANVAS (≤768px) — visível só em mobile
   ============================================================ */
.m-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  visibility: hidden;
  display: none;
}
.m-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}
.m-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,64,63,.32);
  opacity: 0;
  transition: opacity .35s ease;
}
.m-menu.is-open .m-menu__overlay { opacity: 1; }

.m-menu__panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.22,.7,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.m-menu.is-open .m-menu__panel { transform: translateX(0); }

.m-menu__close {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 18px 6px;
  padding: 10px 16px 10px 14px;
  background: var(--bg-warm);
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  align-self: flex-start;
  cursor: pointer;
  transition: background .25s ease;
}
.m-menu__close:hover { background: #ddd0bc; }

.m-menu__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 18px 32px;
  -webkit-overflow-scrolling: touch;
}

/* Bloco usuário */
.m-menu__user {
  background: #f4f1ec;
  border-radius: 14px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}
.m-user-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background .2s ease;
}
.m-user-row:hover { background: #fff; }
.m-user-row svg:first-of-type { flex-shrink: 0; color: var(--ink); }
.m-user-row span { flex: 1; }
.m-user-row .chev { color: var(--ink-muted); }

/* Lista de categorias */
.m-cats {
  list-style: none;
  padding: 0;
  margin: 0;
}
.m-cat {
  border-bottom: 1px solid var(--line);
}
.m-cat:first-child { border-top: 1px solid var(--line); }
.m-cat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 18px 4px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  transition: color .2s ease;
}
.m-cat__head:hover { color: var(--rose); }
.m-cat__head .m-cat__chev,
.m-cat__head .m-cat__arrow {
  color: var(--ink-muted);
  transition: transform .3s ease, color .2s ease;
}
.m-cat.is-open .m-cat__chev { transform: rotate(180deg); color: var(--rose); }
.m-cat.is-open .m-cat__arrow { transform: rotate(90deg); color: var(--rose); }
.m-cat--off .m-cat__head { color: var(--rose); font-style: italic; font-family: var(--font-editorial); font-size: 19px; }

.m-cat__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.22,.7,.2,1);
}
.m-cat.is-open .m-cat__body { max-height: 600px; }
.m-cat__body a {
  display: block;
  padding: 12px 4px 12px 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: color .2s ease, padding-left .25s ease;
}
.m-cat__body a:hover { color: var(--rose); padding-left: 14px; }
.m-cat__body a:last-child { padding-bottom: 18px; }
.m-cat__body .m-see-all {
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--rose);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* Bloco final */
.m-menu__footer {
  margin-top: 24px;
  background: #f4f1ec;
  border-radius: 14px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.m-foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background .2s ease;
}
.m-foot-row:hover { background: #fff; }
.m-foot-row svg { color: var(--ink-muted); }

/* Mostra só em mobile */
@media (max-width: 768px) {
  .m-menu { display: block; }
  /* Em mobile, esconde o mega menu desktop */
  .liorit-mega { display: none !important; }
}

/* ============================================================
   MEGA MENU — full screen overlay (LIORIT Concept)
   ============================================================ */
.liorit-mega {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.liorit-mega.is-open {
  pointer-events: auto;
  visibility: visible;
}

.liorit-mega .mega-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,64,63,.22);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.liorit-mega.is-open .mega-overlay { opacity: 1; }

.liorit-mega .mega-panel {
  position: absolute;
  inset: 0;
  background: var(--bg);
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.liorit-mega.is-open .mega-panel {
  transform: none;
  opacity: 1;
}

/* --- Cabeçalho do mega --- */
.liorit-mega .mega-head {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 56px;
  border-bottom: 1px solid var(--line);
}
.liorit-mega .mega-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .42em;
  color: var(--ink);
}
.liorit-mega .mega-tag {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--rose);
}
.liorit-mega .mega-close {
  margin-left: auto;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.liorit-mega .mega-close:hover { background: var(--bg-warm); color: var(--rose); }

/* --- Corpo: lateral + conteúdo --- */
.liorit-mega .mega-body {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 0;
}

/* --- Lateral (categorias raiz) --- */
.liorit-mega .mega-side {
  border-right: 1px solid var(--line);
  padding: 56px 40px 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg);
}
.liorit-mega .side-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.liorit-mega .side-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .14em;
  color: var(--teal-deep);
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease), padding-left .25s var(--ease);
}
.liorit-mega .side-list .age {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--ink);
  margin-left: auto;
  margin-right: 12px;
  text-transform: none;
  font-weight: 500;
}
.liorit-mega .side-list li a .arrow {
  font-size: 18px;
  color: var(--rose);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.liorit-mega .side-list li:hover a,
.liorit-mega .side-list li.active a {
  color: var(--rose);
  border-bottom-color: var(--line);
  padding-left: 6px;
}
.liorit-mega .side-list li:hover a .arrow,
.liorit-mega .side-list li.active a .arrow {
  opacity: 1;
  transform: translateX(0);
}
.liorit-mega .side-list li.highlight a {
  color: var(--rose);
  font-style: italic;
  font-family: var(--font-editorial);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .04em;
}

.liorit-mega .side-foot {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.liorit-mega .side-foot .eyebrow {
  color: var(--teal-deep);
  font-weight: 600;
}
.liorit-mega .side-foot p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
  max-width: 28ch;
}

/* --- Conteúdo (3 colunas + imagem) --- */
.liorit-mega .mega-content {
  position: relative;
  padding: 56px 72px 48px;
  overflow: auto;
}

.liorit-mega .mega-pane {
  display: none;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
  animation: lioritMegaFadeIn .35s ease both;
}
.liorit-mega .mega-pane.active { display: grid; }

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

.liorit-mega .mega-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
}

.liorit-mega .mega-col .col-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.liorit-mega .mega-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.liorit-mega .mega-col li a {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--ink);
  font-weight: 500;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.liorit-mega .mega-col li a:hover {
  color: var(--rose);
  transform: translateX(4px);
}

.liorit-mega .see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--teal-deep);
  border-bottom: 1px solid var(--teal-deep);
  padding-bottom: 4px;
  transition: color .25s var(--ease), border-color .25s var(--ease), gap .25s var(--ease);
}
.liorit-mega .see-all:hover {
  color: var(--rose);
  border-color: var(--rose);
  gap: 12px;
}

/* --- Imagem destaque --- */
.liorit-mega .mega-feature { align-self: stretch; }
.liorit-mega .feature-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-warm);
}
.liorit-mega .feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.liorit-mega .feature-card:hover img { transform: scale(1.04); }
.liorit-mega .feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: linear-gradient(to top, rgba(20,64,63,.55), transparent);
}

.liorit-mega .feature-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 32px 32px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.liorit-mega .feature-copy .eyebrow { color: rgba(255,255,255,.85); }
.liorit-mega .feature-copy h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: .08em;
  font-weight: 400;
  color: #fff;
}
.liorit-mega .feature-copy .link {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-top: 6px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* --- Rodapé do mega --- */
.liorit-mega .mega-foot {
  border-top: 1px solid var(--line);
  padding: 16px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
}
.liorit-mega .mega-foot__left { display: flex; gap: 28px; flex-wrap: wrap; }
.liorit-mega .mega-foot__left a,
.liorit-mega .mega-foot__right span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
}
.liorit-mega .mega-foot__left a:hover { color: var(--rose); }

/* --- Responsivo do mega --- */
@media (max-width: 1100px) {
  .liorit-mega .mega-pane { grid-template-columns: 1fr; gap: 48px; }
  .liorit-mega .mega-feature { max-width: 460px; }
  .liorit-mega .mega-cols { gap: 40px; }
}
@media (max-width: 880px) {
  .liorit-mega .mega-head { padding: 18px 24px; gap: 14px; }
  .liorit-mega .mega-tag { display: none; }
  .liorit-mega .mega-foot { padding: 14px 24px; flex-direction: column; gap: 10px; }
  .liorit-mega .mega-body { grid-template-columns: 1fr; }
  .liorit-mega .mega-side {
    padding: 22px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .liorit-mega .side-list { flex-direction: row; flex-wrap: wrap; gap: 6px 18px; }
  .liorit-mega .side-list li a { font-size: 14px; padding: 6px 0; border-bottom: 0; }
  .liorit-mega .side-list .age,
  .liorit-mega .side-list li a .arrow { display: none; }
  .liorit-mega .side-foot { display: none; }
  .liorit-mega .mega-content { padding: 28px 24px 32px; }
  .liorit-mega .mega-cols { grid-template-columns: 1fr; gap: 28px; }
  .liorit-mega .feature-copy h3 { font-size: 22px; }
}
