/* ============================================================
   CREATIVE GASTRONOMIA & EVENTOS
   Design system v3: dark premium + acentos neon
   Base #111820 · superfícies #1C252D · texto #F5F5F2
   Acentos: ciano #22DDEB · menta #4EE6A8 · amarelo #FFD447 · rosa #F26BB5 · roxo #8A5CFF
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Acentos da paleta */
  --cyan:   #22DDEB;
  --mint:   #4EE6A8;
  --yellow: #FFD447;
  --pink:   #F26BB5;
  --violet: #8A5CFF;

  /* Aliases (mantêm o CSS existente funcionando, recolorido) */
  --aqua:        #22DDEB;
  --aqua-light:  #63e9f4;
  --aqua-deep:   #19c6d3;
  --aqua-50:     rgba(34,221,235,.12);
  --orange:      #FFD447;
  --orange-soft: #FFE07A;
  --orange-deep: #F0C63C;
  --orange-50:   rgba(255,212,71,.12);
  --purple:      #8A5CFF;
  --purple-light:#A987FF;
  --purple-deep: #6B3FE0;
  --purple-50:   rgba(138,92,255,.14);
  --mint-50:     rgba(78,230,168,.12);
  --pink-50:     rgba(242,107,181,.12);

  /* Superfícies (escuras) */
  --bg:     #111820;
  --bg-2:   #1C252D;
  --bg-3:   #0c121a;
  --card:   #1a232c;
  --card-2: #212c36;
  --line:   rgba(245,245,242,.10);
  --line-2: rgba(245,245,242,.18);

  /* Texto */
  --ink:   #F5F5F2;
  --ink-2: rgba(245,245,242,.70);
  --muted: rgba(245,245,242,.48);

  /* Formas */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --shadow: 0 30px 70px -34px rgba(0,0,0,.75), 0 6px 18px -10px rgba(0,0,0,.5);
  --shadow-soft: 0 12px 30px -20px rgba(0,0,0,.6);
  --shadow-glow: 0 22px 60px -18px rgba(34,221,235,.32);

  --container: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.2, .7, .2, 1);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Hanken Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--cyan); color: #08131a; }

/* Grão sutil */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .04; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 11vw, 148px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }

