@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');
/* ============================================================
   PLANSOL · Consultoria em Gestão Organizacional
   style.css
   ------------------------------------------------------------
   1.  Tokens / variáveis
   2.  Reset & base
   3.  Utilitários (wrap, eyebrow, botões, links)
   4.  Header / Navbar
   5.  Menu mobile
   6.  Hero
   7.  Sobre
   8.  Atuação (dark)
   9.  Estruturação (editorial)
   10. Nossa solução
   11. Metodologia (timeline)
   12. Equipe
   13. CTA final (dark)
   14. Footer
   15. WhatsApp flutuante
   16. Animações / reveal
   17. Responsividade
   18. Acessibilidade / reduced-motion
============================================================ */

/* ============ 1. TOKENS ============ */
:root {
  /* Paleta institucional */
  --navy-900: #071A2B;
  --navy-800: #0D263D;
  --gold:     #C9A45C;
  --gold-lt:  #f5e19b;
  --offwhite: #F7F5F0;
  --white:    #FFFFFF;
  --gray:     #68717A;

  --ink:      #071A2B;         /* texto principal sobre claro */
  --ink-soft: #3a4956;
  --line:     rgba(7, 26, 43, .12);
  --line-lt:  rgba(255, 255, 255, .14);

  --gold-grad: linear-gradient(90deg, var(--gold), var(--gold-lt));

  /* Tipografia */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Ritmo / layout */
  --wrap: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: 80px 120px;
  --radius: 3px;

  /* Movimento */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .7s;
}

/* ============ 2. RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, .95rem + .2vw, 1.075rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-weight: 500; }
p { margin: 0; }

/* Headings serif */
.hero-title, .section-title, .cta-title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}



/* Destaque dourado em gradiente (discreto) */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
}



/* ============ 3. UTILITÁRIOS ============ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .64rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.eyebrow-light { color: var(--gold-lt); }

.section-title {
  font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink);
  font-weight: 600;
}
.section-title.on-dark { color: var(--white);
 }

.section-lead {
  max-width: 46ch;
  color: var(--gray);
  margin-top: 1.5rem;
  font-size: 1.05rem;
}
.section-lead.on-dark { color: rgba(255,255,255,.7); }

.lead {
  font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Botões */
.btn {
  --btn-py: .95rem;
  --btn-px: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform .4s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    color: var(--white);
  border-color: var(--navy-900);
}
.btn-gold:hover { background: var(--navy-800); }

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy-900); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy-900); }

/* Link com seta */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-900);
  margin-top: 2rem;
  transition: gap .4s var(--ease);
}
.link-arrow span { color: var(--gold); transition: transform .4s var(--ease); }
.link-arrow:hover { gap: .9rem; }
.link-arrow:hover span { transform: translateX(4px); }

/* ============================================================
   4. HEADER / NAVBAR
   ============================================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;

  padding-block: 1.6rem;

  /* Começa transparente sobre o Hero */
  background: transparent;

  transition:
    padding .5s var(--ease),
    background-color .5s var(--ease),
    box-shadow .5s var(--ease),
    backdrop-filter .5s var(--ease);

  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}


/* ============================================================
   BRAND
   ============================================================ */

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* Logo (imagem) no lugar do wordmark */
.brand-logo {
  display: block;
  height: 42px;          /* controla o tamanho — ajuste ao seu logo */
  width: auto;
  transition: height .4s var(--ease);
}
/* Encolhe junto com o header ao rolar */
.site-header.scrolled .brand-logo { height: 36px; }

@media (max-width: 600px) {
  .brand-logo { height: 34px; }
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--offwhite);

  transition: color .4s var(--ease);
}

.brand-dot {
  color: var(--gold);
}

.brand-sub {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, .6);
  margin-top: .25rem;

  transition: color .4s var(--ease);
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;

  font-size: .92rem;
  font-weight: 500;

  color: rgba(247, 245, 240, .82);

  padding-block: .35rem;

  transition:
    color .4s var(--ease),
    opacity .4s var(--ease);
}

.nav-link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: var(--gold);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform .45s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--offwhite);
}

/* Underline dourado no hover e no item ativo */

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  --btn-py: .7rem;
  --btn-px: 1.4rem;
  color: #F7F5F0;
  border-radius: 20px;
}


/* ============================================================
   SUBMENU "SOBRE"
   ============================================================ */

