/* ==========================================================
   Hub Decor — folha de estilo
   Referência de layout: gelato.com (ver referencias/gelato/DESIGN.md)
   ========================================================== */

:root {
  --bg: #ffffff;
  --bg-alt: #f8f8f8;
  --bg-sand: #f7f2ea;
  --bg-sand-2: #efe7da;
  --ink: #212121;
  --ink-2: #444444;
  --muted: #696969;
  --line: #e6e6e6;
  --gold: #af7d20;
  --gold-soft: #d7be90;
  --white: #ffffff;
  --radius: 28px;
  --radius-sm: 16px;
  --pill: 999px;
  --container: 1320px;
  --nav-h: 92px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: .005em; line-height: 1.15; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 104px 0; }
.section--alt { background: var(--bg-alt); }
.section--sand { background: var(--bg-sand); }
.section--dark { background: var(--ink); color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.h1 { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.1; letter-spacing: -.005em; }
.h2 { font-size: clamp(30px, 3.4vw, 48px); font-weight: 500; line-height: 1.15; letter-spacing: -.01em; }
.h3 { font-size: 22px; font-weight: 500; }
.lead { font-size: 18px; color: var(--ink-2); max-width: 56ch; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Botões ---------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: var(--pill);
  font-weight: 500; font-size: 16px; line-height: 1;
  border: 1px solid var(--ink); background: var(--ink); color: var(--white);
  cursor: pointer; transition: background .2s, color .2s, transform .25s var(--ease), box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { background: #000; transform: translateY(-1px); box-shadow: 0 10px 24px -14px rgba(0,0,0,.5); }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--white { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--white:hover { background: var(--bg-sand); }
.btn--sm { padding: 11px 18px; font-size: 14px; }
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* Navbar ---------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  transition: box-shadow .3s, background .3s;
}
.nav.is-scrolled { box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(0,0,0,.35); }
.nav__inner { height: var(--nav-h); display: flex; align-items: center; gap: 32px; }
.nav__logo img { height: 69px; width: auto; }
.nav__links { display: flex; gap: 6px; margin-left: 12px; }
.nav__links a {
  padding: 10px 14px; border-radius: var(--pill); font-size: 15px; font-weight: 400;
  color: var(--ink-2); transition: background .2s, color .2s;
}
.nav__links a:hover, .nav__links a.is-active { background: var(--bg-alt); color: var(--ink); }
.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav__burger {
  display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; border-radius: 50%;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; transition: transform .3s, opacity .3s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: none; }

/* Hero ------------------------------------------------------ */
.hero { padding: 72px 0 96px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero__sub { margin-top: 20px; font-size: clamp(17px, 1.5vw, 21px); font-weight: 300; line-height: 1.5; color: var(--ink-2); max-width: 46ch; }
.hero__sub strong { font-weight: 600; color: var(--ink); }
.hero .h1 { font-size: clamp(36px, 4.1vw, 56px); font-weight: 600; letter-spacing: -.03em; line-height: 1.08; max-width: 18ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__brands { margin-top: 40px; }
.hero__brands-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.hero__brands-row { display: flex; flex-wrap: nowrap; align-items: center; gap: 28px; }
.hero__brands-row a { display: block; line-height: 0; }
.hero__brands-row img { width: 120px; height: 26px; object-fit: contain; object-position: left center; filter: grayscale(1); opacity: .7; transition: opacity .25s, filter .25s, transform .25s var(--ease); }
.hero__brands-row a:hover img, .hero__brands-row a:focus-visible img { filter: none; opacity: 1; transform: translateY(-2px); }

/* Bento de imagens (hero) */
.bento {
  display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr);
  gap: 16px; aspect-ratio: 1 / 1;
}
.bento__item { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--bg-sand); }
.bento__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.bento__item:hover img { transform: scale(1.04); }
.bento__item--tall { grid-row: span 2; }
.bento__item--mark { display: grid; place-items: center; background: var(--bg-sand-2); }
.bento__item--mark img { width: 62%; height: auto; object-fit: contain; }

/* Números --------------------------------------------------- */
.stats { padding: 64px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; padding: 8px 12px; }
.stat__num { font-size: clamp(38px, 4vw, 56px); font-weight: 500; color: var(--gold); line-height: 1; letter-spacing: -.01em; }
.stat__label { margin-top: 12px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); font-weight: 400; line-height: 1.45; }
.stat__label::before { content: ""; display: block; width: 36px; height: 2px; background: var(--gold); margin: 0 auto 14px; }

/* O que fazemos — 5 cards lado a lado com efeito "hover reveal" (ref. 21st.dev) */
.cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 56px; align-items: stretch; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius); padding: 30px 24px 28px; min-height: 300px;
  display: flex; flex-direction: column;
  border: 1px solid transparent; box-shadow: 0 20px 40px -34px rgba(0,0,0,.25);
  transition: transform .5s var(--ease), opacity .5s var(--ease), filter .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.card .h3 { font-size: 18px; line-height: 1.3; }
