/* ============================================================
   Beni Falcão — Atacado B2B · Design system
   Tokens EXATOS do tema (BRIEF): creme #FAF6EF · texto #2B3942
   navy #2E5670 · sereno #9DBBD6 · footer navy · Lora + Mulish
   ============================================================ */

:root {
  --cream: #FAF6EF;
  --cream-2: #FCF9F3;
  --paper: #FFFFFF;
  --ink: #2B3942;
  --ink-soft: #5C6B73;
  --navy: #2E5670;
  --navy-deep: #23425A;
  --serene: #9DBBD6;
  --serene-soft: #CBDCEA;
  --label-bg: #9DBBD6;
  --label-fg: #23425A;

  /* vichy swatch cores (bege, verde, azul, rosa) */
  --v-green: #A7C0A0;
  --v-beige: #E1C8A1;
  --v-blue:  #A9C8E0;
  --v-pink:  #E8B8C5;

  --line: rgba(46, 86, 112, .14);
  --line-soft: rgba(46, 86, 112, .08);
  --shadow: 0 18px 50px -24px rgba(35, 66, 90, .35);
  --shadow-sm: 0 8px 24px -14px rgba(35, 66, 90, .32);
  --r: 18px;
  --r-lg: 26px;

  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Mulish', system-ui, -apple-system, sans-serif;
  --script: 'Sacramento', 'Segoe Script', cursive;

  --wrap: 1300px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1.14;
  letter-spacing: -.01em;
}

/* focus ring visível (a11y) */
:focus-visible {
  outline: 2.5px solid var(--navy);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
  font-weight: 700; font-size: .9rem;
}
.skip-link:focus { left: 0; }

/* vichy / gingham texture */
.gingham {
  background-color: transparent;
  background-image:
    linear-gradient(90deg, rgba(157, 187, 214, .26) 50%, transparent 50%),
    linear-gradient(rgba(157, 187, 214, .26) 50%, transparent 50%);
  background-size: 18px 18px;
}

/* ============================================================
   Botões
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 100px;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  min-height: 48px; white-space: nowrap;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .25s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-3px); background: var(--navy-deep); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--navy-deep); border: 1.5px solid var(--line); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--serene); }
.btn-light { background: #fff; color: var(--navy-deep); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; min-height: 56px; }

/* ============================================================
   Topbar (condições atacado)
   ============================================================ */
.topbar { background: var(--navy-deep); color: #EAF1F6; overflow: hidden; }
.topbar .wrap {
  display: flex; gap: 12px 34px; justify-content: center; flex-wrap: wrap;
  padding: 9px 28px; font-size: .78rem; letter-spacing: .02em;
}
.topbar span { display: inline-flex; align-items: center; gap: 8px; opacity: .92; }
.topbar span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--serene); flex: none;
}

