/* ============================================
   Is'Art — Landing Page
   Paleta: Bordô · Creme · Navy · Terracota
   ============================================ */

:root {
  --wine: #7b1b29;
  --wine-deep: #5e1320;
  --wine-soft: #863e4b;
  --red: #902e20;
  --cream: #fef9eb;
  --cream-2: #f6ecd6;
  --navy: #223458;
  --clay: #b5673a;
  --clay-soft: #c98a5e;
  --gold: #c9a24b;
  --ink: #2a1416;
  --blush: #e8c5be;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1280px;
  --pad: clamp(1.25rem, 5vw, 6rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
::selection { background: var(--wine); color: var(--cream); }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: -150%;
  z-index: 9998; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-8%, 4%); }
  40% { transform: translate(5%, -6%); }
  60% { transform: translate(-3%, 7%); }
  80% { transform: translate(6%, 3%); }
}

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid var(--cream);
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease);
}
.cursor-dot { width: 5px; height: 5px; background: var(--cream); }
.cursor.is-hover { width: 64px; height: 64px; background: rgba(254,249,235,.12); }
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
}

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--wine);
  display: grid; place-items: center;
  transition: transform 1s var(--ease) .2s;
}
.loader.done { transform: translateY(-100%); }
.loader__inner { text-align: center; }
.loader__mark {
  font-family: var(--font-serif); font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 5rem); color: var(--cream);
  letter-spacing: -0.02em; display: block;
}
.loader__ap { color: var(--clay-soft); }
.loader__sub { display: block; font-family: var(--font-serif); font-style: italic; font-size: 1rem; color: var(--blush); letter-spacing: .08em; margin-top: .2rem; }
.loader__line {
  display: block; width: 180px; max-width: 50vw; height: 2px;
  background: rgba(254,249,235,.2); margin: 1.2rem auto 0; overflow: hidden;
}
.loader__bar { display: block; height: 100%; width: 0; background: var(--cream); animation: load 1.4s var(--ease) forwards; }
@keyframes load { to { width: 100%; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--pad);
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s, color .4s var(--ease);
  color: var(--ink);
}
.nav.scrolled {
  padding: .9rem var(--pad);
  mix-blend-mode: normal;
  background: rgba(123, 27, 41, .9);
  backdrop-filter: blur(14px);
  color: var(--cream);
}
.nav__brand { font-family: var(--font-serif); font-weight: 800; font-size: 1.6rem; letter-spacing: -.02em; }
.nav__ap, .nav__brand .nav__ap { color: var(--clay-soft); }
.nav.scrolled .nav__ap { color: var(--blush); }
.nav__links { display: flex; gap: 2.2rem; }
.nav__links a { font-size: .82rem; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: currentColor; transition: width .4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  background: #2a3f66; color: var(--cream);
  border: 1px solid #2a3f66; padding: .65rem 1.25rem; border-radius: 100px;
  box-shadow: 0 6px 18px -8px rgba(34, 52, 88, .55);
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.nav__cta svg { transition: transform .4s var(--ease); }
.nav__cta:hover { background: #35497d; border-color: #35497d; transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(34, 52, 88, .8); }
.nav__cta:hover svg { transform: translateX(4px); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 6px; padding: 8px; }
.nav__burger span { display: block; width: 26px; height: 2px; background: currentColor; transition: transform .4s var(--ease), opacity .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 880;
  background: var(--wine); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
  font-family: var(--font-serif); font-size: clamp(1.8rem, 7vw, 3rem);
  clip-path: circle(0% at calc(100% - 3rem) 3rem);
  transition: clip-path .7s var(--ease);
  pointer-events: none;
}
.mobile-menu.open { clip-path: circle(150% at calc(100% - 3rem) 3rem); pointer-events: auto; }
.mobile-menu a { opacity: .9; transition: opacity .3s; }
.mobile-menu a:hover { opacity: 1; }
.mobile-menu__cta { font-family: var(--font-sans); font-size: 1rem; text-transform: uppercase; letter-spacing: .15em; background: #2a3f66; border: 1px solid #2a3f66; color: var(--cream); padding: .8rem 1.8rem; border-radius: 100px; margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 600; font-size: .92rem; letter-spacing: .01em;
  padding: 1rem 1.8rem; border-radius: 100px;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform .4s var(--ease); }
.btn--solid { background: var(--wine); color: var(--cream); box-shadow: 0 10px 30px -10px rgba(123,27,41,.5); }
.btn--solid:hover { transform: translateY(-3px); background: var(--wine-deep); }
.btn--solid:hover svg { transform: translateX(4px); }
.btn--ghost { color: var(--ink); border: 1px solid rgba(42,20,22,.25); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-3px); }
.btn--cream { background: var(--cream); color: var(--wine); }
.btn--cream:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(0,0,0,.4); }
.btn--outline-cream { color: var(--cream); border: 1px solid rgba(254,249,235,.4); }
.btn--outline-cream:hover { background: var(--cream); color: var(--wine); transform: translateY(-3px); }

