/* ==========================================================
   INFLUENCYA — Everything for Events
   Paleta: neutros fortes + acento magenta→roxo da marca
   ========================================================== */
:root {
  --ink: #0e0d12;
  --ink-2: #17151d;
  --paper: #f6f4ef;
  --paper-2: #efece4;
  --text: #22212a;
  --text-soft: #5c5a66;
  --text-inv: #f5f3f7;
  --text-inv-soft: #b3aec2;
  --accent: #e2007a;
  --accent-2: #7b2bd0;
  --grad: linear-gradient(100deg, #e2007a, #7b2bd0);
  --radius: 18px;
  --wrap: 1160px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

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

/* ---------- tipografia ---------- */
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(2.3rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 5vw, 3.4rem); margin-bottom: .6em; }
h3 { font-size: 1.15rem; line-height: 1.3; }
h1 em, h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1em;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 46em;
  color: var(--text-soft);
}
.section-ink .lead, .section-grad .lead, .hero .lead { color: var(--text-inv-soft); }

/* ---------- botões ---------- */
.btn {
  display: inline-block;
  padding: .95em 1.9em;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 30px rgba(226, 0, 122, .35);
}
.btn-primary:hover { box-shadow: 0 12px 38px rgba(226, 0, 122, .5); }
.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: var(--text-inv);
}
.btn-ghost:hover { border-color: #fff; }
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, .12); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-small { padding: .6em 1.3em; font-size: .82rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.2em; }

/* ---------- topbar ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 26px;
  padding: 14px 22px;
  background: rgba(14, 13, 18, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: padding .3s var(--ease);
}
.topbar.scrolled { padding: 9px 22px; }
.topbar-logo img { height: 36px; width: auto; transition: height .3s var(--ease); }
.topbar.scrolled .topbar-logo img { height: 30px; }
@media (max-width: 720px) { .topbar-logo img { height: 28px; } }
.topbar-nav { display: flex; gap: 18px; margin-left: auto; }
.topbar-nav a {
  color: var(--text-inv-soft);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s;
}
.topbar-nav a:hover { color: #fff; }
.topbar-cta { white-space: nowrap; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 88svh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--ink) url("hero-natal.jpg") 72% 45% / cover no-repeat;
  color: var(--text-inv);
  overflow: hidden;
  padding-top: 90px;
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 7, 12, .96) 0%, rgba(8, 7, 12, .9) 38%, rgba(8, 7, 12, .55) 62%, rgba(8, 7, 12, .18) 100%),
    radial-gradient(55% 60% at 78% 18%, rgba(123, 43, 208, .26), transparent 65%),
    radial-gradient(50% 55% at 12% 85%, rgba(226, 0, 122, .2), transparent 65%);
  pointer-events: none;
}
.hero-inner > * { max-width: 62%; }
.hero-contra {
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: .5em;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.hero .lead { color: #dcd7e6; }
@media (max-width: 980px) {
  .hero-inner > * { max-width: 100%; }
}
.hero-inner { position: relative; padding-top: 6vh; padding-bottom: 10vh; }
.hero h1 em { display: inline; }

/* ticker */
.ticker {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(8, 7, 12, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: inline-flex; align-items: center; gap: 28px;
  animation: ticker 38s linear infinite;
}
.ticker-track span {
  font-size: .85rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-inv-soft);
}
.ticker-track i { color: var(--accent); font-style: normal; font-size: .7rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- secções ---------- */
.section { padding: clamp(70px, 11vw, 130px) 0; }
.section-paper { background: var(--paper); color: var(--text); }
.section-ink { background: var(--ink); color: var(--text-inv); }
.section-grad {
  background:
    radial-gradient(70% 90% at 85% 10%, rgba(123, 43, 208, .35), transparent 60%),
    radial-gradient(60% 80% at 10% 95%, rgba(226, 0, 122, .28), transparent 60%),
    var(--ink-2);
  color: var(--text-inv);
}

.cols {
  columns: 2; column-gap: 48px;
  margin: 1.5em 0 0;
  max-width: 60em;
}
.cols p { break-inside: avoid; margin-bottom: 1em; }

/* faixa de números */
.numeros {
  background: var(--ink-2);
  border-block: 1px solid rgba(255, 255, 255, .08);
  padding: clamp(34px, 5vw, 52px) 0;
  color: var(--text-inv);
}
.numeros-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.numero strong {
  display: block;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.numero span {
  display: block;
  margin-top: .5em;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-inv-soft);
}
@media (max-width: 720px) { .numeros-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; } }
.numeros-nota {
  margin-top: 2em;
  text-align: center;
  font-size: .82rem;
  color: var(--text-inv-soft);
}