/* ---------- Tipografia ---------- */
.display {
  font-family: var(--font-display); font-weight: 600; font-optical-sizing: auto;
  font-size: clamp(2.7rem, 7.2vw, 5.8rem); line-height: .98; letter-spacing: -0.02em; color: var(--ink);
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.015em; color: var(--ink); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.3rem); color: var(--ink-2); line-height: 1.68; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .73rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--cyan);
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--cyan); }
.kicker--center::after { content: ""; width: 26px; height: 1px; background: var(--cyan); }
.serif-accent { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.text-aqua, .text-cyan { color: var(--cyan); }
.text-orange, .text-yellow { color: var(--yellow); }
.text-purple, .text-violet { color: var(--violet); }
.text-mint { color: var(--mint); }
.text-pink { color: var(--pink); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 9px; font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--cyan); color: #08131a; box-shadow: 0 14px 30px -16px rgba(34,221,235,.7); }
.btn--primary:hover { background: var(--aqua-light); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn--wa { background: #25d366; color: #06210f; box-shadow: 0 14px 30px -16px rgba(37,211,102,.65); }
.btn--wa:hover { background: #34e07a; transform: translateY(-2px); box-shadow: 0 20px 50px -18px rgba(37,211,102,.5); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn--lg { padding: 17px 36px; font-size: .86rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease), box-shadow .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(17,24,32,.78); backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--line); box-shadow: 0 12px 30px -22px rgba(0,0,0,.8);
}
.nav__inner { max-width: var(--container); margin-inline: auto; padding: 12px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
/* Logo sobre plaquinha clara (preserva o texto preto da logo no tema escuro) */
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 98px; width: auto; }
.nav__logo-fallback { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: .01em; line-height: 1; color: var(--cyan); }
.nav__logo-fallback small { display: block; font-family: var(--font-sans); font-size: .56rem; letter-spacing: .26em; color: var(--muted); font-weight: 700; margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: .92rem; font-weight: 600; color: var(--ink-2); transition: color .25s; position: relative; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:1.5px; background: var(--cyan); transition: width .3s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: .3s; }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: .3s; }
.nav__burger span::before { top: -6px; } .nav__burger span::after { top: 6px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__burger span::after { top: 0; transform: rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190; background: rgba(12,18,26,.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: var(--pad);
  transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(1.7rem, 7vw, 2.4rem); font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 22px; align-self: flex-start; color: #06210f; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 124px; padding-bottom: 60px; overflow: hidden; }
.hero__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow span { position: absolute; border-radius: 50%; filter: blur(110px); }
.hero__glow .g1 { width: 46vw; height: 46vw; background: radial-gradient(circle, var(--cyan), transparent 62%); top: -14%; right: -8%; opacity: .28; }
.hero__glow .g2 { width: 42vw; height: 42vw; background: radial-gradient(circle, var(--violet), transparent 62%); bottom: -20%; left: -12%; opacity: .3; }
.hero__glow .g3 { width: 32vw; height: 32vw; background: radial-gradient(circle, var(--pink), transparent 62%); top: 30%; left: 42%; opacity: .18; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 70px); align-items: center; width: 100%; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px; background: var(--card); border: 1px solid var(--line-2); border-radius: 100px; font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-2); margin-bottom: 28px; }
.hero__eyebrow b { color: var(--cyan); font-weight: 800; }
.hero .display { margin-bottom: 26px; }
.hero .lead { max-width: 38ch; margin-bottom: 36px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__media { position: relative; }
.hero__media .ph { aspect-ratio: 4/5; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.hero__float {
  position: absolute; bottom: -24px; left: -24px; background: var(--card); border: 1px solid var(--line-2);
  border-radius: var(--r); padding: 18px 22px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.hero__float b { font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; display: block; line-height: 1; color: var(--yellow); }
.hero__float span { font-size: .78rem; color: var(--muted); letter-spacing: .04em; }
/* Hero centralizado com banner completo */
.hero--center { min-height: auto; display: block; padding-top: 132px; padding-bottom: clamp(46px, 7vw, 84px); }
.hero__content--center { text-align: center; max-width: 920px; margin-inline: auto; }
.hero__content--center .hero__eyebrow { margin-inline: auto; }
.hero__content--center .display { margin-bottom: 24px; }
.hero__content--center .lead { max-width: 64ch; margin-inline: auto; margin-bottom: 34px; }
.hero__content--center .hero__cta { justify-content: center; }
.hero__banner { margin: clamp(38px, 5vw, 60px) 0 0; }
.hero__banner img { width: 100%; height: auto; display: block; border-radius: var(--r-lg); border: 1px solid var(--line-2); box-shadow: var(--shadow); }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding-block: 24px; background: var(--bg-3); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: slide 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 2vw, 1.55rem); color: var(--ink-2); white-space: nowrap; }
.marquee__item span { color: var(--cyan); }
.marquee__item i { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Cabeçalho de seção ---------- */
.section__head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 68px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .h2 { margin: 18px 0 20px; }

/* ---------- Dor / solução & faixas tonais ---------- */
.band-2 { background: var(--bg-2); border-block: 1px solid var(--line); }
.band-3 { background: var(--bg-3); border-block: 1px solid var(--line); }
.pain { background: var(--bg-2); border-block: 1px solid var(--line); }
.pain__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.pain__list { display: grid; gap: 16px; }
.pain__item { display: flex; gap: 16px; padding: 20px 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); transition: border-color .3s, transform .3s; }
.pain__item:hover { border-color: var(--line-2); transform: translateX(4px); }
.pain__item .dot { flex: none; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--yellow); color: #2a2100; font-family: var(--font-display); font-weight: 700; }
.pain__item p { font-size: .98rem; color: var(--ink-2); }
.pain__item strong { color: var(--ink); font-weight: 700; display: block; margin-bottom: 2px; }

/* ---------- Diferenciais (checklist) ---------- */
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.perk { display: flex; align-items: center; gap: 13px; padding: 18px 20px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); font-weight: 600; font-size: .98rem; transition: border-color .3s, transform .3s; }
.perk:hover { border-color: var(--line-2); transform: translateY(-3px); }
.perk__ck { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--mint-50); color: var(--mint); font-size: .8rem; font-weight: 800; }

/* ---------- Eventos que atendemos (chips) ---------- */
.eventos { display: flex; flex-wrap: wrap; gap: 12px; }
.evento { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border: 1px solid var(--line); border-radius: 100px; background: var(--card); font-weight: 600; font-size: .95rem; color: var(--ink); transition: border-color .25s, transform .25s, background .25s; }
.evento:hover { border-color: var(--cyan); transform: translateY(-2px); }
.evento::before { content: ""; width: 7px; height: 7px; border-radius: 50%; flex: none; background: var(--cyan); }
.evento:nth-child(4n+2)::before { background: var(--mint); }
.evento:nth-child(4n+3)::before { background: var(--yellow); }
.evento:nth-child(4n+4)::before { background: var(--pink); }

/* ---------- Serviços ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  position: relative; display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.svc-card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--bg-3); }
.svc-card__media .ph, .svc-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .6s var(--ease); }
.svc-card:hover .svc-card__media .ph, .svc-card:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__num { position: absolute; top: 14px; left: 16px; font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink); background: rgba(12,18,26,.7); backdrop-filter: blur(6px); border: 1px solid var(--line-2); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; z-index: 2; }
.svc-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card__body h3 { font-size: 1.4rem; }
.svc-card__body p { font-size: .93rem; color: var(--muted); flex: 1; }
.svc-card__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--cyan); margin-top: 6px; }
.svc-card__link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.svc-card:hover .svc-card__link svg { transform: translateX(5px); }

/* Card destaque */
.svc-card--feature { grid-column: span 3; flex-direction: row; align-items: stretch; background: linear-gradient(125deg, #16323b, #241a4a 65%, #2a1533); border-color: rgba(138,92,255,.35); }
.svc-card--feature .svc-card__media { aspect-ratio: auto; flex: 1 1 52%; min-height: 340px; }
.svc-card--feature .svc-card__media .ph { border-radius: 0; }
.svc-card--feature .svc-card__body { flex: 1 1 48%; padding: clamp(28px, 4vw, 52px); justify-content: center; gap: 16px; }
.svc-card--feature h3 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); color: #fff; }
.svc-card--feature p { font-size: 1.05rem; color: rgba(255,255,255,.85); }
.svc-card--feature .kicker { color: var(--yellow); }
.svc-card--feature .kicker::before { background: var(--yellow); }
.svc-card--feature .svc-card__link { color: var(--cyan); }
.feature-badge { position: absolute; top: 18px; right: 18px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: 100px; background: linear-gradient(90deg, var(--pink), var(--violet)); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- Placeholder de mídia ---------- */
.ph {
  position: relative; display: grid; place-items: center; overflow: hidden;
  background:
    radial-gradient(120% 120% at 15% 0%, rgba(34,221,235,.10), transparent 55%),
    radial-gradient(120% 120% at 100% 100%, rgba(138,92,255,.14), transparent 55%),
    linear-gradient(135deg, #1b242e, #10161d);
  border-radius: var(--r);
}
.ph::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 40px 40px; opacity: .5; }
.ph__label { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); background: rgba(12,18,26,.5); text-align: center; }
.ph__label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pink); flex: none; }
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; border-radius: inherit; display: block; }