/* ---------- Shared section bits ---------- */
.section-num {
  display: inline-block; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em; color: var(--clay);
  margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: 1.04;
  letter-spacing: -.02em; color: var(--ink);
}
.section-title em { color: var(--wine); }
.section-sub { max-width: 46ch; margin-top: 1.4rem; font-size: 1.05rem; color: rgba(42,20,22,.7); }
.section-head { padding: 0 var(--pad); max-width: var(--maxw); margin: 0 auto; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-head--center { text-align: center; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .82rem; font-weight: 500; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 4px rgba(181,103,58,.18); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  padding: clamp(7rem, 14vh, 10rem) var(--pad) 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.orb--1 { width: 46vw; height: 46vw; background: radial-gradient(circle, var(--blush), transparent 70%); top: -8%; right: -8%; animation: float1 14s ease-in-out infinite; }
.orb--2 { width: 38vw; height: 38vw; background: radial-gradient(circle, rgba(181,103,58,.4), transparent 70%); bottom: -10%; left: -6%; animation: float2 18s ease-in-out infinite; }
@keyframes float1 { 50% { transform: translate(-4%, 6%) scale(1.08); } }
@keyframes float2 { 50% { transform: translate(5%, -5%) scale(1.12); } }

/* Decoração Y2K do hero */
.hero__deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
/* Cena de objetos sem fundo preenchendo o espaço branco do hero */
.hero__scene { position: absolute; inset: 0; left: 47%; z-index: 1; pointer-events: none; }
.hero__feature-caption {
  position: absolute; top: 7%; left: 3%; max-width: 250px; text-align: left;
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 1.7vw, 1.7rem); line-height: 1.2; color: var(--ink);
}
.hero__feature-caption em { color: var(--wine); }
.hero__feature-kicker {
  display: block; font-family: var(--font-sans); font-style: normal;
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em;
  color: var(--clay); margin-bottom: .6rem;
}
.hero__obj { position: absolute; height: auto; filter: drop-shadow(0 18px 26px rgba(94,16,29,.26)); }
.hero__obj--disco    { top: 27%; left: 5%;  width: clamp(180px, 17vw, 300px); animation: objFloat 7s   ease-in-out infinite; }
.hero__obj--camera   { top: 5%;  left: 34%; width: clamp(150px, 15vw, 250px); transform: rotate(-4deg); animation: objFloat 8s   ease-in-out infinite .3s; }
.hero__obj--record   { top: 64%; left: 14%; width: clamp(105px, 10.5vw, 170px); transform: rotate(8deg);  animation: objFloat 9s   ease-in-out infinite .7s; }
.hero__obj--cherries { top: 45%; left: 56%; width: clamp(120px, 12vw, 200px); transform: rotate(-8deg); animation: objFloat 9s   ease-in-out infinite .9s; }
.hero__obj--flip     { top: 6%;  left: 67%; width: clamp(110px, 11vw, 178px); transform: rotate(8deg);  animation: objFloat 7.5s ease-in-out infinite 1.2s; }
.hero__obj--star     { top: 34%; left: 44%; width: clamp(62px,  6vw, 106px);  transform: rotate(-6deg); animation: objFloat 6.5s ease-in-out infinite .5s; }
@keyframes objFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
@keyframes cherryFloat { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-18px) rotate(4deg); } }
.spark { position: absolute; animation: twinkle 3s ease-in-out infinite; transform-origin: center; }
.spark--gold { color: var(--gold); }
.spark--wine { color: var(--wine); }
.spark--clay { color: var(--clay); }
@keyframes twinkle { 0%,100% { transform: scale(.55) rotate(0deg); opacity: .3; } 50% { transform: scale(1) rotate(45deg); opacity: 1; } }

