/* ============================================================================
   Holemberg — main.css
   Design system do site institucional: tokens, header, hero, seções
   pós-experiência, formulário, footer, botão WhatsApp.
   Paleta: preto/grafite + branco, detalhes discretos em dourado envelhecido.
   ========================================================================== */

:root {
  --bg: #0B0E11;
  --bg-2: #11161A;
  --bg-3: #171D22;
  --ink: #EDF1F3;
  --ink-soft: #A3ACB3;
  --line: rgba(237, 241, 243, 0.09);
  --gold: #B9975B;
  --gold-soft: rgba(185, 151, 91, 0.13);
  --petro: #3E6B76;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 1120px;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; }
section { scroll-margin-top: 84px; }
::selection { background: rgba(185, 151, 91, 0.35); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(80px, 13vh, 140px) 0; position: relative; z-index: 10; background: var(--bg); }
.section--alt { background: var(--bg-2); }

/* ---- tipografia de seção ------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.section-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.1;
  letter-spacing: -0.01em; margin-top: 14px;
}
.section-sub { margin-top: 16px; color: var(--ink-soft); max-width: 56ch; }
.section-head { margin-bottom: clamp(40px, 6vh, 64px); }
.section-head--center { text-align: center; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* ---- botões globais ------------------------------------------------------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font: inherit; font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 999px; border: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s;
}
.btn--primary { background: var(--gold); color: #16130c; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(185, 151, 91, 0.28); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid rgba(237, 241, 243, 0.22); }
.btn--ghost:hover { transform: translateY(-2px); border-color: rgba(237, 241, 243, 0.45); }

/* ---- header --------------------------------------------------------------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 4vw, 48px);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(11, 14, 17, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.header__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.header__mark {
  width: 36px; height: 36px; border-radius: 9px;
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--gold);
}
.header__name { display: flex; flex-direction: column; line-height: 1.15; }
.header__name strong { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: 0.01em; }
.header__name small { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.header__nav { display: flex; align-items: center; gap: 4px; }
.header__nav a {
  text-decoration: none; font-size: 0.88rem; color: var(--ink-soft);
  padding: 8px 13px; border-radius: 999px; transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.header__nav a:hover { color: var(--ink); background: rgba(237, 241, 243, 0.06); }
.header__cta { padding: 11px 22px; font-size: 0.88rem; }
.header__burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; position: relative; z-index: 102;
}
.header__burger span {
  display: block; width: 22px; height: 2px; margin: 5px auto;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1120px) {
  .header__burger { display: block; }
  .header__nav {
    position: fixed; inset: 0; z-index: 101;
    flex-direction: column; justify-content: center; gap: 10px;
    background: rgba(9, 12, 15, 0.97);
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .header__nav.is-open { opacity: 1; pointer-events: auto; }
  .header__nav a { font-size: 1.25rem; padding: 12px 26px; }
  .header__nav .header__cta { font-size: 1rem; margin-top: 14px; }
}
@media (min-width: 1121px) {
  .header__cta { white-space: nowrap; }
}

/* ---- hero ------------------------------------------------------------------ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative; z-index: 1; overflow: hidden;
  background:
    radial-gradient(58% 42% at 78% 18%, rgba(62, 107, 118, 0.14), transparent 70%),
    radial-gradient(40% 34% at 18% 82%, rgba(185, 151, 91, 0.07), transparent 70%),
    var(--bg);
}
.hero__inner { padding-top: 110px; padding-bottom: 90px; max-width: 720px; }
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.4rem); line-height: 1.04;
  letter-spacing: -0.015em; margin-top: 20px;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub { margin-top: 22px; font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-soft); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  width: 1px; height: 56px; background: rgba(237, 241, 243, 0.16); overflow: hidden;
}
.hero__cue::after {
  content: ""; position: absolute; left: 0; top: -40%;
  width: 100%; height: 40%; background: var(--gold);
  animation: hero-cue 2.2s ease-in-out infinite;
}
@keyframes hero-cue { 0% { top: -40%; } 100% { top: 110%; } }

/* ---- serviços --------------------------------------------------------------- */
.services-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.service-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(185, 151, 91, 0.35); }
.service-card svg { width: 30px; height: 30px; stroke: var(--gold); margin-bottom: 18px; }
.service-card h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---- diferenciais ------------------------------------------------------------ */
.diffs-grid {
  display: grid; gap: 34px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.diff::before {
  content: ""; display: block; width: 34px; height: 2px;
  background: var(--gold); margin-bottom: 18px;
}
.diff h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.diff p { font-size: 0.93rem; color: var(--ink-soft); }

/* ---- sobre / liderança --------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/*
 * A altura da foto é criada por ::before, sem depender de aspect-ratio.
 * Isso evita o colapso do contêiner em determinados navegadores móveis/tablets,
 * já que a imagem interna usa position: absolute.
 */
.about-photo {
  position: relative;
  display: block;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1b2229, #10151a);
  opacity: 1;
  visibility: visible;
  transform: none;
}

.about-photo::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 125%; /* proporção 4:5 */
}