.has-dropdown {
  position: relative;
}

.nav-link-parent {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.caret {
  width: 6px;
  height: 6px;

  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;

  transform: rotate(45deg) translateY(-1px);

  margin-left: .4rem;

  transition: transform .35s var(--ease);
}

.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret,
.has-dropdown.open .caret {
  transform: rotate(225deg) translateY(1px);
}

.dropdown {
  position: absolute;

  top: 100%;
  left: -.6rem;

  min-width: 210px;

  padding: .5rem;
  padding-top: .9rem;

  display: flex;
  flex-direction: column;
  gap: .15rem;

  /* Dropdown permanece azul-marinho */
  background: var(--navy-800);

  border: 1px solid var(--line-lt);
  border-radius: var(--radius);

  box-shadow: 0 18px 44px rgba(7, 26, 43, .32);

  opacity: 0;
  visibility: hidden;

  transform: translateY(8px);

  transition:
    opacity .35s var(--ease),
    transform .35s var(--ease),
    visibility .35s;

  z-index: 30;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;

  padding: .6rem .8rem;

  font-size: .88rem;

  color: rgba(255, 255, 255, .82);

  border-radius: 2px;

  transition:
    background .3s var(--ease),
    color .3s var(--ease);
}

.dropdown a:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--gold-lt);
}


/* ============================================================
   ESTADO SCROLLED
   ============================================================

   Quando o usuário rolar:
   - Header fica azul-marinho
   - Continua com elementos claros
   - Não existe troca para tema claro
   - Pequeno blur para dar profundidade
   */

.site-header.scrolled {
  padding-block: .95rem;

  background: rgba(7, 26, 43, .96);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 1px 0 rgba(255, 255, 255, .05),
    0 12px 30px rgba(7, 26, 43, .16);
}


/* ============================================================
   BRAND — SCROLLED
   ============================================================ */

.site-header.scrolled .brand-name {
  color: var(--offwhite);
}

.site-header.scrolled .brand-sub {
  color: rgba(247, 245, 240, .6);
}


/* ============================================================
   NAV — SCROLLED
   ============================================================ */

.site-header.scrolled .nav-link {
  color: rgba(247, 245, 240, .82);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.is-active {
  color: var(--offwhite);
}


/* ============================================================
   HAMBURGER
   ============================================================ */

.menu-toggle {
  display: none;

  flex-direction: column;
  gap: 5px;

  width: 30px;

  padding: 6px 0;

  background: none;
  border: 0;

  cursor: pointer;
}

.menu-toggle span {
  height: 1.5px;
  width: 100%;

  background: var(--white);

  transition:
    transform .4s var(--ease),
    opacity .3s var(--ease),
    background .4s var(--ease);
}

/* Hamburger continua branco mesmo após scroll */

.site-header.scrolled .menu-toggle span {
  background: var(--white);
}

/* ============================================================
   HAMBURGER — ABERTO
   ============================================================ */

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============ 5. MENU MOBILE ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--navy-900);
  padding: 7rem var(--gutter) 3rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .55s var(--ease), opacity .4s var(--ease), visibility .55s;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-nav { display: flex; flex-direction: column; gap: 1.6rem; }
.mobile-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  border-bottom: 1px solid var(--line-lt);
  padding-bottom: 1.2rem;
  transition: color .3s var(--ease);
}
.mobile-link:hover { color: var(--gold); }
.mobile-cta { margin-top: 1rem; align-self: flex-start; }
.mobile-menu .btn-gold { 
  background: linear-gradient(120deg, #C9A45C, #f5e19b, #ffedad);
  color: var(--navy-900); 
  border-color: var(--gold); }

/* ============ 6. HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(52% 46% at 86% 22%, rgba(201, 164, 92, .12), transparent 62%),
    radial-gradient(120% 120% at 80% 0%, var(--navy-800) 0%, var(--navy-900) 55%);
  color: var(--white);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 2rem !important;
  width: 100%;
}
.hero .eyebrow { color: var(--gold-lt); }

.hero-title {
  font-size: 40px;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 1.6rem;
  max-width: 800px;
  font-family: "Oxygen", sans-serif;
  font-weight: 700;
}

.hero-support {
  max-width: 48ch;
  color: rgba(255,255,255,.72);
  font-size: 1.08rem;
  margin-bottom: 2.6rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3.4rem;
}
.hero .btn-gold {
  background: linear-gradient(120deg, #C9A45C, #f5e19b, #ffedad);
  color: var(--navy-900);
  border-color: var(--gold);
}
.hero .btn-gold:hover {
  background: linear-gradient(120deg, #f3c975, #f5e19b);
  border-color: var(--gold-lt);
}
.hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.28); }
.hero .btn-ghost:hover { border-color: var(--gold); }

.hero-metric {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-lt);
  max-width: 340px;
}
.metric-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 2rem + 3vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
  color: #071A2B;
}
.metric-plus { color: var(--gold); }
.metric-label {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0, 14, 76, 0.6);
  line-height: 1.5;
}

/* ---- Visual do hero (imagem emoldurada + parallax) ---- */
.hero-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
  will-change: transform;
}
/* Moldura dourada deslocada (profundidade) */
.hero-frame {
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: 0;
  pointer-events: none;
}