.hero__top { position: relative; z-index: 2; }
.hero__title {
  position: relative; z-index: 2;
  font-family: var(--font-serif); font-weight: 800;
  font-size: clamp(2.7rem, 9vw, 8rem); line-height: .98;
  letter-spacing: -.03em; color: var(--ink);
  margin: auto 0;
}
.hero__title em { color: var(--wine); font-weight: 600; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(110%); animation: rise 1.1s var(--ease) forwards; }
.hero__title .line:nth-child(1) > span { animation-delay: .9s; }
.hero__title .line:nth-child(2) > span { animation-delay: 1.02s; }
.hero__title .line:nth-child(3) > span { animation-delay: 1.14s; }
.hero__title .line:nth-child(4) > span { animation-delay: 1.26s; }
@keyframes rise { to { transform: none; } }
.hero__dot { color: var(--clay); }
/* Título-slogan (frase mais longa que o título original) */
.hero__title--slogan { font-size: clamp(1.95rem, 6.4vw, 5.4rem); line-height: 1.04; }
.cherry--title { display: inline-block; width: 1.05em; height: 1.05em; margin-left: .16em; vertical-align: -.22em; animation: cherrySway 4s ease-in-out infinite; transform-origin: 50% 10%; filter: drop-shadow(0 4px 6px rgba(110,16,32,.28)); }

.hero__slogan { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .75rem; margin-top: clamp(1.4rem, 3vh, 2.2rem); font-family: var(--font-serif); font-style: italic; font-size: clamp(1.15rem, 2.4vw, 1.7rem); color: var(--ink); }
.hero__slogan em { color: var(--wine); font-weight: 600; }
.hero__slogan .cherry { width: clamp(28px, 4vw, 40px); height: auto; flex-shrink: 0; animation: cherrySway 4s ease-in-out infinite; transform-origin: 50% 8%; }
@keyframes cherrySway { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }

.hero__bottom { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-top: clamp(1.6rem, 4vh, 3rem); }
.hero__lead { max-width: 42ch; font-size: 1.1rem; color: rgba(42,20,22,.78); }
.hero__lead strong { color: var(--wine); font-weight: 600; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll { position: absolute; left: var(--pad); bottom: 2rem; z-index: 2; display: flex; align-items: center; gap: .8rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; color: rgba(42,20,22,.5); }
.hero__scroll-line { width: 50px; height: 1px; background: rgba(42,20,22,.4); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--wine); transform: translateX(-100%); animation: scrollline 2s var(--ease) infinite; }
@keyframes scrollline { 50% { transform: translateX(0); } 100% { transform: translateX(100%); } }

/* ============================================
   MARQUEE
   ============================================ */