/* aproximar Quem Somos ↔ O Que Fazemos (mesmo fundo, gap a meio) */
#quem-somos { padding-bottom: clamp(36px, 5vw, 60px); }
#o-que-fazemos { padding-top: clamp(36px, 5vw, 60px); }

/* aproximar Cidades de Natal ↔ Como Trabalhamos (ambas escuras) */
#natal { padding-bottom: clamp(40px, 6vw, 70px); }
#processo { padding-top: clamp(40px, 6vw, 70px); }

/* eventos assinatura */
.assinatura { margin-top: clamp(36px, 5vw, 54px); }
.assinatura > p { font-weight: 700; margin-bottom: .9em; }
.chips-claros li { border-color: rgba(20, 18, 28, .22); color: var(--text-soft); }
.chips-claros li:hover { border-color: var(--accent); color: var(--text); }

/* redes sociais */
.social { display: flex; gap: 16px; margin-top: 1.4em; justify-content: center; }
.social a {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(20, 18, 28, .2);
  color: var(--text);
  transition: border-color .25s, color .25s, transform .25s var(--ease);
}
.social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.social-footer { margin-top: 0; }
.social-footer a { border-color: rgba(255, 255, 255, .25); color: var(--text-inv-soft); width: 40px; height: 40px; }
.social-footer a:hover { border-color: var(--accent); color: #fff; }

/* passos do processo */
.passos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: clamp(40px, 6vw, 60px);
  counter-reset: passo;
}
.passo {
  position: relative;
  padding-top: 26px;
  border-top: 2px solid rgba(255, 255, 255, .14);
}
.passo::after {
  content: "";
  position: absolute; top: -2px; left: 0;
  width: 34px; height: 2px;
  background: var(--grad);
}
.passo span {
  font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.passo h3 { margin: .55em 0 .5em; font-size: 1.02rem; }
.passo p { font-size: .89rem; color: var(--text-inv-soft); }
.passo-remate { margin-top: .7em; font-weight: 600; color: #fff; }
@media (max-width: 980px) { .passos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .passos { grid-template-columns: 1fr; } }

/* pilares */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: clamp(40px, 6vw, 64px);
}
.pillar {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 2px 20px rgba(20, 18, 28, .05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pillar:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(20, 18, 28, .1); }
.pillar-num {
  font-size: .8rem; font-weight: 800; letter-spacing: .15em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pillar h3 { margin: .7em 0 .5em; }
.pillar p { font-size: .93rem; color: var(--text-soft); }

.values {
  margin-top: 26px;
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 2px 20px rgba(20, 18, 28, .05);
}
.values h3 { margin-bottom: .4em; font-size: 1.4rem; }
.values-intro { color: var(--text-soft); max-width: 44em; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 32px;
  margin-top: 1.8em;
}
.valor h4 {
  font-size: .98rem; font-weight: 800;
  padding-bottom: .5em; margin-bottom: .55em;
  position: relative;
}
.valor h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 30px; height: 3px; border-radius: 3px;
  background: var(--grad);
}
.valor p { font-size: .88rem; color: var(--text-soft); }
@media (max-width: 980px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.placeholder-note { color: var(--text-soft); font-size: .9rem; font-style: italic; }

/* chips natal */
.chips {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 2.6em 0 0; max-width: 56em;
}
.natal-cta { margin-top: 2.4em; }
.chips li {
  padding: .55em 1.1em;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: .86rem; font-weight: 600;
  color: var(--text-inv-soft);
  transition: border-color .25s, color .25s;
}
.chips li:hover { border-color: var(--accent); color: #fff; }

.frase-ancora {
  margin-top: 2.2em;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-inv);
}
.frase-ancora em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* vídeos */
.videos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: clamp(36px, 5vw, 56px);
}
.video, .video-soon {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}
.video { cursor: pointer; border: 0; padding: 0; }
.video img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .3s, transform .5s var(--ease); }
.video:hover img { opacity: 1; transform: scale(1.04); }
.video .play {
  position: absolute; inset: 0; margin: auto;
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(14, 13, 18, .7);
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
}
.video:hover .play { background: var(--accent); transform: scale(1.08); }
.video .play::after {
  content: ""; margin-left: 4px;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-soon {
  display: grid; place-items: center;
  border: 1.5px dashed rgba(255, 255, 255, .18);
}
.video-soon span {
  font-size: .82rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-inv-soft);
}
.video-hint { margin-top: 1.6em; font-size: .9rem; color: var(--text-inv-soft); }
.video-hint a { color: #fff; }

/* bloco do canal YouTube */
.canal-yt {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: stretch;
  margin-top: clamp(36px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
  text-decoration: none;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.canal-yt:hover {
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .45);
}
.canal-yt-media {
  position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden;
  border: 0; padding: 0; margin: 0; background: var(--ink-2);
  cursor: pointer; width: 100%; font: inherit;
}
.canal-yt-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.canal-yt-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), filter .35s;
  filter: brightness(.72);
}
.canal-yt:hover .canal-yt-media img { transform: scale(1.06); filter: brightness(.85); }
.canal-yt-play {
  position: absolute; inset: 0; margin: auto;
  width: 68px; height: 48px;
  display: grid; place-items: center;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .5));
  transition: transform .3s var(--ease);
}
.canal-yt-play .yt-shape { fill: rgba(20, 18, 26, .82); transition: fill .3s; }
.canal-yt:hover .canal-yt-play { transform: scale(1.1); }
.canal-yt:hover .canal-yt-play .yt-shape { fill: #ff0033; }
.canal-yt-body {
  display: flex; flex-direction: column; align-items: flex-start; gap: .5em;
  padding: clamp(24px, 3vw, 34px);
  justify-content: center;
}
.canal-yt-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
}
.canal-yt-body strong { color: #fff; font-size: clamp(1.15rem, 1.9vw, 1.45rem); font-weight: 800; letter-spacing: -.015em; line-height: 1.2; }
.canal-yt-desc { color: var(--text-inv-soft); font-size: .92rem; }
.canal-yt-cta {
  margin-top: .6em;
  display: inline-block; text-decoration: none;
  color: #fff; font-weight: 700; font-size: .92rem; white-space: nowrap;
  padding: .7em 1.4em; border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .45);
  transition: border-color .3s, background .3s;
}
.canal-yt-cta:hover { border-color: #fff; background: rgba(255, 255, 255, .12); }
@media (max-width: 760px) {
  .canal-yt { grid-template-columns: 1fr; }
  .canal-yt-cta { width: 100%; text-align: center; }
}

.videos.com-destaque .video:first-child { grid-column: 1 / -1; }

/* formulário de proposta */
.contact-form {
  max-width: 640px;
  margin: 3.2em auto 0;
  text-align: left;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 2px 24px rgba(20, 18, 28, .07);
}
.contact-form h3 { margin-bottom: 1em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  font: inherit;
  font-size: .95rem;
  padding: .8em 1em;
  border: 1.5px solid #ddd8ce;
  border-radius: 12px;
  background: var(--paper);
  color: var(--text);
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { margin-top: 12px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.form-actions .btn { min-width: 240px; }
.form-actions .btn { border: 0; cursor: pointer; font: inherit; font-weight: 700; }
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
}

/* serviços */
.services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: clamp(40px, 6vw, 64px);
}
.service {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 2px 20px rgba(20, 18, 28, .05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(20, 18, 28, .1); }
.service h3 { padding-bottom: .7em; margin-bottom: .9em; position: relative; }
.service h3::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 42px; height: 3px; border-radius: 3px;
  background: var(--grad);
}
.service-desc {
  font-size: .92rem;
  color: var(--text-soft);
  margin-bottom: 1.1em;
}
.service ul { list-style: none; }
.service li {
  font-size: .92rem; color: var(--text-soft);
  padding: .32em 0 .32em 1.2em; position: relative;
}
.service li::before {
  content: "✦"; position: absolute; left: 0; top: .32em;
  font-size: .65rem; color: var(--accent);
}

/* timeline comunicação */
.timeline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: clamp(40px, 6vw, 60px);
}
.phase {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(4px);
}
.phase-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  padding: .45em 1em; border-radius: 999px;
  background: var(--grad); color: #fff;
  margin-bottom: 1em;
}
.phase p { font-size: .95rem; color: var(--text-inv-soft); }