/* Figura / imagem */
.hero-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
}
.hero-figure img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block
  ; 
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 26, 43, .5));
  pointer-events: none;
}


/* Indicador de scroll */
.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .7rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.55);
  transition: color .4s var(--ease);
}
.scroll-cue:hover { color: var(--gold); }
.scroll-arrow { animation: scrollBob 2.4s var(--ease) infinite; }
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: .6; }
  50% { transform: translateY(5px); opacity: 1; }
}

/* Visual enxuga em telas menores */
@media (max-width: 860px) {
  .hero-visual { justify-self: center; margin-inline: auto; max-width: 340px; }
  .hero-frame, .hero-dots { display: none; }
}

/* ============ 7. SOBRE ============ */
/* =========================================================
   SOBRE — EXPERIÊNCIA & ESTRATÉGIA
   ========================================================= */

.about {
  overflow: hidden;
  padding-block: clamp(7rem, 11vw, 10rem);
}

.about .wrap {
  width: min(100% - 8rem, 1380px);
  margin-inline: auto;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.about-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.about-heading {
  max-width: 850px;
}

.about-heading .eyebrow {
  margin-bottom: 1.5rem;
}

.about-heading .section-title {
  margin: 0;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}


/* =========================================================
   MÉTRICA 25+
   ========================================================= */

.about-metric {
  display: flex;
  align-items: flex-end;
  gap: 1.1rem;
  padding-bottom: 0.35rem;
  white-space: nowrap;
}

.metric-num {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 6vw, 6.5rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.metric-plus {
  color: var(--gold);
  font-size: 0.48em;
  vertical-align: top;
  margin-left: 0.08em;
}

.metric-label {
  color: #737d8b;
  font-size: 0.75rem;
  line-height: 1.55;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}


/* =========================================================
   LINHA EDITORIAL
   ========================================================= */

.about-divider {
  width: 100%;
  height: 1px;
  margin-block: clamp(4rem, 6vw, 6rem) clamp(3.5rem, 5vw, 5rem);
  background: rgba(7, 26, 43, 0.12);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}


/* =========================================================
   CORPO
   ========================================================= */

.about-body {
  max-width: 1120px;
}

.about-body p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #66717e;
}

.about-body .lead {
  max-width: 1050px;
  margin-bottom: 2rem;
  color: #3f4d5c;
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  line-height: 1.75;
}

.about-body b {
  color: #344251;
  font-weight: 600;
}

.about-body p:not(.lead) {
  max-width: 1100px;
}


/* =========================================================
   LINK
   ========================================================= */

.about-body .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;

  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.about-body .link-arrow span {
  color: var(--gold);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.about-body .link-arrow:hover span {
  transform: translateX(5px);
}


/* =========================================================
   REVEAL — ANIMAÇÃO AO ENTRAR NA TELA
   ========================================================= */

.about [data-reveal] {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1);
}


/* Estado visível */

.about [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Eyebrow entra primeiro */

.about-heading .eyebrow {
  transition-delay: 0.05s;
}


/* Título entra logo depois */

.about-heading .section-title {
  transition-delay: 0.15s;
}


/* 25+ entra um pouco depois */

.about-metric {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(.16, 1, .3, 1);
  transition-delay: 0.3s;
}

.about-metric.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Linha cresce horizontalmente */

.about-divider.is-visible {
  transform: scaleX(1);
}


/* Primeiro parágrafo */

.about-body .lead {
  transition-delay: 0.15s;
}


/* Segundo parágrafo */

.about-body p:not(.lead) {
  transition-delay: 0.3s;
}


/* Link */

.about-body .link-arrow {
  transition-delay: 0.45s;
}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 900px) {

  .about .wrap {
    width: min(100% - 3rem, 1380px);
  }

  .about-head {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-metric {
    justify-self: start;
  }

}


@media (max-width: 600px) {

  .about {
    padding-block: 5.5rem 5rem;
  }

  .about .wrap {
    width: min(100% - 2.5rem, 1380px);
  }

  .about-heading .section-title {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
    line-height: 1.04;
  }

  .about-divider {
    margin-block: 3.5rem 3rem;
  }

  .about-metric {
    gap: 0.85rem;
  }

  .metric-num {
    font-size: 4.5rem;
  }

  .metric-label {
    font-size: 0.65rem;
  }

  .about-body p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .about-body .lead {
    font-size: 1.05rem;
  }

}
/* ============================================================
   7b. CLIENTES / MARQUEE DE LOGOS
   ============================================================ */

.clientes {
  overflow: hidden;
}



/* ============================================================
   CABEÇALHO DA SEÇÃO
   ============================================================ */

.clientes-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.clientes-head .eyebrow {
  justify-content: center;
  text-align: center;
}

.clientes-title {
  font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem);
  text-align: center;
}

.clientes-subtitle {
  width: 100%;
  max-width: 700px;

  margin: .75rem auto 0;

  font-size: 14px;
  line-height: 1.7;

  color: #68717A;

  text-align: center;
}


/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  position: relative;

  width: 100%;

  overflow: hidden;

  /* Fade elegante nas duas extremidades */
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 12%,
      #000 88%,
      transparent
    );

  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 12%,
      #000 88%,
      transparent
    );
}