.marquee { background: var(--wine); color: var(--cream); padding: 1.4rem 0; overflow: hidden; border-top: 1px solid rgba(254,249,235,.1); border-bottom: 1px solid rgba(254,249,235,.1); }
.marquee__track { display: flex; align-items: center; gap: 2.5rem; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 500; }
.marquee__track .sep { font-style: normal; color: var(--clay-soft); font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================
   SERVIÇOS
   ============================================ */
.services { padding: clamp(5rem, 12vh, 9rem) 0; max-width: var(--maxw); margin: 0 auto; }
.services__grid { padding: 0 var(--pad); display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service {
  position: relative; padding: 2.5rem; border-radius: 22px;
  background: linear-gradient(160deg, #fff 0%, var(--cream-2) 100%);
  border: 1px solid rgba(123,27,41,.1);
  overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.service::before { content: ""; position: absolute; inset: 0; background: var(--wine); transform: translateY(101%); transition: transform .6s var(--ease); z-index: 0; }
.service > * { position: relative; z-index: 1; transition: color .5s var(--ease); }
.service:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(123,27,41,.4); border-color: transparent; }
.service:hover::before { transform: translateY(0); }
.service:hover, .service:hover h3, .service:hover p, .service:hover li { color: var(--cream); }
.service:hover .service__num { color: rgba(254,249,235,.35); }
.service:hover .service__icon { border-color: rgba(254,249,235,.4); color: var(--cream); }
.service:hover li::before { color: var(--clay-soft); }

.service__num { position: absolute; top: 1.6rem; right: 1.8rem; font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; color: rgba(123,27,41,.12); }
.service__icon { width: 54px; height: 54px; border-radius: 14px; border: 1px solid rgba(123,27,41,.25); display: grid; place-items: center; color: var(--wine); margin-bottom: 1.6rem; }
.service__icon svg { width: 26px; height: 26px; }
.service h3 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--ink); margin-bottom: .8rem; }
.service p { color: rgba(42,20,22,.72); margin-bottom: 1.4rem; font-size: .98rem; }
.service ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.service li { font-size: .88rem; color: rgba(42,20,22,.7); padding-left: 1.3rem; position: relative; }
.service li::before { content: "✦"; position: absolute; left: 0; color: var(--clay); font-size: .7rem; top: 2px; }
.services__more { padding: 2.5rem var(--pad) 0; text-align: center; font-size: 1rem; color: rgba(42,20,22,.7); }
.services__more a { color: var(--wine); font-weight: 600; border-bottom: 1px solid rgba(123,27,41,.3); padding-bottom: 2px; transition: border-color .3s; }
.services__more a:hover { border-color: var(--wine); }

/* ============================================
   SOBRE / MANIFESTO
   ============================================ */
.about { background: var(--navy); color: var(--cream); padding: clamp(6rem, 14vh, 11rem) var(--pad); }
.about__inner { max-width: var(--maxw); margin: 0 auto; }
.about .section-num { color: var(--clay-soft); }
.about__manifesto {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1.6rem, 4.5vw, 3.4rem); line-height: 1.28;
  letter-spacing: -.01em; max-width: 20ch; margin-bottom: 4rem;
}
.about__manifesto em { color: var(--clay-soft); font-style: italic; }
.reveal-word { display: inline-block; opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.about.in .reveal-word { opacity: 1; transform: none; }
.about__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; max-width: 900px; margin-left: auto; }
.about__cols p { font-size: 1.05rem; color: rgba(254,249,235,.82); }
.about__cols strong { color: var(--cream); font-weight: 600; }