/* ---------- Spotlight ---------- */
.spotlight { background: radial-gradient(90% 120% at 50% 0%, rgba(138,92,255,.10), transparent 55%), var(--bg); }
.carts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.cart { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow-soft); transition: transform .35s var(--ease), border-color .35s; }
.cart:hover { transform: translateY(-5px); border-color: var(--line-2); }
.cart__ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--pink-50), var(--purple-50)); font-size: 1.5rem; margin-bottom: 16px; }
.cart h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: 6px; }
.cart p { font-size: .85rem; color: var(--muted); }

/* ---------- Números ---------- */
.stats { background: var(--bg-2); border-block: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 600; font-variant-numeric: tabular-nums; font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1; background: linear-gradient(120deg, var(--cyan), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-lbl { display: block; margin-top: 10px; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ---------- Marcas / clientes ---------- */
.clients { text-align: center; }
.clients__label { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 34px; }
.clients__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.client { display: grid; place-items: center; padding: 20px 14px; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink-2); text-align: center; transition: border-color .3s, color .3s, transform .3s; }
.client:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }
.brands { text-align: center; }
.brands__label { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 30px; }
.brands__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 40px; }
.brands__row span { font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.8rem); font-weight: 600; color: var(--ink-2); transition: color .3s; }
.brands__row span:hover { color: var(--cyan); }