.marquee-track {
  display: flex;
  align-items: center;

  width: max-content;

  gap: clamp(2.5rem, 6vw, 5.5rem);

  animation: marquee 42s linear infinite;
}


/* Pausa ao passar o mouse */

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ============================================================
   LOGOS
   ============================================================ */

.logo-slot {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: var(--gray);
  opacity: .5;
  transition:
    opacity .5s var(--ease),
    filter .5s var(--ease),
    transform .5s var(--ease);
}


/* ============================================================
   IMAGENS DOS LOGOS
   ============================================================ */

.logo-slot img {
 display: block;
  width: auto;
  height: auto;
  border-radius: 19px;
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
  transition:
    transform .5s var(--ease),
    opacity .5s var(--ease);
}


/* ============================================================
   LOGOS EM TEXTO
   ============================================================ */

.logo-slot span {
  font-family: var(--font-serif);

  font-size: 1.4rem;
  letter-spacing: .05em;

  white-space: nowrap;
}


/* ============================================================
   HOVER
   ============================================================ */

.logo-slot:hover {
  opacity: 1;
  filter: grayscale(0);

  transform: translateY(-2px);
}

.logo-slot:hover img {
  transform: scale(1.03);
}

/* ============ 8. ATUAÇÃO (DARK · EXPLORER INTERATIVO) ============ */
.atuacao {
  background: var(--navy-900);
  color: var(--white);
}
.atuacao-head { max-width: 720px; margin-bottom: clamp(3rem, 6vw, 5rem); }

/* Lista de áreas (esq.) + painel de detalhe (dir.) */
.atuacao-explorer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* Radios ocultos, porém acessíveis via teclado (setas trocam a seleção) */
.area-input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---- Lista de áreas ---- */
.area-selector { border-top: 1px solid var(--line-lt); }
.area-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 1rem;
  padding-block: clamp(1.15rem, 2.4vw, 1.8rem);
  border-bottom: 1px solid var(--line-lt);
  transition: padding-left .45s var(--ease);
}
/* Área clicável cobrindo a linha inteira */
.area-hit { position: absolute; inset: 0; z-index: 2; cursor: pointer; }

.area-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, .3);
  transition: color .45s var(--ease), transform .45s var(--ease);
}
.area-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 1rem + 1.4vw, 2rem);
  color: rgba(255, 255, 255, .55);
  transition: color .45s var(--ease), transform .45s var(--ease);
}
.area-tab-line {
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 0;
  background: var(--gold-grad);
  transition: width .6s var(--ease);
}