/* TIME */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 4rem; }
.team__card { display: flex; gap: 1.5rem; align-items: flex-start; padding: 2rem; border-radius: 18px; border: 1px solid rgba(254,249,235,.15); background: rgba(254,249,235,.03); transition: background .5s var(--ease), transform .5s var(--ease), border-color .5s; }
.team__card:hover { background: rgba(254,249,235,.07); transform: translateY(-4px); border-color: rgba(254,249,235,.3); }
.team__avatar { flex-shrink: 0; width: 76px; height: 76px; border-radius: 50%; overflow: hidden; display: grid; place-items: center; font-family: var(--font-serif); font-weight: 700; font-size: 1.8rem; color: var(--cream); background: linear-gradient(150deg, var(--wine), var(--clay)); box-shadow: 0 6px 18px -6px rgba(0,0,0,.4); }
.team__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.team__info h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--cream); display: flex; align-items: center; flex-wrap: wrap; gap: .2rem; }
.team__nick { font-family: var(--font-sans); font-weight: 500; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: var(--clay-soft); border: 1px solid rgba(201,138,94,.5); padding: .3em .7em; border-radius: 100px; margin-left: .4rem; }
.team__role { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--clay-soft); margin: .25rem 0 .8rem; }
.team__info p { font-size: .95rem; color: rgba(254,249,235,.75); }

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diff { padding: clamp(5rem, 12vh, 9rem) 0; max-width: var(--maxw); margin: 0 auto; }
.diff__grid { padding: 0 var(--pad); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem 2.5rem; }
.diff__item { padding-top: 1.6rem; border-top: 2px solid rgba(123,27,41,.18); transition: border-color .4s var(--ease); }
.diff__item:hover { border-color: var(--wine); }
.diff__n { font-family: var(--font-serif); font-size: .9rem; color: var(--clay); letter-spacing: .1em; }
.diff__item h3 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--ink); margin: .5rem 0 .6rem; }
.diff__item p { font-size: .95rem; color: rgba(42,20,22,.7); }

/* ============================================
   CLIENTES
   ============================================ */
.clients { background: var(--navy); color: var(--cream); padding: clamp(5rem, 12vh, 9rem) 0; }
.clients .section-num { color: var(--clay-soft); }
.clients .section-title, .clients .section-title em { color: var(--cream); }
.clients .section-title em { color: var(--clay-soft); }
.clients .section-sub { color: rgba(254,249,235,.7); }
.clients__logos { max-width: var(--maxw); margin: 0 auto clamp(2rem, 4vw, 3.2rem); padding: 0 var(--pad); display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1rem; }
.logo-card { min-width: 0; background: var(--cream); border-radius: 16px; height: clamp(106px, 11vw, 138px); display: flex; align-items: center; justify-content: center; padding: 1.1rem 1.4rem; overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.logo-card:hover { transform: translateY(-6px); box-shadow: 0 18px 34px -16px rgba(0,0,0,.45); }
.logo-card img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

.clients__grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(254,249,235,.12); border: 1px solid rgba(254,249,235,.12); border-radius: 18px; overflow: hidden; }
.client { background: var(--navy); padding: 1.8rem 1.5rem; display: flex; flex-direction: column; gap: .3rem; transition: background .45s var(--ease); }
.client:hover { background: #2c4067; }
.client__name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--cream); }
.client__seg { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--clay-soft); }

/* ============================================
   RESULTADOS
   ============================================ */