a.card { color: inherit; cursor: pointer; }
a.card:focus-visible { outline: none; border-color: var(--gold); }
.card p { margin-top: 12px; color: var(--ink-2); font-size: 14.5px; }
.card__links { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; font-size: 14.5px; }
.card__links a { font-weight: 400; color: var(--ink); border-bottom: 1px solid var(--gold-soft); width: fit-content; transition: border-color .2s; }
.card__links a:hover { border-color: var(--gold); }
/* Desktop (mouse): ao passar sobre a grade todos recuam; o card ativo se destaca */
@media (hover: hover) {
  .cards:hover .card { transform: scale(.97); opacity: .55; filter: blur(2px); }
  .cards .card:hover { transform: scale(1.05); opacity: 1; filter: none; z-index: 2; border-color: var(--gold-soft); box-shadow: 0 40px 60px -32px rgba(0,0,0,.35); }
}
/* Touch: carrossel; o card centralizado recebe o destaque (classe via JS) */
@media (hover: none) {
  .cards.has-active .card { transform: scale(.96); opacity: .55; filter: blur(1.5px); }
  .cards.has-active .card.is-active { transform: scale(1); opacity: 1; filter: none; border-color: var(--gold-soft); box-shadow: 0 30px 50px -30px rgba(0,0,0,.35); }
}