/* ============================================================
   Header (sticky, 1 linha: logo | nav | wpp)
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 12px 28px; max-width: var(--wrap); margin: 0 auto;
}
.brand { line-height: .82; flex: none; }
.brand .name { font-family: var(--script); font-size: 2.4rem; color: var(--navy); display: block; }
.brand .sub {
  font-size: .58rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--ink-soft); padding-left: 5px; font-weight: 600;
}
.brand .logo-img { height: 46px; width: auto; display: block; }
.mobile-menu .brand .logo-img { height: 34px; }
.menu { display: flex; gap: 32px; }
.menu a { font-size: .88rem; font-weight: 600; color: var(--ink); position: relative; padding: 6px 0; }
.menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--serene); transition: width .3s var(--ease);
}
.menu a:hover::after, .menu a:focus-visible::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff; padding: 11px 20px; border-radius: 100px;
  font-weight: 700; font-size: .85rem; min-height: 44px;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.nav-cta svg { width: 17px; height: 17px; }
.nav-cta:hover { transform: translateY(-2px); background: var(--navy-deep); }

.hamburger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  align-items: center; justify-content: center; color: var(--navy-deep);
}
.hamburger svg { width: 26px; height: 26px; }

/* mobile drawer */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.open { display: block; }
.mobile-menu .backdrop {
  position: absolute; inset: 0; background: rgba(35, 66, 90, .45);
  opacity: 0; transition: opacity .3s var(--ease);
}
.mobile-menu.open .backdrop { opacity: 1; }
.mobile-menu .panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(84vw, 340px);
  background: var(--cream); padding: 24px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s var(--ease);
  box-shadow: -20px 0 60px -30px rgba(35, 66, 90, .5);
}
.mobile-menu.open .panel { transform: none; }
.mobile-menu .mm-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mobile-menu .mm-close { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--navy-deep); }
.mobile-menu .mm-close svg { width: 24px; height: 24px; }
.mobile-menu nav a {
  display: block; padding: 15px 6px; font-family: var(--serif); font-size: 1.4rem;
  color: var(--navy-deep); border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn { margin-top: 22px; width: 100%; }

/* ============================================================
   Hero carousel
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  height: clamp(520px, 82vh, 760px);
}
.hero-track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide .bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 55%;
  transform: scale(1.08); transition: transform 7s ease-out;
}
/* art-direct o crop landscape das fotos-retrato: mantém o produto em quadro */
.hero-slide:nth-child(1) .bg { object-position: center 42%; }
.hero-slide:nth-child(2) .bg { object-position: center 42%; }
.hero-slide:nth-child(3) .bg { object-position: center 42%; }
.hero-slide:nth-child(4) .bg { object-position: center 42%; }
.hero-slide.active .bg { transform: scale(1); }
.hero-slide .ov {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35, 66, 90, .34) 0%, rgba(35, 66, 90, .30) 55%, rgba(35, 66, 90, .46) 100%);
}
.hero-slide .content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  color: #fff; padding: 32px; max-width: 860px; margin: 0 auto;
}
.hero-slide .eyebrow { color: #fff; opacity: .92; margin-bottom: 16px; }
.hero-slide h1, .hero-slide .hero-title {
  color: #fff; font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600; line-height: 1.05; letter-spacing: -.015em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .28); max-width: 16em;
}
.hero-slide p {
  color: #F0F5F9; font-size: clamp(1rem, 1.5vw, 1.18rem); margin: 18px auto 30px;
  max-width: 34em; text-shadow: 0 1px 16px rgba(0, 0, 0, .3);
}
/* animação de entrada por slide ativo */
.hero-slide .eyebrow, .hero-slide .hero-title, .hero-slide p, .hero-slide .btns {
  opacity: 0; transform: translateY(22px);
}
.hero-slide.active .eyebrow { animation: heroRise .9s var(--ease) .15s forwards; }
.hero-slide.active .hero-title { animation: heroRise .9s var(--ease) .28s forwards; }
.hero-slide.active p { animation: heroRise .9s var(--ease) .42s forwards; }
.hero-slide.active .btns { animation: heroRise .9s var(--ease) .54s forwards; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

.hero-dots {
  position: absolute; z-index: 5; left: 0; right: 0; bottom: 26px;
  display: flex; gap: 11px; justify-content: center;
}
.hero-dots button {
  width: 34px; height: 34px; display: grid; place-items: center;
  background: none; border-radius: 8px;
}
.hero-dots button::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, .5); transition: all .3s var(--ease);
}
.hero-dots button[aria-current="true"]::before { background: #fff; width: 26px; border-radius: 6px; }

.hero-arrow {
  position: absolute; z-index: 5; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 255, 255, .16); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; color: #fff;
  border: 1px solid rgba(255, 255, 255, .3); transition: background .25s var(--ease);
}
.hero-arrow:hover { background: rgba(255, 255, 255, .3); }
.hero-arrow svg { width: 24px; height: 24px; }
.hero-arrow.prev { left: 22px; }
.hero-arrow.next { right: 22px; }

/* ============================================================
   Section shell
   ============================================================ */
.block { padding: 88px 0; }
.block.tint { background: var(--cream-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.head { text-align: center; max-width: 40em; margin: 0 auto 52px; }
.head h2 { font-size: clamp(2.05rem, 3.9vw, 3.2rem); margin-top: 12px; }
.head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }

/* ============================================================
   Categorias premium (nome dentro da imagem)
   ============================================================ */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat {
  position: relative; display: block; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cat:hover img { transform: scale(1.07); }
.cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20, 28, 38, .66), rgba(20, 28, 38, .1) 44%, transparent 66%);
}
.cat .label { position: absolute; left: 22px; right: 18px; bottom: 20px; z-index: 2; color: #fff; }
.cat .label h3 { color: #fff; font-size: 1.55rem; text-shadow: 0 2px 16px rgba(0, 0, 0, .35); }
.cat .label span { display: block; font-size: .82rem; opacity: .9; margin-top: 3px; }
.cat .label::after {
  content: ""; display: block; width: 32px; height: 2px; background: #fff;
  opacity: .9; margin-top: 10px; transition: width .45s var(--ease);
}
.cat:hover .label::after { width: 66px; }

/* ============================================================
   Produtos — cartela + grade dos 5 essenciais
   ============================================================ */
.palette {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin: -20px auto 44px; color: var(--ink-soft);
  font-size: .86rem;
}
.palette .swatches { display: flex; gap: 9px; }
.palette .dot {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}
.dot { border-radius: 50%; display: inline-block; }

.grid5 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  display: flex; flex-direction: column;
  background: var(--paper); border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .ph { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; background: var(--cream); }
.card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .ph img { transform: scale(1.05); }
.card .tag-on-img {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--label-bg); color: var(--label-fg);
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 100px;
}
.card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card .swatches { display: flex; gap: 7px; margin-bottom: 10px; }
.card .swatches .dot { width: 15px; height: 15px; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.card h3 { font-size: 1.22rem; margin-bottom: 6px; }
.card .meta { font-size: .84rem; color: var(--ink-soft); line-height: 1.5; }
.card .price { display: flex; align-items: baseline; gap: 9px; margin-top: 16px; }
.card .price .ata { font-family: var(--serif); font-size: 1.7rem; color: var(--navy-deep); font-weight: 600; }
.card .price .lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); font-weight: 700; }
.card .resale {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line);
}
.card .resale span { font-size: .84rem; color: var(--ink-soft); }
.card .resale b { color: var(--navy); font-weight: 700; }
.card .badge {
  background: var(--serene); color: var(--label-fg);
  font-weight: 800; font-size: .76rem; padding: 5px 12px; border-radius: 100px; flex: none;
  box-shadow: 0 0 0 1px rgba(35, 66, 90, .08);
}
.card .btn { margin-top: 18px; width: 100%; }