.results { position: relative; background: var(--ink); color: var(--cream); padding: clamp(5rem, 12vh, 9rem) 0; overflow: hidden; }
.results__glow { position: absolute; top: 50%; left: 50%; width: 70vw; height: 70vw; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(123,27,41,.5), transparent 60%); pointer-events: none; }
.results .section-num { color: var(--clay-soft); }
.results .section-title, .results .section-title em { color: var(--cream); }
.results .section-title em { color: var(--clay-soft); }
.results .section-sub { color: rgba(254,249,235,.7); }
.results__grid { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(254,249,235,.12); border: 1px solid rgba(254,249,235,.12); border-radius: 20px; overflow: hidden; }
.stat { background: var(--ink); padding: 2.8rem 2rem; display: flex; flex-direction: column; gap: .4rem; transition: background .5s var(--ease); }
.stat:hover { background: #38191c; }
.stat__num { font-family: var(--font-sans); font-weight: 800; font-size: clamp(2.7rem, 6vw, 4.6rem); line-height: 1; letter-spacing: -.03em; color: var(--cream); font-variant-numeric: tabular-nums lining-nums; }
.stat__label { font-size: .92rem; color: rgba(254,249,235,.7); margin-top: .3rem; }
.stat__delta { font-size: .82rem; font-weight: 600; color: var(--clay-soft); margin-top: .4rem; }
.stat__delta--gold { color: var(--gold); }

/* CTA da seção de resultados */
.results__cta { position: relative; z-index: 1; max-width: var(--maxw); margin: clamp(3rem, 6vw, 4.5rem) auto 0; padding: 0 var(--pad); text-align: center; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.results__cta-text { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.15; color: var(--cream); }
.results__cta-sub { color: rgba(254,249,235,.72); max-width: 48ch; margin-bottom: 1.6rem; font-size: 1.02rem; }
.results__cta-btn { font-size: 1rem; padding: 1.1rem 2.2rem; box-shadow: 0 16px 34px -12px rgba(0,0,0,.55); }
.results__cta-btn:hover { box-shadow: 0 20px 40px -12px rgba(201,162,75,.4); }

/* ============================================
   PORTFÓLIO
   ============================================ */
.portfolio { padding: clamp(5rem, 12vh, 9rem) 0; max-width: var(--maxw); margin: 0 auto; }
.portfolio__list { padding: 0 var(--pad); display: flex; flex-direction: column; }
.portfolio__cta { padding: clamp(2.5rem, 5vw, 3.5rem) var(--pad) 0; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.portfolio__cta-note { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(42,20,22,.45); }

/* Galeria de trabalhos (masonry via grid + JS) */
.works { padding: 0 var(--pad); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; grid-auto-rows: 8px; grid-auto-flow: row dense; }
.work { position: relative; display: block; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px -24px rgba(123,27,41,.55); }
.work img { width: 100%; height: auto; display: block; object-fit: cover; transition: transform .9s var(--ease); }
.work:hover img { transform: scale(1.06); }
.work__info { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem 1.5rem; background: linear-gradient(to top, rgba(42,20,22,.86), rgba(42,20,22,.15) 42%, transparent 68%); }
.work__cat { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; color: var(--clay-soft); margin-bottom: .25rem; }
.work__name { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.3rem, 2.1vw, 1.85rem); color: var(--cream); line-height: 1.1; }
@media (max-width: 1000px) { .works { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .works { grid-template-columns: 1fr; } }
.case {
  display: grid; grid-template-columns: 360px 1fr auto; align-items: center; gap: 2.8rem;
  padding: 2.6rem 0; border-top: 1px solid rgba(123,27,41,.15);
  transition: padding .5s var(--ease);
}
.case:last-child { border-bottom: 1px solid rgba(123,27,41,.15); }
.case__media { width: 360px; height: 260px; border-radius: 18px; overflow: hidden; background: var(--cream-2); box-shadow: 0 16px 34px -20px rgba(123,27,41,.45); }
.case__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .8s var(--ease); }
.case:hover { padding-left: 1.5rem; padding-right: 1.5rem; }
.case:hover .case__media img { transform: scale(1.06); }
.case__head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: .6rem; flex-wrap: wrap; }
.case__head h3 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--ink); transition: color .4s; }
.case:hover .case__head h3 { color: var(--wine); }
.case__year { font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--clay); border: 1px solid rgba(181,103,58,.4); padding: .2rem .7rem; border-radius: 100px; }
.case__info p { color: rgba(42,20,22,.7); max-width: 52ch; margin-bottom: 1rem; }
.case__tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.case__tags span { font-size: .76rem; color: rgba(42,20,22,.6); background: rgba(123,27,41,.07); padding: .3rem .8rem; border-radius: 100px; }
.case__arrow { width: 58px; height: 58px; border-radius: 50%; border: 1px solid rgba(123,27,41,.25); display: grid; place-items: center; color: var(--wine); transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease); flex-shrink: 0; }
.case:hover .case__arrow { background: var(--wine); color: var(--cream); transform: rotate(45deg); }