/* ---------- História ---------- */
.story__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.story__media .ph { aspect-ratio: 3/4; box-shadow: var(--shadow); }
.story blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.25; font-weight: 500; margin: 24px 0; color: var(--ink); }
.story blockquote .serif-accent { color: var(--cyan); }

/* ---------- Depoimentos ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; gap: 18px; box-shadow: var(--shadow-soft); }
.quote__stars { color: var(--yellow); letter-spacing: 3px; font-size: .95rem; }
.quote p { font-size: 1.02rem; color: var(--ink-2); line-height: 1.6; flex: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__ava { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--violet)); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: #08131a; }
.quote__who b { font-size: .92rem; } .quote__who span { display: block; font-size: .78rem; color: var(--muted); }

/* ---------- Formulário de orçamento ---------- */
.formwrap { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(28px, 5vw, 56px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px; border: 1px solid var(--line-2); background: var(--bg-3); color: var(--ink);
  font: inherit; font-size: .98rem; transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34,221,235,.18); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23F5F5F2' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-note { margin-top: 16px; font-size: .84rem; color: var(--muted); text-align: center; }

/* ---------- Faixa CTA ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner { position: relative; z-index: 2; background: linear-gradient(125deg, var(--cyan), var(--violet)); border-radius: var(--r-xl); padding: clamp(40px, 7vw, 84px); text-align: center; color: #08131a; box-shadow: 0 40px 90px -44px rgba(34,221,235,.5); }
.cta-band__inner .kicker { color: #0a2a2f; }
.cta-band__inner .kicker::before, .cta-band__inner .kicker--center::after { background: #0a2a2f; }
.cta-band__inner .h2 { color: #0a1519; max-width: 22ch; margin: 16px auto 22px; }
.cta-band__inner .lead { color: rgba(10,21,25,.82); max-width: 54ch; margin: 0 auto 34px; }
.cta-band__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band__inner .btn--wa { background: #0a1519; color: #fff; }
.cta-band__inner .btn--wa:hover { background: #06210f; }
.cta-band__inner .btn--ghost { border-color: rgba(10,21,25,.4); color: #0a1519; }
.cta-band__inner .btn--ghost:hover { background: rgba(10,21,25,.1); border-color: #0a1519; color: #0a1519; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-3); border-top: 1px solid var(--line); padding-block: clamp(56px, 8vw, 84px) 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer__brand p { color: var(--muted); font-size: .92rem; margin-top: 18px; max-width: 34ch; }
.footer__logo { display: flex; align-items: center; gap: 12px; }
.footer__logo img { height: 112px; width: auto; }
.footer h5 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; font-weight: 700; }
.footer ul { display: grid; gap: 12px; }
.footer ul a { color: var(--ink-2); font-size: .92rem; transition: color .25s; }
.footer ul a:hover { color: var(--cyan); }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: .82rem; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: .3s; color: var(--ink-2); }
.footer__social a:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 150; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 16px 40px -10px rgba(37,211,102,.55); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); background: #34e07a; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } .marquee__track { animation: none; } .wa-float::after { animation: none; } }

/* ---------- Página de serviço ---------- */
.page-hero { position: relative; padding-top: 150px; padding-bottom: clamp(50px, 8vw, 90px); overflow: hidden; }
.page-hero__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.page-hero__glow span { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .26; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--muted); margin-bottom: 22px; position: relative; z-index: 2; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { opacity: .5; }
.page-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.page-hero .display { font-size: clamp(2.4rem, 6vw, 4.4rem); margin-bottom: 22px; }
.page-hero__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.tag { padding: 8px 15px; background: var(--card); border: 1px solid var(--line-2); border-radius: 100px; font-size: .82rem; color: var(--ink-2); }
.page-hero__media .ph { aspect-ratio: 4/5; box-shadow: var(--shadow); }

.prose { max-width: 64ch; }
.prose p { color: var(--ink-2); margin-bottom: 20px; font-size: 1.12rem; line-height: 1.75; }
.prose p:first-of-type::first-letter { font-family: var(--font-display); font-weight: 600; font-size: 3.4em; float: left; line-height: .8; padding: 6px 12px 0 0; color: var(--cyan); }

.includes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.include { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-soft); }
.include__ico { width: 44px; height: 44px; border-radius: 12px; background: var(--aqua-50); color: var(--cyan); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 16px; }
.include h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 8px; }
.include p { font-size: .9rem; color: var(--muted); }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery .ph { border-radius: var(--r); box-shadow: var(--shadow-soft); }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }

/* Galeria com fotos inteiras (masonry, sem cortar) */
.gallery--full { column-count: 3; column-gap: 16px; }
.gallery--full .gitem { break-inside: avoid; margin: 0 0 16px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); background: var(--bg-3); }
.gallery--full .gitem img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) { .gallery--full { column-count: 2; } }
@media (max-width: 560px) { .gallery--full { column-count: 1; } }

/* Foto única exibida inteira (sem cortar) */
.photo-full { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow); background: var(--bg-3); }
.photo-full + .photo-full { margin-top: 16px; }
.photo-full img { width: 100%; height: auto; display: block; }

/* Foto em destaque com texto ao lado */
.feature-photo { display: grid; grid-template-columns: minmax(0, 400px) 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; margin-bottom: clamp(34px, 5vw, 54px); }
@media (max-width: 780px) { .feature-photo { grid-template-columns: 1fr; } .feature-photo .photo-full { max-width: 440px; margin-inline: auto; } }

.formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.format { padding: 30px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-soft); }
.format__k { font-family: var(--font-display); font-weight: 600; font-size: 2.2rem; color: var(--yellow); line-height: 1; }
.format h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin: 12px 0 8px; }
.format p { font-size: .92rem; color: var(--muted); }

.cross { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cross-card { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); box-shadow: var(--shadow-soft); transition: border-color .3s, transform .3s, box-shadow .3s; }
.cross-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: var(--shadow); }
.cross-card b { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.cross-card svg { width: 20px; height: 20px; color: var(--cyan); flex: none; }

/* Cardápio / menu por categoria */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.menu-cat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-soft); }
.menu-cat__head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.menu-cat__head h3 { font-size: 1.35rem; }
.menu-cat__head .cart__ico { margin-bottom: 0; width: 44px; height: 44px; font-size: 1.35rem; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 7px 13px; border-radius: 100px; font-size: .82rem; font-weight: 600; color: var(--ink-2); background: var(--bg-3); border: 1px solid var(--line); transition: border-color .25s, color .25s; }
.chip:hover { border-color: var(--cyan); color: var(--cyan); }
.menu-note { margin-top: 28px; color: var(--muted); font-size: .96rem; max-width: 62ch; }
.menu-note a { color: var(--cyan); font-weight: 700; }

/* Grade de carrinhos (um ícone/foto por tipo) */
.cart-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cart-tile { display: flex; flex-direction: column; align-items: center; gap: 13px; padding: 22px 12px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); text-align: center; box-shadow: var(--shadow-soft); transition: border-color .3s var(--ease), transform .3s var(--ease); }
.cart-tile:hover { border-color: var(--cyan); transform: translateY(-4px); }
.cart-tile__ico { width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; font-size: 2rem; background: linear-gradient(135deg, var(--pink-50), var(--purple-50)); overflow: hidden; }
.cart-tile__ico img { width: 100%; height: 100%; object-fit: cover; }
.cart-tile span { font-weight: 600; font-size: .9rem; line-height: 1.2; }
@media (max-width: 980px) { .cart-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .cart-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__right .btn:not(.nav__burger) { display: none; }
  .nav__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { display: none; }
  .hero { min-height: auto; padding-top: 140px; }
  .pain__grid, .story__grid, .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__media { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card--feature { grid-column: span 2; flex-direction: column; }
  .svc-card--feature .svc-card__media { min-height: 260px; }
  .carts, .quotes, .includes, .formats, .cross, .perks { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card--feature { grid-column: span 1; }
  .carts, .quotes, .includes, .formats, .cross, .perks, .footer__grid, .form-grid, .menu-grid { grid-template-columns: 1fr; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__float { left: 0; }
  .cta-band__cta .btn, .hero__cta .btn { width: 100%; }
}