/* Blocos 2 colunas ----------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split--reverse > :first-child { order: 2; }
.split__media { border-radius: var(--radius); overflow: hidden; background: var(--bg-sand); aspect-ratio: 4 / 3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.split__media:hover img { transform: scale(1.03); }
.split__media--plain { background: transparent; border-radius: 0; overflow: visible; aspect-ratio: auto; }
.split__media--plain img { height: auto; object-fit: contain; max-height: 560px; display: block; margin: 0 auto; }
.split__body .h2 { margin-bottom: 22px; }
.split__body p { color: var(--ink-2); font-size: 17px; }
.split__body .btn { margin-top: 28px; }

/* Soluções (3 cards com foto) ------------------------------ */
.solutions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.solution { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: var(--white); transition: transform .35s var(--ease), box-shadow .35s; }
.solution:hover { transform: translateY(-5px); box-shadow: 0 34px 60px -40px rgba(0,0,0,.4); }
.solution__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-sand); }
.solution__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.solution:hover .solution__media img { transform: scale(1.05); }
.solution__body { padding: 28px 28px 30px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.solution__tag { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.solution__body .h3 { font-size: 24px; }
.solution__body p { color: var(--ink-2); flex: 1; }
.solution__link { margin-top: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.solution__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.solution:hover .solution__link svg { transform: translateX(4px); }

/* Galeria --------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.gallery__item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--bg-sand); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }

/* Contato --------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.contact__info dl { margin: 32px 0 0; display: grid; gap: 22px; }
.contact__info dt { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 6px; }
.contact__info dd { margin: 0; font-size: 17px; color: var(--ink-2); }
.contact__info dd a:hover { color: var(--gold); }
.contact__whats { margin-top: 30px; }
.form { background: var(--white); border-radius: var(--radius); padding: 36px; border: 1px solid var(--line); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: block; font-size: 13px; font-weight: 500; color: var(--ink-2); margin: 0 0 6px 4px; }
.form .field { margin-bottom: 16px; }
.form input, .form textarea {
  width: 100%; font: inherit; font-weight: 300; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-alt);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--ink); background: var(--white); box-shadow: 0 0 0 4px rgba(175,125,32,.12); }
.form textarea { min-height: 140px; resize: vertical; }
.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form__note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form__alert { display: none; padding: 14px 16px; border-radius: 14px; margin-bottom: 16px; font-weight: 400; }
.form__alert.is-ok { display: block; background: #eef7ee; color: #1f5f2a; }
.form__alert.is-err { display: block; background: #fbeeee; color: #8a2020; }

/* Footer ---------------------------------------------------- */
.footer { background: var(--ink); color: var(--white); padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer__logo { height: 48px; width: auto; filter: brightness(0) invert(1); }
.footer__about { color: rgba(255,255,255,.72); margin-top: 20px; max-width: 40ch; }
.footer h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer li a { color: rgba(255,255,255,.78); transition: color .2s; }
.footer li a:hover { color: var(--white); }
.footer__bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.55); }

/* WhatsApp flutuante --------------------------------------- */
.whats {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px 12px 14px; border-radius: var(--pill);
  background: var(--ink); color: var(--white); font-weight: 500; font-size: 14px;
  box-shadow: 0 16px 32px -18px rgba(0,0,0,.6);
  transition: transform .25s var(--ease), background .2s;
}
.whats:hover { transform: translateY(-2px); background: #000; }
.whats svg { width: 22px; height: 22px; fill: #25d366; }

/* Animações de entrada -------------------------------------- */
:root { --reveal-dur: 1s; --reveal-ease: cubic-bezier(.16,1,.3,1); }

/* Bloco padrão: sobe suavemente e desfoca → nítido */
.reveal {
  opacity: 0; transform: translateY(36px); filter: blur(6px);
  transition: opacity var(--reveal-dur) var(--reveal-ease), transform var(--reveal-dur) var(--reveal-ease), filter var(--reveal-dur) var(--reveal-ease);
  will-change: opacity, transform, filter;
}
.reveal.is-in { opacity: 1; transform: none; filter: blur(0); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }

/* Imagens/cards: entra com leve escala; a foto dentro "assenta" */
.reveal--media { transform: translateY(28px) scale(.97); filter: none; }
.reveal--media img { transform: scale(1.08); transition: transform 1.4s var(--reveal-ease); }
.reveal--media.is-in img { transform: scale(1); }

/* Hero: sequência ao carregar (sem esperar scroll) */
.hero .reveal { --reveal-dur: 1.1s; }
.bento .bento__item { opacity: 0; transform: translateY(24px) scale(.96); transition: opacity .9s var(--reveal-ease), transform .9s var(--reveal-ease); }
.bento.is-in .bento__item { opacity: 1; transform: none; }
.bento.is-in .bento__item:nth-child(2) { transition-delay: .15s; }
.bento.is-in .bento__item:nth-child(3) { transition-delay: .3s; }

/* Detalhes que "desenham" ao aparecer */
.stat__label::before, .card__idx::after { transform: scaleX(0); transform-origin: left center; transition: transform .8s var(--reveal-ease) .35s; }
.stat__label::before { transform-origin: center; }
.is-in .stat__label::before, .is-in .card__idx::after { transform: scaleX(1); }

/* Navbar entra do topo */
.nav { animation: navIn .8s var(--reveal-ease) both; }
@keyframes navIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

/* Hover das imagens (mantido) já usa transform; nada a mudar */

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--media, .bento .bento__item { opacity: 1; transform: none; filter: none; transition: none; }
  .reveal--media img { transform: none; transition: none; }
  .stat__label::before, .card__idx::after { transform: none; transition: none; }
  .nav { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Responsivo ------------------------------------------------ */
@media (max-width: 1100px) {
  .section { padding: 84px 0; }
  .cards { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 12px 20px 28px; margin-left: -20px; margin-right: -20px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .cards::-webkit-scrollbar { display: none; }
  .card { flex: 0 0 62%; scroll-snap-align: center; min-height: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 44px; }
}
@media (max-width: 900px) {
  :root { --nav-h: 76px; --radius: 22px; }
  .nav__logo img { height: 56px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__mobile {
    display: none; flex-direction: column; gap: 4px; padding: 8px 0 20px; border-top: 1px solid var(--line);
  }
  .nav.is-open .nav__mobile { display: flex; }
  .nav__mobile a { padding: 14px 8px; font-size: 18px; border-bottom: 1px solid var(--line); }
  .nav__mobile .btn { margin-top: 14px; justify-content: center; }
  .hero { padding: 40px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__grid > .bento, .phero__grid > .bento { order: -1; }
  .hero .h1 { font-weight: 700; letter-spacing: -.02em; }
  .h2 { font-weight: 600; letter-spacing: -.005em; }
  .hero__brands-row { gap: 10px; justify-content: space-between; }
  .hero__brands-row a { width: calc((100% - 30px) / 4); }
  .hero__brands-row img { width: 100%; height: 22px; object-position: center; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .solutions { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item:first-child { grid-column: span 2; aspect-ratio: 16 / 10; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 26px 22px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .card { flex-basis: 76%; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .stat__num { font-size: 40px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .form__row { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .bento { gap: 10px; }
  .whats span { display: none; }
  .whats { padding: 12px; }
}

/* ==========================================================
   Páginas internas (Dropshipping, Corporativo, Agência)
   ========================================================== */
.phero { padding: 56px 0 80px; overflow: hidden; }
.phero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.phero__title { font-size: clamp(34px, 3.8vw, 52px); font-weight: 600; letter-spacing: -.025em; line-height: 1.08; max-width: 18ch; }
.phero__media { border-radius: var(--radius); overflow: hidden; background: var(--bg-sand); aspect-ratio: 5 / 4; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; }

.split--start { align-items: start; }
.section .center .lead { margin-top: 18px; }

/* Grade de destaques (texto) */
.feats { display: grid; gap: 16px; margin-top: 48px; }
.feats--3 { grid-template-columns: repeat(3, 1fr); }
.feats--4 { grid-template-columns: repeat(4, 1fr); }
.feats--5 { grid-template-columns: repeat(5, 1fr); }
.feat { background: var(--white); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; }
.feat:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -36px rgba(0,0,0,.35); }
.feat .h3 { font-size: 17px; line-height: 1.3; }
.feat .h3::before { content: ""; display: block; width: 28px; height: 2px; background: var(--gold); margin-bottom: 14px; }
.feat p { margin-top: 10px; font-size: 14.5px; color: var(--ink-2); }
.section--sand .feat, .section--alt .feat { border-color: transparent; }

/* Linha do tempo (ref. 21st.dev "tracking timeline") */
.tl { list-style: none; margin: 0; padding: 0 0 0 4px; position: relative; }
.tl::before { content: ""; position: absolute; left: 23px; top: 20px; bottom: 20px; width: 2px; background: linear-gradient(var(--gold-soft), var(--gold)); transform: scaleY(0); transform-origin: top; transition: transform 1.8s var(--reveal-ease) .2s; }
.tl.is-in::before { transform: scaleY(1); }
.tl__item { position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 20px; align-items: start; padding: 0 0 30px; }
.tl__item:last-child { padding-bottom: 0; }
.tl__dot { position: relative; width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--white); display: grid; place-items: center; box-shadow: 0 0 0 7px var(--bg); }
.section--sand .tl__dot { box-shadow: 0 0 0 7px var(--bg-sand); }
.tl__dot svg { width: 18px; height: 18px; }
.tl__dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--gold); opacity: 0; }
.tl__item.is-in .tl__dot::after { animation: tlPing 1.1s cubic-bezier(0,0,.2,1) .15s 1; }
@keyframes tlPing { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(2.1); opacity: 0; } }
.tl__body { padding-top: 6px; }
.tl__body .h3 { font-size: 17px; }
.tl__meta { display: inline-block; margin-top: 4px; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.tl__body p { margin-top: 8px; font-size: 14.5px; color: var(--ink-2); max-width: 46ch; }
@media (prefers-reduced-motion: reduce) { .tl::before { transform: none; transition: none; } .tl__item.is-in .tl__dot::after { animation: none; } }

/* Produtos / segmentos (foto + texto) */
.prods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.prod { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s; }
.prod:hover { transform: translateY(-5px); box-shadow: 0 34px 60px -40px rgba(0,0,0,.4); }
.prod__media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-sand); }
.prod__media--wide { aspect-ratio: 16 / 10; }
.prod__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.prod:hover .prod__media img { transform: scale(1.04); }
.prod__body { padding: 22px 22px 24px; }
.prod__body .h3 { font-size: 18px; }
.prod__body p { margin-top: 8px; font-size: 14px; color: var(--ink-2); }

/* Lista com check dourado */
.checks { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 28px; color: var(--ink-2); font-size: 16px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }

/* Mosaico de fotos (portfólio) */
.mosaic { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 240px; gap: 14px; margin-top: 48px; }
.mosaic__item { border-radius: 22px; overflow: hidden; background: var(--bg-sand-2); }
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; }
.mosaic__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic__item:nth-child(2) { grid-column: span 2; }
.mosaic__item:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.mosaic__item:nth-child(4) { grid-column: span 1; }
.mosaic__item:nth-child(5) { grid-column: span 1; }

/* Depoimentos */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.quote { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; gap: 22px; }
.quote blockquote { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-2); flex: 1; }
.quote figcaption { display: flex; align-items: center; gap: 14px; }
.quote figcaption img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.quote figcaption strong { display: block; font-weight: 500; }
.quote figcaption a { font-size: 13px; color: var(--muted); }
.quote figcaption a:hover { color: var(--gold); }

/* Pílulas, cases e duo (agência) */
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.pills span { padding: 10px 18px; border-radius: var(--pill); background: var(--white); border: 1px solid var(--gold-soft); font-size: 14px; font-weight: 400; }
.cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.case { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; }
.case img { height: 30px; width: auto; margin-bottom: 18px; }
.case p { color: var(--ink-2); }
.case a { display: inline-block; margin-top: 14px; font-weight: 400; border-bottom: 1px solid var(--gold-soft); }
.cases--3 { grid-template-columns: repeat(3, 1fr); max-width: 660px; margin-left: auto; margin-right: auto; }
.case--img { padding: 0; overflow: hidden; aspect-ratio: 1 / 2; display: block; transition: transform .35s var(--ease), box-shadow .35s; }
.case--img img { width: 100%; height: 100%; object-fit: cover; margin: 0; display: block; transition: transform .9s var(--ease); }
.case--img:hover { transform: translateY(-5px); box-shadow: 0 34px 60px -40px rgba(0,0,0,.4); }
.case--img:hover img { transform: scale(1.03); }
.duo { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.duo__col { border-radius: var(--radius); padding: 34px 32px; background: var(--bg-sand); }
.duo__col--dark { background: var(--ink); color: var(--white); }
.duo__col--dark .checks li { color: rgba(255,255,255,.85); }
.duo__col .checks li { font-size: 18px; }

@media (max-width: 1100px) {
  .feats--4, .feats--5 { grid-template-columns: repeat(2, 1fr); }
  .prods { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .mosaic__item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .mosaic__item:nth-child(1), .mosaic__item:nth-child(3) { grid-row: span 2; }
  .mosaic__item:nth-child(5) { grid-column: span 2; }
}
@media (max-width: 900px) {
  .phero { padding: 32px 0 64px; }
  .phero__grid { grid-template-columns: 1fr; gap: 32px; }
  .phero__grid > .phero__media { order: -1; aspect-ratio: 4 / 3; }
  .phero__title { max-width: none; }
  .split--start { grid-template-columns: 1fr; }
  .cases, .duo { grid-template-columns: 1fr; }
  /* Cases no mobile: carrossel horizontal (auto-rolagem lenta via JS, arrastável) */
  .cases--3 { display: flex; gap: 12px; max-width: none; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 6px 20px 12px; margin: 40px -20px 0; }
  .cases--3::-webkit-scrollbar { display: none; }
  .cases--3 .case--img { flex: 0 0 176px; width: 176px; }
}
@media (max-width: 600px) {
  .feats--3, .feats--4, .feats--5 { grid-template-columns: 1fr; }
  .prods { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .tl__item { grid-template-columns: 36px 1fr; gap: 14px; }
  .tl__dot { width: 36px; height: 36px; }
  .tl::before { left: 21px; }
}