/* ============================================
   QUOTE
   ============================================ */
.quote { background: var(--wine); color: var(--cream); padding: clamp(5rem, 14vh, 9rem) var(--pad); text-align: center; }
.quote blockquote { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.6rem, 4.5vw, 3.2rem); line-height: 1.3; max-width: 22ch; margin: 0 auto; position: relative; }
.quote blockquote em { color: var(--blush); }
.quote__mark { display: block; font-size: 5rem; line-height: 0; color: var(--clay-soft); margin-bottom: 2rem; }
.quote cite { display: block; margin-top: 2.5rem; font-family: var(--font-sans); font-style: normal; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; color: var(--blush); }

/* ============================================
   CONTATO
   ============================================ */
.contact { background: var(--cream); padding: clamp(5rem, 12vh, 9rem) 0 clamp(4rem, 9vh, 7rem); }
.contact__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); text-align: center; }
.contact__title { font-family: var(--font-serif); font-weight: 800; font-size: clamp(2.4rem, 8vw, 6rem); line-height: 1; letter-spacing: -.03em; color: var(--ink); margin-bottom: 1.5rem; }
.contact__title em { color: var(--wine); font-weight: 600; }
.contact__title .line { display: block; overflow: hidden; }
.contact__title .line > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease); }
.contact.in .contact__title .line > span { transform: none; }
.contact.in .contact__title .line:nth-child(2) > span { transition-delay: .1s; }
.contact__sub { max-width: 40ch; margin: 0 auto 2.5rem; font-size: 1.1rem; color: rgba(42,20,22,.7); }
.contact__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.contact__actions .btn--cream { background: var(--wine); color: var(--cream); }
.contact__actions .btn--cream:hover { background: var(--wine-deep); }
.contact__actions .btn--outline-cream { color: var(--ink); border-color: rgba(42,20,22,.25); }
.contact__actions .btn--outline-cream:hover { background: var(--ink); color: var(--cream); }
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(123,27,41,.15); border: 1px solid rgba(123,27,41,.15); border-radius: 18px; overflow: hidden; max-width: 900px; margin: 0 auto; }
.contact__item { background: var(--cream); padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; transition: background .4s var(--ease); }
.contact__item:hover { background: #fff; }
.contact__label { font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; color: var(--clay); font-weight: 600; }
.contact__value { font-family: var(--font-serif); font-size: 1.3rem; color: var(--ink); transition: color .3s; }
.contact__item:hover .contact__value { color: var(--wine); }

/* THANKS */
.thanks { background: var(--wine); margin-top: clamp(4rem, 8vh, 7rem); padding: clamp(4rem, 10vh, 8rem) var(--pad); overflow: hidden; }
.thanks__word { font-family: var(--font-serif); font-weight: 800; font-style: italic; color: var(--cream); font-size: clamp(2.6rem, 13.5vw, 12rem); line-height: .9; text-align: center; letter-spacing: -.02em; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--wine-deep); color: var(--cream); padding: clamp(3rem, 6vh, 5rem) var(--pad); text-align: center; }
.footer__brand { font-family: var(--font-serif); font-weight: 800; font-size: 2.4rem; }
.footer__brand span { color: var(--clay-soft); }
.footer__slogan { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; color: var(--blush); margin-top: .8rem; }
.footer__tag { color: rgba(254,249,235,.55); margin: .5rem auto 2.5rem; font-size: .9rem; max-width: 46ch; }
.footer__meta { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; font-size: .82rem; color: rgba(254,249,235,.5); text-transform: uppercase; letter-spacing: .1em; }
.footer__meta a:hover { color: var(--cream); }

/* ============================================
   FAB (WhatsApp flutuante)
   ============================================ */
.fab { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 800; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transform: translateY(120px); transition: transform .6s var(--ease), box-shadow .4s; }
.fab.show { transform: none; }
.fab:hover { box-shadow: 0 16px 36px -8px rgba(37,211,102,.8); }
.fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ============================================
   BANNER DE COOKIES
   ============================================ */