/* card "monte seu mix" — colagem 2x2, igual aos outros cards */
.ph-mix { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; background: var(--cream); }
.ph-mix img { width: 100%; height: 100%; min-width: 0; min-height: 0; object-fit: cover; object-position: center; transition: transform .7s var(--ease); }
.card:hover .ph-mix img { transform: scale(1.04); }
.mix-note {
  margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: .82rem; color: var(--navy); font-weight: 700;
}
.card.mix .btn { margin-top: auto; }

/* ============================================================
   Bloco margem (faixa navy)
   ============================================================ */
.margin {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  color: #fff; background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  box-shadow: var(--shadow);
}
.margin .ghx { position: absolute; inset: 0; opacity: .07; z-index: 0; }
.margin .inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center;
  padding: 60px 56px;
}
.margin .eyebrow { color: var(--serene-soft); }
.margin h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.9rem); margin-top: 12px; }
.margin h2 em { font-style: italic; color: #BFE3C3; }
.margin p { color: #D7E3EC; margin: 16px 0 28px; max-width: 26em; }
.calc { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--r); padding: 28px; }
.calc .row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); font-size: .96rem; color: #E4EDF3;
}
.calc .row:last-child { border: 0; padding-bottom: 0; }
.calc .row .v { font-family: var(--serif); font-size: 1.2rem; color: #fff; }
.calc .row.win .v { color: #BFE3C3; }
.calc .row .chip { font-size: .74rem; background: rgba(191, 227, 195, .18); color: #CFEFD3; padding: 3px 9px; border-radius: 100px; margin-left: 8px; }

/* ============================================================
   Vídeo (lazy click-to-play)
   ============================================================ */
.video-wrap { max-width: 1040px; margin: 0 auto; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--navy-deep); cursor: pointer;
}
.video-frame img { width: 100%; height: 100%; object-fit: cover; }
.video-frame::after { content: ""; position: absolute; inset: 0; background: rgba(35, 66, 90, .22); transition: background .3s var(--ease); }
.video-frame:hover::after { background: rgba(35, 66, 90, .34); }
.video-frame .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 84px; height: 84px; border-radius: 50%; background: rgba(255, 255, 255, .95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: transform .3s var(--ease);
}
.video-frame:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.video-frame .play svg { width: 30px; height: 30px; color: var(--navy); margin-left: 4px; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   Estampas — split editorial (copy + foto real, sem texto raster)
   ============================================================ */
.estampas {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  max-width: 1120px; margin: 0 auto;
}
.estampas-copy .eyebrow { margin-bottom: 16px; }
.estampas-copy h2 { font-size: clamp(2.05rem, 3.9vw, 3.2rem); }
.estampas-copy h2 em { font-style: italic; color: var(--serene); }
.estampas-copy p { color: var(--ink-soft); margin: 18px 0 26px; font-size: 1.05rem; max-width: 30em; }
.vichy-list { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.vichy-list li {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .95rem; font-weight: 600; color: var(--ink);
}
.vichy-list .sw {
  width: 26px; height: 26px; border-radius: 8px; flex: none;
  box-shadow: 0 0 0 1px var(--line);
  background-color: color-mix(in srgb, var(--sw) 22%, #fff);
  background-image:
    linear-gradient(90deg, var(--sw) 50%, transparent 50%),
    linear-gradient(var(--sw) 50%, transparent 50%);
  background-size: 6px 6px;
}
.estampas-media {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.estampas-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }

/* ============================================================
   FAQ acordeão (CSS grid 0fr/1fr trick)
   ============================================================ */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px 4px; text-align: left; font-family: var(--serif); font-size: 1.18rem;
  color: var(--navy-deep); font-weight: 500;
}
.faq-q .icon { flex: none; width: 26px; height: 26px; position: relative; transition: transform .3s var(--ease); color: var(--navy); }
.faq-q .icon::before, .faq-q .icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease);
}
.faq-q .icon::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .icon::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq-q[aria-expanded="true"] .icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 4px 24px; color: var(--ink-soft); max-width: 60ch; }

/* ============================================================
   CTA final
   ============================================================ */
.cta-final { text-align: center; }
.cta-final .box {
  position: relative; overflow: hidden;
  background: linear-gradient(rgba(35, 66, 90, .66), rgba(35, 66, 90, .74)), url("../img/estampas.webp") center / cover no-repeat;
  border-radius: var(--r-lg); padding: 88px 40px; color: #fff; box-shadow: var(--shadow);
}
.cta-final .ghx { position: absolute; inset: 0; opacity: .07; z-index: 0; }
.cta-final .inner { position: relative; z-index: 2; }
.cta-final h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); max-width: 16em; margin: 12px auto 0; }
.cta-final p { color: #D7E3EC; margin: 16px auto 30px; max-width: 32em; }

/* ============================================================
   Footer (navy)
   ============================================================ */
.footer { background: var(--navy-deep); color: #CFDDE7; }
.footer .wrap { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding: 64px 28px 34px; }
.footer .name { font-family: var(--script); font-size: 2.7rem; color: #fff; line-height: .85; }
.footer .foot-logo { height: 56px; width: auto; display: block; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: .95; }
.footer .sub { font-size: .58rem; letter-spacing: .4em; text-transform: uppercase; opacity: .7; padding-left: 5px; }
.footer p.about { font-size: .92rem; opacity: .82; margin-top: 16px; max-width: 26em; }
.footer h4 { font-family: var(--serif); color: #fff; font-weight: 500; margin-bottom: 16px; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; opacity: .95; }
.footer .col a { display: block; font-size: .92rem; opacity: .82; padding: 6px 0; transition: opacity .2s, padding-left .2s; }
.footer .col a:hover { opacity: 1; padding-left: 4px; }
.footer .contact a.mail { display: inline-block; max-width: 100%; overflow-wrap: anywhere; font-family: var(--serif); font-size: 1.15rem; color: #fff; opacity: 1; padding: 0; margin-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.3); }
.footer .contact a.mail:hover { border-color: #fff; }
.footer .contact .wpp { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: .95rem; opacity: .9; }
.footer .contact .wpp svg { width: 18px; height: 18px; }
.footer .social { margin-top: 18px; display: flex; gap: 12px; }
.footer .social a {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .1); transition: background .25s var(--ease), transform .25s var(--ease);
}
.footer .social a:hover { background: rgba(255, 255, 255, .2); transform: translateY(-2px); }
.footer .social svg { width: 20px; height: 20px; }
.footer .social a.ig { width: auto; padding: 0 16px; gap: 9px; border-radius: 100px; }
.footer .social a.ig span { font-size: .9rem; font-weight: 600; }
.footbar {
  border-top: 1px solid rgba(255, 255, 255, .1); text-align: center;
  padding: 20px; font-size: .8rem; opacity: .82;
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* sem JS: conteúdo sempre visível (SEO / no-JS não fica em branco) */
html:not(.has-js) .reveal { opacity: 1 !important; transform: none !important; }

/* stagger em filhos de grid (cards, tiles): cascata em vez de bloco único */
.cats .reveal, .grid5 .reveal { transition-delay: calc(var(--i, 0) * 75ms); transform: translateY(28px) scale(.985); }
.cats .reveal.in, .grid5 .reveal.in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-slide .bg { transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1000px) {
  .grid5 { grid-template-columns: repeat(2, 1fr); }
  .footer .wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .menu { display: none; }
  .nav-cta .txt { display: none; }
  .nav-cta { padding: 12px; }
  .hamburger { display: flex; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .margin .inner { grid-template-columns: 1fr; padding: 44px 32px; }
  .estampas { grid-template-columns: 1fr; gap: 32px; }
  .estampas-media { aspect-ratio: 16 / 12; }
  .block { padding: 64px 0; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .grid5 { grid-template-columns: 1fr; }
  .cats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat .label h3 { font-size: 1.3rem; }
  .footer .wrap { grid-template-columns: 1fr; gap: 32px; padding-left: 20px; padding-right: 20px; }
  .hero-arrow { display: none; }
  .brand .name { font-size: 2.1rem; }
  .cta-final .box { padding: 48px 26px; }
  .margin .inner { padding: 36px 24px; }
}