.about-photo picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.about-photo img,
.about-photo picture img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  visibility: visible;
}

/* A foto não depende da animação reveal para ficar visível. */
#tarik .about-photo.reveal {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
}
.about-photo__mono {
  font-family: var(--font-display); font-size: 6rem; color: var(--gold); opacity: 0.85;
}
.about-photo__hint {
  position: absolute; bottom: 14px; left: 0; right: 0;
  text-align: center; font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--ink-soft); text-transform: uppercase; opacity: 0.6;
}
.about-text p { color: var(--ink-soft); margin-top: 16px; }
.about-text p strong { color: var(--ink); font-weight: 600; }
.about-sign { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.about-sign::before { content: ""; width: 40px; height: 1px; background: var(--gold); }
.about-sign span { font-size: 0.9rem; color: var(--ink-soft); }
.about-sign strong { color: var(--ink); font-weight: 600; }

/* ---- prova de confiança ---------------------------------------------------------- */
.trust-band {
  display: grid; gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.trust-item { display: flex; gap: 16px; align-items: flex-start; }
.trust-item svg { width: 24px; height: 24px; stroke: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.trust-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.trust-item p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---- contato ------------------------------------------------------------------------ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.contact-info p { color: var(--ink-soft); margin-top: 16px; max-width: 44ch; }
.contact-lines { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.contact-lines a, .contact-lines span {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; font-size: 0.95rem; color: var(--ink);
}
.contact-lines svg { width: 20px; height: 20px; stroke: var(--gold); flex: 0 0 auto; }
.contact-form {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(26px, 3.5vw, 40px);
  display: grid; gap: 16px;
}
.field { display: grid; gap: 7px; }
.field label { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); }
.field input, .field textarea {
  font: inherit; color: var(--ink);
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 10px; padding: 13px 15px; outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus { border-color: rgba(185, 151, 91, 0.55); }
.contact-form__note { font-size: 0.8rem; color: var(--ink-soft); }
.contact-form .btn { justify-self: start; }

/* ---- footer ------------------------------------------------------------------------------ */
.footer {
  position: relative; z-index: 10;
  border-top: 1px solid var(--line); background: var(--bg);
  padding: 44px 0;
}
.footer__inner {
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__nav a { text-decoration: none; font-size: 0.85rem; color: var(--ink-soft); }
.footer__nav a:hover { color: var(--ink); }
.footer__legal { font-size: 0.8rem; color: var(--ink-soft); }

/* ---- botão flutuante WhatsApp ---------------------------------------------------------------- */
.wa-float {
  position: fixed; right: 22px; z-index: 90;
  bottom: calc(22px + env(safe-area-inset-bottom));
  width: 56px; height: 56px; border-radius: 50%;
  background: #23a55b;
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---- reveal on scroll --------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---- responsivo geral -------------------------------------------------------------------------------- */
@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about-photo {
    max-width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- reduced motion -------------------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__cue::after { animation: none; }
  .btn, .service-card, .wa-float { transition: none; }
}


/* ============================================================
   Extensões — hero editorial, manifesto, soluções, método,
   prova de confiança, CTA final, footer editorial
   ============================================================ */

/* header logo image */
.header__logoimg { width: 36px; height: 36px; border-radius: 9px; display: block; object-fit: cover; }

/* ---- hero com retrato -------------------------------------- */
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 72px); align-items: center; width: 100%;
}
.hero__kicker {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-soft);
}
.hero__kicker i { font-style: normal; color: var(--gold); padding: 0 6px; }
.hero__proof { margin-top: 26px; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ink-soft); }
.hero__figure {
  position: relative; margin: 0; align-self: end;
  max-width: 430px; justify-self: end; width: 100%;
}
.hero__figure::before {
  content: ""; position: absolute; inset: 26px -26px -26px 26px;
  border: 1px solid rgba(185, 151, 91, 0.35); border-radius: var(--radius);
  pointer-events: none;
}
.hero__figure img {
  display: block; width: 100%; height: auto; border-radius: var(--radius);
  filter: saturate(0.92) contrast(1.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.hero__figure figcaption {
  position: absolute; left: 18px; bottom: 16px;
  display: flex; flex-direction: column; line-height: 1.3;
  background: rgba(11, 14, 17, 0.72); backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 10px; border: 1px solid var(--line);
}
.hero__figure figcaption strong { font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; }
.hero__figure figcaption span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* ---- manifesto ---------------------------------------------- */
.manifesto { max-width: 820px; }
.manifesto__line {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.18; letter-spacing: -0.01em;
}
.manifesto__line span { color: var(--ink-soft); }
.manifesto__line--reveal { margin-top: 18px; }
.manifesto__line--reveal em { font-style: italic; color: var(--gold); }
.pillars {
  margin-top: clamp(48px, 7vh, 80px);
  display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.pillar { border-top: 1px solid var(--line); padding-top: 24px; position: relative; }
.pillar::before {
  content: ""; position: absolute; top: -1px; left: 0;
  width: 56px; height: 1px; background: var(--gold);
}
.pillar__num {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 0.8rem; color: var(--gold); letter-spacing: 0.1em;
}
.pillar h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin: 10px 0 10px; }
.pillar p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---- soluções (lista editorial) ------------------------------ */
.solutions { display: flex; flex-direction: column; }
.solution {
  display: grid; grid-template-columns: 90px 1fr auto;
  gap: clamp(18px, 3vw, 44px); align-items: center;
  padding: clamp(26px, 4vh, 40px) 0;
  border-top: 1px solid var(--line);
  transition: background 0.3s;
}
.solution:last-child { border-bottom: 1px solid var(--line); }
.solution:hover { background: rgba(237, 241, 243, 0.02); }
.solution__num {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; color: rgba(185, 151, 91, 0.55); line-height: 1;
}
.solution__body h3 { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; }
.solution__body p { margin-top: 8px; color: var(--ink-soft); max-width: 58ch; }
.solution__aud {
  display: block; margin-top: 12px;
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold);
}
.solution__cta {
  text-decoration: none; font-size: 0.86rem; font-weight: 600;
  color: var(--ink-soft); white-space: nowrap;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.solution__cta:hover { color: var(--gold); border-color: var(--gold); }

/* ---- sobre: quote e cta --------------------------------------- */
.about-quote {
  margin-top: 24px; padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display); font-style: italic;
  font-size: 1.12rem; line-height: 1.5; color: var(--ink);
}
.about-cta { margin-top: 26px; }

/* ---- método (camadas) ------------------------------------------ */
.method { list-style: none; position: relative; max-width: 760px; }
.method::before {
  content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px;
  width: 1px; background: linear-gradient(to bottom, rgba(185,151,91,0.6), rgba(185,151,91,0.08));
}
.method__step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: clamp(20px, 3vw, 36px); align-items: start;
  padding: 22px 0; position: relative;
}
.method__num {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--bg-3); border: 1px solid rgba(185, 151, 91, 0.4);
  display: grid; place-items: center;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 0.86rem; color: var(--gold); position: relative; z-index: 1;
}
.method__step h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-top: 4px; }
.method__step p { margin-top: 6px; color: var(--ink-soft); font-size: 0.95rem; }