/* Hover (prévia sutil nas áreas não selecionadas) */
.area-item:hover { padding-left: .6rem; }
.area-item:hover .area-title { color: rgba(255, 255, 255, .9); }
.area-item:hover .area-num { color: var(--gold-lt); }
.area-item:hover .area-tab-line { width: 100%; }

/* ---- Painel de detalhe (empilhado no mesmo grid-cell) ---- */
.area-stage { display: grid; }
.area-panel {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--line-lt);
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
.area-glyph {
  position: relative;
  flex: 0 0 auto;
  width: clamp(88px, 11vw, 128px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line-lt);
  border-radius: 12px;
  background: rgba(201, 164, 92, .05);
}
.area-glyph svg { width: 62%; height: 62%; }
.area-badge {
  position: absolute;
  top: 8px; right: 10px;
  font-family: var(--font-serif);
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
}
.area-desc {
  color: rgba(255, 255, 255, .74);
  line-height: 1.6;
  font-size: clamp(1rem, .95rem + .3vw, 1.15rem);
}

/* ---- Estado selecionado (:checked) ---- */
#atuacao-01:checked ~ .area-selector .area-item:nth-child(1) .area-title,
#atuacao-02:checked ~ .area-selector .area-item:nth-child(2) .area-title,
#atuacao-03:checked ~ .area-selector .area-item:nth-child(3) .area-title,
#atuacao-04:checked ~ .area-selector .area-item:nth-child(4) .area-title {
  color: var(--white);
  transform: translateX(4px);
}
#atuacao-01:checked ~ .area-selector .area-item:nth-child(1) .area-num,
#atuacao-02:checked ~ .area-selector .area-item:nth-child(2) .area-num,
#atuacao-03:checked ~ .area-selector .area-item:nth-child(3) .area-num,
#atuacao-04:checked ~ .area-selector .area-item:nth-child(4) .area-num {
  color: var(--gold);
}
#atuacao-01:checked ~ .area-selector .area-item:nth-child(1) .area-tab-line,
#atuacao-02:checked ~ .area-selector .area-item:nth-child(2) .area-tab-line,
#atuacao-03:checked ~ .area-selector .area-item:nth-child(3) .area-tab-line,
#atuacao-04:checked ~ .area-selector .area-item:nth-child(4) .area-tab-line {
  width: 100%;
}

/* Mostra o painel da área selecionada */
#atuacao-01:checked ~ .area-stage .area-panel--01,
#atuacao-02:checked ~ .area-stage .area-panel--02,
#atuacao-03:checked ~ .area-stage .area-panel--03,
#atuacao-04:checked ~ .area-stage .area-panel--04 {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* Foco por teclado visível na área correspondente */
#atuacao-01:focus-visible ~ .area-selector .area-item:nth-child(1) .area-hit,
#atuacao-02:focus-visible ~ .area-selector .area-item:nth-child(2) .area-hit,
#atuacao-03:focus-visible ~ .area-selector .area-item:nth-child(3) .area-hit,
#atuacao-04:focus-visible ~ .area-selector .area-item:nth-child(4) .area-hit {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  border-radius: 6px;
}

/* ---- Responsivo ---- */
@media (max-width: 860px) {
  .atuacao-explorer { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .area-panel { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   9. ESTRUTURAÇÃO · BENTO MODERNO
============================================================ */
.estrutura { position: relative; background: var(--offwhite); overflow: hidden; }

/* Intro */
.estrutura-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.estrutura-title-wrap { max-width: 760px; }
.estrutura-title-wrap .section-title { margin-bottom: 0; }
.estrutura-intro-text { max-width: 420px; margin: 0; color: var(--gray); font-size: 1rem; line-height: 1.8; }

/* Bento grid */
.estrutura-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.6vw, 1.5rem);
}
.est-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.est-card--feature { grid-column: span 2; background: linear-gradient(180deg, #ffffff, #fbf9f3); }
.est-card--wide { grid-column: 1 / -1; min-height: 240px; }

/* Glow de canto (spotlight) */
.est-card::before {
  content: "";
  position: absolute;
  top: -25%; right: -12%;
  width: 55%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 164, 92, .16), transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: -1; pointer-events: none;
}
.est-card--feature::before { opacity: .5; }

/* Linha dourada inferior */
.est-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--gold-grad);
  transition: width .6s var(--ease);
}