/* galeria */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: clamp(36px, 5vw, 56px);
}
.gcard {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
}
.gcard img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gcard:hover img { transform: scale(1.06); }
.gcard figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 40px 16px 14px;
  font-size: .85rem; font-weight: 700; color: #fff;
  background: linear-gradient(transparent, rgba(10, 9, 14, .85));
}
.gcard.noimg img { display: none; }
.gcard.noimg {
  background:
    radial-gradient(80% 80% at 70% 20%, rgba(123, 43, 208, .25), transparent 70%),
    radial-gradient(80% 80% at 20% 90%, rgba(226, 0, 122, .18), transparent 70%),
    var(--ink-2);
  display: grid; place-items: center;
}
.gcard.noimg::before {
  content: "✦";
  font-size: 1.6rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gallery-dica { margin-top: .8em; font-size: .92rem; color: var(--text-soft); }
.gcard[data-album] { cursor: pointer; }
.gcard[data-album]:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.gcard-count {
  display: inline-block; margin-left: .6em;
  font-size: .7rem; font-weight: 600; letter-spacing: .04em;
  padding: .2em .7em; border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(4px);
}

/* lightbox dos álbuns */
.lb {
  position: fixed; inset: 0; z-index: 90;
  display: none;
  background: rgba(8, 7, 12, .93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lb.aberta { display: block; }
.lb-caixa { position: absolute; inset: 0; display: grid; place-items: center; }
.lb-img {
  max-width: min(92vw, 1200px); max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  object-fit: contain;
}
.lb-fechar {
  position: absolute; top: 18px; right: 20px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
  color: #fff; font-size: 1.1rem; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lb-fechar:hover { background: rgba(255, 255, 255, .16); border-color: #fff; }
.lb-seta {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
  color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lb-seta:hover { background: var(--accent); border-color: var(--accent); }
.lb-ant { left: 18px; }
.lb-seg { right: 18px; }
.lb-rodape {
  position: absolute; left: 0; right: 0; bottom: 16px;
  display: flex; justify-content: center; gap: 18px; align-items: baseline;
  color: #fff; font-size: .95rem;
}
.lb-titulo { font-weight: 700; }
.lb-contador { color: var(--text-inv-soft); font-size: .85rem; }
@media (max-width: 720px) {
  .lb-img { max-width: 96vw; max-height: 72vh; }
  .lb-seta { width: 44px; height: 44px; }
  .lb-ant { left: 8px; } .lb-seg { right: 8px; }
}

.gallery-cta {
  margin-top: 2.4em;
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
  justify-content: space-between;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 2px 20px rgba(20, 18, 28, .05);
}
.gallery-cta p { max-width: 34em; }
.gallery-cta-remate { margin-top: .5em; font-weight: 700; color: var(--text); }
@media (max-width: 720px) { .gallery-cta { flex-direction: column; align-items: stretch; text-align: center; } }

/* sara santini */
.section-sara { padding-block: clamp(60px, 9vw, 110px); }
.sara-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.sara-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.sara-text .cta-row { margin-top: 1.8em; }
.sara-text p { color: var(--text-inv-soft); max-width: 34em; }
.sara-booking { margin-top: 1.4em; font-size: .9rem; }
.sara-booking a { color: #fff; text-decoration: none; font-weight: 600; }
.sara-booking a:hover { color: var(--accent); }

/* contactos */
.section-contact { text-align: center; }
.section-contact .lead { margin-inline: auto; }
.section-contact .cta-row { justify-content: center; }
.contact-lines { margin-top: 2.6em; font-size: .95rem; color: var(--text-soft); }
.contact-lines a { color: var(--text); text-decoration: none; font-weight: 600; }
.contact-lines a:hover { color: var(--accent); }
.contact-lines strong { color: var(--text); font-weight: 800; margin-right: .4em; }
.contact-lines p + p { margin-top: .5em; }

/* footer */
.footer {
  background: var(--ink);
  color: var(--text-inv-soft);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; justify-content: space-between; }
.footer-logo { height: 34px; width: auto; opacity: .95; }
.footer p { font-size: .82rem; }
.footer-morada {
  flex-basis: 100%;
  font-size: .74rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .02em;
}
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: var(--accent); }

/* whatsapp flutuante */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- modo rascunho: conteúdos em falta ---------- */
.pend-marca { position: relative; outline: 2px dashed #ffb020; outline-offset: 4px; }
.pend-tag {
  position: absolute; top: -12px; left: 8px; z-index: 5;
  background: #ffb020; color: #201500;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  padding: .25em .7em; border-radius: 999px;
  font-family: inherit;
}
.pend-painel {
  position: fixed; left: 16px; bottom: 16px; z-index: 70;
  max-width: 340px; max-height: 55vh; overflow: auto;
  background: #201500; color: #ffe9c4;
  border: 1.5px solid #ffb020; border-radius: 14px;
  padding: 16px 18px;
  font-size: .8rem; line-height: 1.45;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
}
.pend-painel h4 { color: #ffb020; margin-bottom: .6em; font-size: .85rem; cursor: pointer; user-select: none; display: flex; justify-content: space-between; gap: 10px; }
.pend-toggle { font-size: 1rem; line-height: 1; }
.pend-painel.fechado ol, .pend-painel.fechado .pend-nota { display: none; }
.pend-painel.fechado { max-height: none; }
.pend-painel.fechado h4 { margin-bottom: 0; }
.pend-painel ol { padding-left: 1.2em; display: grid; gap: .45em; }
.pend-painel a { color: #ffe9c4; text-decoration: none; }
.pend-painel a:hover { color: #ffb020; text-decoration: underline; }
.pend-nota { margin-top: .9em; opacity: .65; font-size: .72rem; font-style: italic; }
@media (max-width: 720px) { .pend-painel { left: 10px; right: 76px; max-width: none; } }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
}

/* ---------- responsivo ---------- */
@media (max-width: 980px) {
  .pillars, .services, .timeline, .videos { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .sara-grid { grid-template-columns: 1fr; }
  .cols { columns: 1; }
}
@media (max-width: 720px) {
  .topbar { gap: 14px; }
  .topbar-nav {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    background: rgba(14, 13, 18, .97);
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  .topbar-nav.open { opacity: 1; pointer-events: auto; z-index: 49; }
  .topbar-nav a { font-size: 1.3rem; }
  .topbar-cta { margin-left: auto; }
  .nav-toggle {
    display: grid; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 6px;
  }
  .nav-toggle span {
    width: 22px; height: 2px; background: #fff; border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .pillars, .services, .timeline, .videos { grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
  .topbar .btn, .sara-text .btn { width: auto; }
  .cta-row { flex-direction: column; }
}