/* ---- prova de confiança ------------------------------------------ */
.proof-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.proof-stat {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px;
}
.proof-stat strong {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem); display: block; line-height: 1.1;
}
.proof-stat strong span { color: var(--gold); font-size: 0.7em; vertical-align: 0.2em; margin-left: 4px; }
.proof-stat p { margin-top: 10px; font-size: 0.92rem; color: var(--ink); }
.proof-stat small { color: var(--ink-soft); }
.segments { margin-top: 44px; }
.segments__label {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.segments ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px;
}
.segments li {
  font-size: 0.88rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px;
  background: rgba(237, 241, 243, 0.02);
}
.testimonial {
  margin-top: 44px; padding: clamp(26px, 4vw, 40px);
  border: 1px dashed rgba(185, 151, 91, 0.4); border-radius: var(--radius);
}
.testimonial__quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--ink-soft);
}
.testimonial__meta { margin-top: 12px; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }

/* ---- cta final ------------------------------------------------------ */
.final-cta { max-width: 780px; margin-bottom: clamp(48px, 7vh, 80px); }
.final-cta__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 3.8vw, 3rem); line-height: 1.12; letter-spacing: -0.01em;
}
.final-cta__title em { font-style: italic; color: var(--gold); }
.final-cta p { margin-top: 18px; color: var(--ink-soft); max-width: 56ch; }