/* Número fantasma */
.est-card-ghost {
  position: absolute;
  top: clamp(.8rem, 2vw, 1.4rem);
  right: clamp(1.2rem, 2.5vw, 2rem);
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1;
  color: var(--gold);
  opacity: .13;
  z-index: -1; pointer-events: none;
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}

/* Tag / pill */
.est-card-tag {
  align-self: flex-start;
  padding: .4rem .85rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 164, 92, .35);
  border-radius: 100px;
}

/* Conteúdo */
.est-card-title {
  margin: 0 0 .9rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
  transition: transform .5s var(--ease);
}
.est-card-text { margin: 0; max-width: 52ch; color: var(--gray); font-size: .95rem; line-height: 1.8; }

/* Card largo (03): título e texto lado a lado */
.est-card--wide .est-card-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.est-card--wide .est-card-title { font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem); margin-bottom: 0; max-width: 640px; }
.est-card--wide .est-card-text { max-width: 620px; }

/* Hover */
.est-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 92, .4);
  box-shadow: 0 24px 50px -20px rgba(7, 26, 43, .18);
}
.est-card:hover::before { opacity: 1; }
.est-card:hover::after { width: 100%; }
.est-card:hover .est-card-ghost { opacity: .24; transform: translateY(-4px); }
.est-card:hover .est-card-title { transform: translateX(4px); }

/* Tablet */
@media (max-width: 860px) {
  .estrutura-intro { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
  .estrutura-intro-text { max-width: 620px; }
  .estrutura-grid { grid-template-columns: 1fr; }
  .est-card--feature, .est-card--wide { grid-column: auto; }
  .est-card { min-height: 220px; }
  .est-card--wide .est-card-body { grid-template-columns: 1fr; gap: 1rem; }
  .est-card--wide .est-card-title { margin-bottom: .9rem; }
}

/* Mobile */
@media (max-width: 600px) {
  .estrutura-intro { margin-bottom: 2.5rem; }
  .est-card { padding: 1.8rem 1.5rem; min-height: auto; }
  .est-card-title, .est-card--wide .est-card-title { font-size: 1.6rem; }
  .est-card-ghost { font-size: 3.2rem; }
}


/* ============ 10. NOSSA SOLUÇÃO (DARK · CARDS) ============ */
.solucoes {
  background: radial-gradient(120% 140% at 80% 0%, var(--navy-800) 0%, var(--navy-900) 60%);
  color: var(--white);
}
.solucoes-head { max-width: 720px; margin-bottom: clamp(3rem, 6vw, 5rem); }

.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.solucao-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--line-lt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
/* Linha dourada que cresce no topo ao passar o mouse */
.solucao-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold-grad);
  transition: width .6s var(--ease);
}
.solucao-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 92, .45);
  background: rgba(255, 255, 255, .035);
}
.solucao-card:hover::before { width: 100%; }

.solucao-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
}
.solucao-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1rem + 1vw, 1.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 32px;
}
.solucao-desc { color: rgba(255, 255, 255, .68); font-size: .98rem; }
.solucao-tag {
  margin-top: auto;
  padding-top: .4rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

/* ============ 11. METODOLOGIA (STEPPER VERTICAL) ============ */
.metodologia { background: var(--offwhite); }
.metodologia-head { max-width: 640px; margin-bottom: clamp(3rem, 6vw, 5rem); }

.method { position: relative; max-width: 780px; }

.method-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
  padding-block: 1.4rem;
}

/* Trilho entre marcadores: base cinza (::before) + preenchimento dourado (::after) */
.method-step:not(:last-child)::before {
  content: ""; position: absolute; left: 25px; top: calc(1.4rem + 26px);
  height: 100%; width: 2px; background: var(--line); z-index: 0;
}
.method-step:not(:last-child)::after {
  content: ""; position: absolute; left: 25px; top: calc(1.4rem + 26px);
  height: 100%; width: 2px; background: var(--gold-grad);
  transform: scaleY(0); transform-origin: top;
  transition: transform .7s var(--ease); z-index: 0;
}
/* Preenche em sequência quando a seção entra na tela (classe .filled via JS) */
.method.filled .method-step:nth-of-type(1)::after { transform: scaleY(1); transition-delay: .15s; }
.method.filled .method-step:nth-of-type(2)::after { transform: scaleY(1); transition-delay: .5s; }
.method.filled .method-step:nth-of-type(3)::after { transform: scaleY(1); transition-delay: .85s; }