.cookie {
  position: fixed; left: 50%; bottom: 1.2rem; transform: translateX(-50%);
  z-index: 950; width: min(900px, calc(100% - 2rem));
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
  background: var(--wine); color: var(--cream);
  padding: 1.1rem 1.5rem; border-radius: 16px;
  box-shadow: 0 22px 54px -16px rgba(0,0,0,.55); border: 1px solid rgba(254,249,235,.15);
  animation: cookieIn .6s var(--ease) both;
}
.cookie[hidden] { display: none; }
@keyframes cookieIn { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.cookie__text { font-size: .92rem; line-height: 1.5; color: rgba(254,249,235,.85); max-width: 56ch; margin: 0; }
.cookie__cherry { margin-right: .2rem; }
.cookie__text a { color: var(--blush); text-decoration: underline; text-underline-offset: 2px; }
.cookie__text a:hover { color: var(--cream); }
.cookie__actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie__btn { font-family: var(--font-sans); font-weight: 600; font-size: .85rem; padding: .65rem 1.4rem; border-radius: 100px; cursor: pointer; border: 1px solid transparent; transition: transform .3s var(--ease), background .3s var(--ease); }
.cookie__btn--accept { background: var(--cream); color: var(--wine); }
.cookie__btn--accept:hover { transform: translateY(-2px); }
.cookie__btn--decline { background: transparent; color: var(--cream); border-color: rgba(254,249,235,.4); }
.cookie__btn--decline:hover { background: rgba(254,249,235,.12); }

/* ============================================
   PÁGINA LEGAL (Política de Privacidade)
   ============================================ */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(7rem, 13vh, 10rem) var(--pad) clamp(4rem, 8vh, 6rem); }
.legal__back { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--clay); margin-bottom: 2rem; transition: gap .3s var(--ease); }
.legal__back:hover { gap: .8rem; }
.legal h1 { font-family: var(--font-serif); font-weight: 800; font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.05; color: var(--ink); margin-bottom: .6rem; }
.legal h1 em { color: var(--wine); }
.legal__updated { color: rgba(42,20,22,.55); font-size: .9rem; margin-bottom: 2.8rem; }
.legal h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.3rem, 3vw, 1.7rem); color: var(--wine); margin: 2.4rem 0 .8rem; }
.legal p { color: rgba(42,20,22,.82); line-height: 1.75; margin-bottom: 1rem; }
.legal ul { padding-left: 1.3rem; margin: 0 0 1.2rem; }
.legal li { color: rgba(42,20,22,.82); line-height: 1.7; margin-bottom: .5rem; }
.legal a { color: var(--wine); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--ink); font-weight: 600; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav { mix-blend-mode: normal; color: var(--cream); }
  .nav:not(.scrolled) { color: var(--ink); }
  .services__grid { grid-template-columns: 1fr; }
  .about__cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .team { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: 1fr; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .clients__logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; gap: 1.4rem; }
  .case__media { width: 100%; height: 250px; }
  .case__arrow { display: none; }
  .hero__deco { display: none; }
  /* Objetos sem fundo no mobile: cena cobre o hero, objetos nos espaços vazios */
  .hero__scene { left: 0; }
  .hero__obj--record, .hero__obj--flip, .hero__obj--camera, .hero__obj--star { display: none; }
  .hero__obj--cherries { top: 15%; right: 4%;  left: auto; width: 23vw; transform: rotate(-6deg); }
  .hero__obj--disco    { top: 27%; right: 2%;  left: auto; width: 35vw; }
}
@media (max-width: 540px) {
  .results__grid { grid-template-columns: 1fr; }
  .clients__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service { padding: 2rem 1.6rem; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__scroll { display: none; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-word { opacity: 1 !important; transform: none !important; }
  .hero__title .line > span { transform: none; }
}