/* ---- footer editorial ------------------------------------------------ */
.footer { padding: 64px 0 36px; }
.footer__grid {
  display: grid; gap: clamp(32px, 5vw, 56px);
  grid-template-columns: 1.4fr 0.8fr 1fr 0.9fr;
  align-items: start;
}
.footer__brand { display: flex; gap: 16px; align-items: flex-start; }
.footer__brand img { border-radius: 10px; flex: 0 0 auto; }
.footer__brand strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.footer__brand p { margin-top: 8px; font-size: 0.88rem; color: var(--ink-soft); max-width: 30ch; }
.footer__nav, .footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__nav span, .footer__col span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.footer__col a { text-decoration: none; font-size: 0.88rem; color: var(--ink-soft); }
.footer__col a:hover { color: var(--ink); }
.footer__col p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }
.footer__base {
  margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 18px; align-items: flex-end; justify-content: space-between;
}
.footer__tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5;
}

/* ---- responsivo das extensões ------------------------------------------ */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { max-width: 340px; justify-self: start; margin-top: 10px; }
  .hero__inner { padding-top: 120px; padding-bottom: 0; }
  .hero { padding-bottom: 90px; }
  .solution { grid-template-columns: 56px 1fr; }
  .solution__cta { grid-column: 2; justify-self: start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__figure::before { inset: 16px -14px -14px 16px; }
}


/* ============================================================
   Rodada 2 — nuvem animada no hero, hovers animados (pilares e
   diferenciais), depoimentos em loop, ações do formulário,
   footer (instagram + crédito)
   ============================================================ */