/* Marcador numerado (cobre o trilho) */
.method-marker {
  position: relative; z-index: 1;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--offwhite);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  transition: background .5s var(--ease), color .5s var(--ease), transform .4s var(--ease);
}
/* Ativa os marcadores em sequência */
.method.filled .method-step:nth-of-type(1) .method-marker { 
  background: linear-gradient(90deg, #071A2B, #0D263D);
  border: none; 
  color:linear-gradient(90deg, #f3c975, #f5e19b);
  font-weight: 700;
 }
.method.filled .method-step:nth-of-type(2) .method-marker { 
  background: linear-gradient(90deg, #071A2B, #0D263D);
  border: none; 
  color:linear-gradient(90deg, #f3c975, #f5e19b);
  font-weight: 700;
 }
.method.filled .method-step:nth-of-type(3) .method-marker { 
  background: linear-gradient(90deg, #071A2B, #0D263D);
  border: none; 
  color:linear-gradient(90deg, #f3c975, #f5e19b);
  font-weight: 700;
 }
.method.filled .method-step:nth-of-type(4) .method-marker { 
  background: linear-gradient(90deg, #071A2B, #0D263D);
  border: none; 
  color:linear-gradient(90deg, #f3c975, #f5e19b);
  font-weight: 700;
 }

.method-body { padding-top: .3rem; }
.method-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .7rem;
}
.method-desc { color: var(--gray); font-size: 1.02rem; max-width: 52ch; }

/* Microinteração */
.method-step:hover .method-marker { transform: scale(1.06); }

/* Movimento reduzido: trilho já preenchido */
@media (prefers-reduced-motion: reduce) {
  .method-step:not(:last-child)::after { transform: scaleY(1); transition: none; }
}

/* ============ 12. EQUIPE ============ */
.equipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.equipe-body .lead { margin-bottom: 2.6rem; }
.people { display: grid; gap: 0; border-top: 1px solid var(--line); }
.person {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.person-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
}
.person-role { font-size: .9rem; color: var(--gray); letter-spacing: .01em; }

/* ============ 13. CTA FINAL (DARK) ============ */
.cta-final {
  background:
    radial-gradient(120% 140% at 20% 0%, var(--navy-800) 0%, var(--navy-900) 60%);
  color: var(--white);
  text-align: center;
}
.cta-inner { max-width: 780px; margin-inline: auto; }
.cta-title {
  font-size: 48px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 1.6rem;
}
.cta-text {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2.6rem;
}
.cta-final .btn-gold { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }
.cta-final .btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

.cta-contacts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: 3.6rem;
  padding-top: 2.6rem;
  border-top: 1px solid var(--line-lt);
}
.cta-contact { display: flex; flex-direction: column; gap: .3rem; }
.cta-contact-label {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.cta-contact-value { font-size: 1.05rem; color: var(--white); transition: color .3s var(--ease); }
.cta-contact:hover .cta-contact-value { color: var(--gold-lt); }

/* ============ 14. FOOTER ============ */
.footer-logo-img {
  display: block;
  height: 150px;  
  width: auto;
}
.site-footer {
  position: relative;
  background: var(--navy-900);
  color: rgba(255, 255, 255, .7);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 1.8rem;
  overflow: hidden;
}
/* Fio dourado no topo */
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 92, .5), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr .7fr .7fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Marca + contatos */
.footer-logo .brand-name { color: var(--white); font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; }
.footer-logo .brand-dot { color: var(--gold); }
.footer-tagline { margin: 1.1rem 0 0; max-width: 42ch; font-size: .95rem; line-height: 1.7; color: rgba(255, 255, 255, .55); }

.footer-contacts { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; }
.footer-contact { display: flex; flex-direction: column; gap: .3rem; }
.footer-contact-label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.footer-contact-value { font-size: 1.02rem; color: var(--white); transition: color .3s var(--ease); }
.footer-contact:hover .footer-contact-value { color: var(--gold-lt); }

/* Colunas de navegação */
.footer-col { display: flex; flex-direction: column; gap: 1rem; }
.footer-col-title { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .4); margin-bottom: .4rem; }
.footer-col a { position: relative; width: fit-content; font-size: .95rem; color: rgba(255, 255, 255, .72); transition: color .3s var(--ease), padding-left .3s var(--ease); }
.footer-col a:hover { color: var(--white); }
/* Seta discreta no hover */
.footer-col a:not(.footer-cta-link)::before {
  content: "→"; position: absolute; left: 0; opacity: 0; color: var(--gold);
  transition: opacity .3s var(--ease);
}
.footer-col a:not(.footer-cta-link):hover { padding-left: 1.4rem; }
.footer-col a:not(.footer-cta-link):hover::before { opacity: 1; }

.footer-cta-link { 
  display: inline-flex; 
  align-items: center; 
  gap: .5rem; 
  color: var(--gold-lt); 
  border: 1px solid #f3c975;
  border-radius: 23px;
  padding: 12px;
  font-weight: 500; }
.footer-cta-link span { transition: transform .3s var(--ease); }
.footer-cta-link:hover span { transform: translateX(4px); }

/* Assinatura gigante */
.footer-wordmark {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: .9;
  font-size: clamp(4rem, 17vw, 15rem);
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .05);
  user-select: none;
  margin-block: clamp(1rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
}
.footer-wordmark span { color: rgba(201, 164, 92, .35); }

/* Base */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-lt);
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
}

/* Responsivo */
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-contacts { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
}
/* ============================================================
   15. WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #25D366;
  color: #fff;

  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);

  z-index: 1000;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  background: #20BD5A;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.whatsapp-float svg {
  display: block;
  width: 27px;
  height: 27px;
}
/* ------------------------------------------------------------
   TOOLTIP
   ------------------------------------------------------------ */

.whatsapp-tooltip {
  position: absolute;

  right: calc(100% + 12px);
  top: 50%;

  transform:
    translateY(-50%)
    translateX(6px);

  white-space: nowrap;

  background: var(--navy-900);

  color: var(--white);

  font-size: .8rem;
  font-weight: 500;

  padding: .55rem .85rem;

  border-radius: 4px;

  opacity: 0;

  pointer-events: none;

  box-shadow:
    0 8px 24px rgba(7, 26, 43, .16);

  transition:
    opacity .35s var(--ease),
    transform .35s var(--ease);
}


/* Pequeno indicador do tooltip */

.whatsapp-tooltip::after {
  content: "";

  position: absolute;

  top: 50%;
  right: -4px;

  width: 8px;
  height: 8px;

  background: var(--navy-900);

  transform:
    translateY(-50%)
    rotate(45deg);
}


/* Mostrar tooltip */

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;

  transform:
    translateY(-50%)
    translateX(0);
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {

  .whatsapp-float {
    width: 52px;
    height: 52px;

    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }

  /*
   * No mobile não há hover real.
   * O tooltip fica oculto para não atrapalhar a interface.
   */
  .whatsapp-tooltip {
    display: none;
  }
}

/* ============ 16. ANIMAÇÕES / REVEAL ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ============ 17. RESPONSIVIDADE ============ */

/* Tablet */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }.hero { min-height: auto; padding-block: 9rem 5rem; }
  .scroll-cue { display: none; }

  .about-grid,
  .equipe-grid { grid-template-columns: 1fr; }
  .about-head, .equipe-head { margin-bottom: 1rem; }

  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-wide { grid-template-columns: 1fr; }

  .solucoes-grid { grid-template-columns: 1fr 1fr; }

  .timeline { grid-template-columns: 1fr 1fr; row-gap: 3rem; }
  .timeline-progress { display: none; }
  .step-dot { display: none; }
  .step { padding-top: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 680px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-actions .btn { flex: 1 1 100%; }

  .area-row { grid-template-columns: 56px 1fr; gap: 1rem; }
  .area-row:hover { padding-left: .4rem; }

  .solucoes-grid { grid-template-columns: 1fr; }

  /* Mantém o título do hero legível em telas estreitas (sua escolha de 48px vale no desktop) */
  .hero-title { font-size: 34px; }

  .timeline { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; }

  .cta-contacts { flex-direction: column; align-items: center; }
}

/* ============ 18. ACESSIBILIDADE / REDUCED-MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .timeline-progress span { width: 100% !important; }
  .step-dot { opacity: 1 !important; transform: scale(1) !important; }

  /* Marquee de logos: sem rolagem — grade centralizada e estática */
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee-track {
    animation: none;
    transform: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1.5rem;
  }
  .marquee-track [data-clone] { display: none; } /* esconde a cópia do loop */
}