/* ---- hero: nuvem padronizada animada ------------------------ */
.hero__clouds { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__clouds i {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(70px); will-change: transform;
  animation: cloud-drift 20s ease-in-out infinite alternate;
}
.hero__clouds i:nth-child(1) {
  width: 46vw; height: 46vw; top: -14%; right: -10%;
  background: radial-gradient(circle at 40% 40%, rgba(62, 107, 118, 0.30), transparent 65%);
}
.hero__clouds i:nth-child(2) {
  width: 38vw; height: 38vw; left: -12%; bottom: -20%;
  background: radial-gradient(circle at 60% 40%, rgba(185, 151, 91, 0.16), transparent 65%);
  animation-duration: 26s; animation-delay: -8s;
}
.hero__clouds i:nth-child(3) {
  width: 26vw; height: 26vw; left: 34%; top: 8%;
  background: radial-gradient(circle at 50% 50%, rgba(62, 107, 118, 0.18), transparent 65%);
  animation-duration: 32s; animation-delay: -16s; animation-direction: alternate-reverse;
}
.hero__pattern {
  position: absolute; inset: -140px;
  background-image: radial-gradient(rgba(237, 241, 243, 0.055) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(58% 54% at 68% 36%, #000 30%, transparent 78%);
  mask-image: radial-gradient(58% 54% at 68% 36%, #000 30%, transparent 78%);
  animation: pattern-pan 60s linear infinite;
}
@keyframes cloud-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(4vw, 3vh, 0) scale(1.14); }
}
@keyframes pattern-pan { to { background-position: 260px 130px; } }
.hero__grid { position: relative; z-index: 1; }

/* ---- pilares 01/02/03: linha animada + hover ------------------ */
.pillar { transition: transform 0.35s ease; overflow: hidden; }
.pillar::before {
  width: 56px; will-change: transform;
  animation: line-sweep 7s ease-in-out infinite alternate;
  transition: width 0.45s ease, transform 0.45s ease;
}
@keyframes line-sweep {
  from { transform: translateX(0); }
  to   { transform: translateX(140px); }
}
.pillar h3, .pillar__num, .pillar p { transition: color 0.35s ease; }
.pillar:hover { transform: translateY(-6px); }
.pillar:hover::before { animation: none; transform: none; width: 100%; }
.pillar:hover h3 { color: var(--gold); }
.pillar:hover p { color: var(--ink); }

/* ---- diferenciais: mesma linguagem de hover -------------------- */
.diff { transition: transform 0.35s ease; }
.diff::before { transition: width 0.45s ease, background 0.45s ease; }
.diff h3, .diff p { transition: color 0.35s ease; }
.diff:hover { transform: translateY(-6px); }
.diff:hover::before { width: 100%; }
.diff:hover h3 { color: var(--gold); }
.diff:hover p { color: var(--ink); }

/* ---- depoimentos em loop ---------------------------------------- */
.testi-loop {
  margin-top: 48px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.testi-track {
  display: flex; gap: 18px; width: max-content;
  animation: testi-scroll 52s linear infinite;
}
.testi-loop:hover .testi-track { animation-play-state: paused; }
.testi-set { display: flex; gap: 18px; }
.testi-card {
  margin: 0; width: 340px; flex: none;
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 26px 24px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 20px;
}
.testi-card blockquote {
  margin: 0; font-family: var(--font-display); font-style: italic;
  font-size: 1.02rem; line-height: 1.55; color: var(--ink);
}
.testi-card figcaption { display: flex; align-items: center; gap: 12px; }
.testi-ava {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink);
  border: 1px solid rgba(185, 151, 91, 0.35);
}
.testi-card figcaption > span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.testi-card strong { font-size: 0.92rem; font-weight: 600; }
.testi-card em { font-style: normal; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
@keyframes testi-scroll { to { transform: translateX(calc(-50% - 9px)); } }

/* ---- formulário: dupla ação --------------------------------------- */
.contact-form__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- footer: instagram + crédito ------------------------------------ */
.footer__ig { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 12px; transition: border-color 0.3s; }
.footer__ig svg { width: 20px; height: 20px; stroke: var(--ink-soft); transition: stroke 0.3s; }
.footer__ig:hover { border-color: rgba(185, 151, 91, 0.5); }
.footer__ig:hover svg { stroke: var(--gold); }
.footer__legalwrap { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; text-align: right; }
.footer__credit { font-size: 0.8rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 5px; }
.footer__credit svg { width: 13px; height: 13px; fill: var(--gold); }
.footer__credit a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(185, 151, 91, 0.4); }
.footer__credit a:hover { color: var(--gold); }
@media (max-width: 560px) {
  .footer__legalwrap { align-items: flex-start; text-align: left; }
  .contact-form__actions .btn { width: 100%; text-align: center; }
}

/* ---- reduced motion (extensões) --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .hero__clouds i, .hero__pattern, .pillar::before, .testi-track { animation: none; }
  .pillar, .diff { transition: none; }
}


/* ---- rodada 3: hero centralizado (sem foto) + tag na foto do bloco Tarik ---- */
.hero__grid { grid-template-columns: 1fr; justify-items: center; }
.hero__inner--center {
  max-width: 840px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero__inner--center .hero__sub { margin-left: auto; margin-right: auto; }
.hero__inner--center .hero__actions { justify-content: center; }
.hero__pattern {
  -webkit-mask-image: radial-gradient(60% 56% at 50% 40%, #000 30%, transparent 78%);
  mask-image: radial-gradient(60% 56% at 50% 40%, #000 30%, transparent 78%);
}
.about-photo__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  background: rgba(11, 14, 17, 0.74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.about-photo__tag strong { font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; color: var(--ink); }
.about-photo__tag span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }


/* fix: CTA do header herdava a cor cinza dos links da nav */
.header__nav a.header__cta { color: #16130c; }
.header__nav a.header__cta:hover { color: #16130c; background: var(--gold); }


/* ---- mapa no contato ---------------------------------------- */
.contact-grid { align-items: stretch; }
.contact-info { display: flex; flex-direction: column; }
.contact-map {
  margin-top: 28px; flex: 1; min-height: 260px;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; position: relative;
}
.contact-map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: grayscale(0.85) invert(0.92) hue-rotate(185deg) saturate(0.5) brightness(0.9) contrast(1.05);
}
@media (max-width: 920px) {
  .contact-map { min-height: 300px; }
}

/* ============================================================
   Rodada 4 — bloco Tarik (CRC + logos), Nossa Jornada,
   prova de confiança e formulário de qualificação
   ============================================================ */

/* ---- Tarik: credenciais ------------------------------------ */
.about-cred {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  margin-top: 18px;
}
.about-cred__item {
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft);
}
.about-cred__item strong { color: var(--ink); font-weight: 600; }
.about-cred__crc {
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(185, 151, 91, 0.42);
  background: var(--gold-soft); color: var(--gold); font-weight: 600;
}

/* ---- Tarik: logos das empresas atendidas -------------------- */
.logos-head { margin-top: clamp(56px, 8vh, 88px); }
.logos-head--proof { margin-top: clamp(40px, 6vh, 60px); }
.logo-loop {
  margin-top: 22px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track { display: flex; gap: 14px; width: max-content; animation: logo-scroll 42s linear infinite; }
.logo-loop:hover .logo-track { animation-play-state: paused; }
.logo-set { display: flex; gap: 14px; }
.logo-chip {
  flex: none; display: grid; place-items: center;
  min-width: 132px; height: 78px; padding: 0 14px;
}
.logo-chip img {
  max-width: 100%; max-height: 58px; width: auto; height: auto;
  object-fit: contain; opacity: 0.5;
  transition: opacity 0.3s ease;
}
.logo-chip:hover img { opacity: 0.95; }
.logo-track--rtl { animation-name: logo-scroll-rtl; }
@keyframes logo-scroll { to { transform: translateX(calc(-50% - 7px)); } }
@keyframes logo-scroll-rtl {
  from { transform: translateX(calc(-50% - 7px)); }
  to { transform: translateX(0); }
}

/* ---- Nossa Jornada ------------------------------------------ */
.journey {
  list-style: none; position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.journey::before {
  content: ""; position: absolute; left: 28px; right: 28px; top: 28px; height: 1px;
  background: linear-gradient(90deg, rgba(185,151,91,0.6), rgba(185,151,91,0.12));
}
.journey__step { display: flex; flex-direction: column; gap: 20px; }
.journey__node {
  width: 56px; height: 56px; border-radius: 50%; position: relative; z-index: 1;
  display: grid; place-items: center;
  background: var(--bg-3); border: 1px solid rgba(185, 151, 91, 0.45);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 0.84rem; font-weight: 600; color: var(--gold);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.journey__card {
  flex: 1; padding: 26px 24px 28px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(237, 241, 243, 0.035), rgba(237, 241, 243, 0));
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.journey__card h3 { font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; line-height: 1.25; }
.journey__card p { margin-top: 12px; font-size: 0.92rem; color: var(--ink-soft); }
.journey__step:hover .journey__card { transform: translateY(-6px); border-color: rgba(185, 151, 91, 0.4); }
.journey__step:hover .journey__node { background: var(--gold); border-color: var(--gold); color: #16130c; }
.journey-tags {
  margin-top: clamp(36px, 5vh, 52px);
  display: flex; flex-wrap: wrap; gap: 10px;
}
.journey-tags span {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px;
}
@media (max-width: 920px) {
  .journey { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .journey::before { display: none; }
}
@media (max-width: 560px) {
  .journey { grid-template-columns: 1fr; }
}

/* ---- prova de confiança (tapa visual) ------------------------ */
.proof-grid { grid-template-columns: 1.25fr 1fr 1fr; align-items: stretch; }
.proof-stat {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 28px; min-height: 200px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.proof-stat:hover { transform: translateY(-5px); border-color: rgba(185, 151, 91, 0.35); }
.proof-stat p { margin-top: 8px; font-size: 0.96rem; }
.proof-stat small { display: block; margin-top: 6px; font-size: 0.82rem; color: var(--ink-soft); }
.proof-stat--feature {
  border-color: rgba(185, 151, 91, 0.38);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(185, 151, 91, 0.14), transparent 62%),
    var(--bg-3);
}
.proof-stat--feature strong { font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--gold); }
.proof-stars {
  font-size: 1.05rem; letter-spacing: 0.28em; color: var(--gold);
  margin-bottom: auto;
}
.segments { margin-top: 40px; }
.segments li { transition: border-color 0.3s, color 0.3s; }
.segments li:hover { border-color: rgba(185, 151, 91, 0.45); color: var(--gold); }
@media (max-width: 920px) { .proof-grid { grid-template-columns: 1fr; } }

/* ---- formulário de qualificação -------------------------------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label i, .field legend i { font-style: normal; color: var(--gold); }
.field select {
  font: inherit; color: var(--ink); width: 100%;
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 10px; padding: 13px 40px 13px 15px; outline: none;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  transition: border-color 0.25s;
}
.field select:focus { border-color: rgba(185, 151, 91, 0.55); }
.field select { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.field select option { background: var(--bg-2); color: var(--ink); }
.field--radio { border: 0; padding: 0; display: grid; gap: 10px; }
.field--radio legend { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); padding: 0; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio { display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  padding: 11px 18px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg-3); font-size: 0.9rem; transition: border-color 0.25s, background 0.25s; }
.radio input { accent-color: var(--gold); width: 15px; height: 15px; }
.radio:has(input:checked) { border-color: rgba(185, 151, 91, 0.55); background: var(--gold-soft); }
.contact-form__actions { margin-top: 4px; }
.contact-form__actions .btn { text-align: center; }
.contact-form__note { margin-top: 2px; }
@media (max-width: 780px) { .form-row { grid-template-columns: 1fr; } }

/* ---- reduced motion (rodada 4) --------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
  .journey__card, .journey__node, .proof-stat { transition: none; }
}
