/* ═══════════════════════════════════════════════════════════
   VALDIR BORBA — Brasil → EUA
   Paleta: navy #082549 · vermelho #C6151F · marfim #F2EFE6
   Tipos: Big Shoulders Display (display) · Instrument Serif
          (itálico/alma) · Archivo (texto & labels)

   Sistema de labels (só dois tamanhos):
     primário   11px  / 0.32em  → eyebrows
     secundário 9.5px / 0.26em  → cue, stats, contato, categorias
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink: #04070F;
  --navy: #082549;
  --navy-mid: #0B2F5C;
  --sheet: #060D1D;
  --red: #C6151F;        /* superfícies e sólidos */
  --red-soft: #FF5A57;   /* acentos de texto sobre escuro */
  --ivory: #F2EFE6;
  --steel: #97A8C4;
  --wa-green: #25D366;   /* verde oficial do WhatsApp */
  --line: rgba(151, 168, 196, 0.16);
  --font-display: "Big Shoulders Display", "Big Shoulders", "Archivo", Impact, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-body: "Archivo", system-ui, -apple-system, sans-serif;
  --pad: clamp(20px, 5vw, 48px);
  --peek: 72px;
  --cover-w: min(46vw, 820px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* trava de rolagem só existe se o JS estiver vivo p/ destravá-la */
.js body.is-loading { overflow: hidden; }

ul { list-style: none; }
a { color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--red); color: var(--ivory); }

:focus-visible {
  outline: 2px solid var(--red-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #16294a; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ═══════════════ REVEALS ═══════════════
   Declarado ANTES dos componentes e sempre em elementos-invólucro,
   para nunca disputar transform/transition com hovers.            */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.js [data-reveal].in-view { opacity: 1; transform: none; }

/* ═══════════════ PRELOADER ═══════════════ */

.loader { display: none; }

.js .loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: transform 0.65s cubic-bezier(0.7, 0, 0.3, 1) 0.62s;
}

.js .loader.loader--exit { transform: translateY(-100%); }
.js .loader.loader--gone { display: none; }

.loader__center { text-align: center; }

.loader__star {
  width: clamp(52px, 14vw, 72px);
  margin: 0 auto 26px;
  overflow: visible;
}

.loader__star-path {
  stroke: var(--ivory);
  stroke-width: 2;
  fill: var(--red);
  fill-opacity: 0;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation:
    star-draw 0.9s var(--ease-out) 0.15s forwards,
    star-fill 0.45s ease 0.95s forwards;
}

@keyframes star-draw { to { stroke-dashoffset: 0; } }
@keyframes star-fill { to { fill-opacity: 1; } }

.loader__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 15vw, 5.4rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.loader__line { display: block; overflow: hidden; }

.loader__line i {
  display: inline-block;
  font-style: normal;
  transform: translateY(112%);
  animation: line-up 0.75s var(--ease-out) forwards;
}

.loader__line:nth-child(1) i { animation-delay: 0.4s; }
.loader__line:nth-child(2) i {
  animation-delay: 0.52s;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ivory);
}

@keyframes line-up { to { transform: translateY(0); } }

.loader__tag {
  margin-top: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--steel);
  opacity: 0;
  animation: fade-in 0.6s ease 0.95s forwards;
}

.loader__tag .loader__arrow { color: var(--red-soft); }

@keyframes fade-in { to { opacity: 1; } }

.loader__bands {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loader__band {
  position: absolute;
  inset: 0;
  transform: translateY(102%);
}

.loader__band--red   { background: var(--red); }
.loader__band--ivory { background: var(--ivory); }
.loader__band--navy  { background: var(--navy); }

.loader--exit .loader__band {
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.loader--exit .loader__band--red   { transition-delay: 0s;    transform: translateY(0); }
.loader--exit .loader__band--ivory { transition-delay: 0.09s; transform: translateY(0); }
.loader--exit .loader__band--navy  { transition-delay: 0.18s; transform: translateY(0); }

/* ═══════════════ ALTERNADOR DE IDIOMA ═══════════════ */

.lang {
  position: fixed;
  top: 16px;
  right: var(--pad);
  z-index: 60;
  display: flex;
  padding: 3px;
  border: 1px solid rgba(242, 239, 230, 0.2);
  border-radius: 999px;
  background: rgba(4, 7, 15, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lang__btn {
  appearance: none;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 6px 13px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(242, 239, 230, 0.6);
  cursor: pointer;
  transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.lang__btn:hover { color: var(--ivory); }

.lang__btn.is-active {
  background: var(--red);
  color: var(--ivory);
}

/* ═══════════════ CAPA FIXA ═══════════════ */

.cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 0;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* isolation: os z-index internos (video/wash/grain) ficam contidos aqui
   e nunca sobem por cima de .cover__content */
.cover__media { position: absolute; inset: 0; z-index: 0; isolation: isolate; }

/* img e video empilhados: o video cobre a img, que vira fallback real */
.cover__img,
.cover__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
  filter: saturate(0.8) contrast(1.06) brightness(0.8);
  animation: kenburns 22s ease-in-out infinite alternate;
}

.cover__video { z-index: 1; }

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* tinge navy p/ unificar com a paleta */
.cover__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--navy);
  mix-blend-mode: multiply;
  opacity: 0.32;
}

/* fundo "preto de estúdio" + escurece a faixa do nome
   (o punho branco e o relógio ficavam comendo o contorno de BORBA) */
.cover__wash {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg,
      rgba(4, 7, 15, 0.78) 0%,
      rgba(4, 7, 15, 0.12) 28%,
      rgba(4, 7, 15, 0.42) 55%,
      rgba(4, 7, 15, 0.9) 78%,
      var(--ink) 97%),
    radial-gradient(130% 92% at 50% 28%,
      rgba(4, 7, 15, 0) 30%,
      rgba(4, 7, 15, 0.6) 70%,
      var(--ink) 100%);
}

.cover__grain {
  position: absolute;
  inset: -60%;
  z-index: 4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.07;
  animation: grain 9s steps(10) infinite;
  pointer-events: none;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -5%); }
  60% { transform: translate(-5%, -2%); }
  80% { transform: translate(4%, 4%); }
}

.cover__bigstar {
  position: absolute;
  top: 4%;
  right: -14%;
  width: 58vmin;
  fill: none;
  stroke: rgba(242, 239, 230, 0.08);
  stroke-width: 0.45;
  animation: slow-rot 140s linear infinite;
  pointer-events: none;
}

@keyframes slow-rot { to { transform: rotate(360deg); } }

.cover__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) calc(var(--peek) + clamp(64px, 10vh, 110px));
}

.cover__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: rgba(242, 239, 230, 0.85);
}

.cover__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(198, 21, 31, 0.6); }
  70%  { box-shadow: 0 0 0 11px rgba(198, 21, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 21, 31, 0); }
}

.cover__to { color: var(--red-soft); }

.cover__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.4rem, 20.5vw, 9.5rem);
  line-height: 0.84;
  letter-spacing: 0.012em;
  margin: 0.16em 0 0.22em;
  text-shadow: 0 8px 42px rgba(0, 0, 0, 0.45);
}

.cover__word { display: block; overflow: hidden; }

.cover__word i { display: inline-block; font-style: normal; }

/* preenchimento-fantasma: o traço sempre separa dos brancos da foto */
.cover__word--outline i {
  color: rgba(4, 7, 15, 0.35);
  -webkit-text-stroke: 2.25px var(--ivory);
  text-shadow: none;
}

.cover__namestar {
  display: inline-block;
  width: 0.3em;
  margin-left: 0.1em;
  fill: var(--red);
  -webkit-text-stroke: 0;
  vertical-align: 0.06em;
}

.cover__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 4.4vw, 1.4rem);
  line-height: 1.4;
  color: rgba(242, 239, 230, 0.86);
  max-width: 30ch;
}

.cover__tagline em { font-style: italic; }

/* entrada orquestrada — estado inicial (só com JS) */
.js .cover__eyebrow.reveal-line,
.js .cover__tagline.reveal-line {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.js .cover__word.reveal-line i {
  transform: translateY(112%);
  transition: transform 0.95s var(--ease-out);
}

.cover__cue {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: calc(var(--peek) + 20px);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.8s ease;
}

.js .cover__cue { opacity: 0; }

/* o atraso de 1s pertence só à entrada — não ao fade de scroll */
body.is-ready .cover__cue { transition-delay: 1s; }

/* enquanto o scroll comanda a opacidade, o JS zera a transição inline */

.cover__cue-text {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: rgba(242, 239, 230, 0.6);
}

.cover__cue-track {
  position: relative;
  width: 1.5px;
  height: 46px;
  background: rgba(242, 239, 230, 0.22);
  overflow: hidden;
}

.cover__cue-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 14px;
  background: var(--red);
  animation: cue-slide 1.8s var(--ease-out) infinite;
}

@keyframes cue-slide {
  0%   { transform: translateY(-16px); }
  60%, 100% { transform: translateY(48px); }
}

/* estado pronto: capa entra */
body.is-ready .cover__eyebrow.reveal-line { opacity: 1; transform: none; transition-delay: 0.12s; }
body.is-ready .cover__word:nth-child(1) i { transform: translateY(0); transition-delay: 0.2s; }
body.is-ready .cover__word:nth-child(2) i { transform: translateY(0); transition-delay: 0.33s; }
body.is-ready .cover__tagline.reveal-line { opacity: 1; transform: none; transition-delay: 0.55s; }
body.is-ready .cover__cue { opacity: 1; }

/* ═══════════════ FOLHA DE CONTEÚDO ═══════════════ */

.sheet {
  position: relative;
  z-index: 2;
  margin-top: calc(100vh - var(--peek));
  margin-top: calc(100svh - var(--peek));
  background: var(--sheet);
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -32px 70px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* ── ticker vermelho ── */

.ticker {
  background: var(--red);
  color: var(--ivory);
  padding: 16px 0;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-run 30s linear infinite;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.ticker__group svg {
  width: 12px;
  height: 12px;
  fill: rgba(242, 239, 230, 0.9);
  flex-shrink: 0;
}

@keyframes ticker-run { to { transform: translateX(-50%); } }

/* ── seções ── */

.section {
  padding: clamp(64px, 12vw, 110px) var(--pad);
  max-width: 780px;
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--red-soft);
  margin-bottom: 24px;
}

.eyebrow__star { width: 12px; height: 12px; fill: var(--red-soft); flex-shrink: 0; }

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 11vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: 0.012em;
  margin-bottom: 40px;
}

/* o itálico serifado é sempre o acento — nunca o cinza de label */
.section__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ivory);
}

/* ── manifesto ── */

.manifesto__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.95rem, 7.6vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0.015em;
  margin-bottom: 30px;
}

.manifesto__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1em;
  letter-spacing: 0;
  color: var(--red-soft);
}

/* ── "His story": botão discreto que expande a biografia ── */

.more-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--steel);
  transition: color 0.3s var(--ease-out);
}

.more-btn:hover { color: var(--ivory); }

.more-btn__icon {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.35s var(--ease-out), transform 0.45s var(--ease-out);
}

.more-btn__icon::before,
.more-btn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  margin: -0.75px 0 0 -4.5px;
  background: var(--red-soft);
  transition: transform 0.45s var(--ease-out);
}

.more-btn__icon::after { transform: rotate(90deg); }

.more-btn:hover .more-btn__icon { border-color: var(--red-soft); }

/* o "+" gira meia volta e a barra vertical some: vira um "−" limpo */
.more-btn[aria-expanded="true"] .more-btn__icon { transform: rotate(180deg); }
.more-btn[aria-expanded="true"] .more-btn__icon::after { transform: rotate(90deg) scaleX(0); }

.manifesto__reveal {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s var(--ease-out);
}

.manifesto__reveal > div { overflow: hidden; }

.manifesto__reveal.is-open { grid-template-rows: 1fr; }

.manifesto__body { padding-top: 26px; }

.manifesto__body p {
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 58ch;
}

.manifesto__body p + p { margin-top: 1.1em; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.stats__num {
  display: flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.7rem, 10vw, 4.2rem);
  line-height: 1;
}

.stats__num sup {
  font-size: 0.36em;
  font-weight: 700;
  color: var(--red-soft);
  margin-left: 3px;
  transform: translateY(-1em);
}

.stats__label {
  display: block;
  margin-top: 10px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--steel);
}

/* ── divisor estrela ── */

.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 780px;
  margin-inline: auto;
  padding: 0 var(--pad);
}

.divider__line { flex: 1; height: 1px; background: var(--line); }

.divider__star {
  width: 15px;
  height: 15px;
  fill: rgba(242, 239, 230, 0.3);
  flex-shrink: 0;
}

/* ── empresas ── */

.companies__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Em repouso o card é o próprio fundo, contornado por um traço que vai do
   vermelho ao azul. No hover, três faixas varrem da esquerda como uma
   bandeira sendo puxada: navy, vermelho e por fim o marfim, que fica. */
.company {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1.5px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(var(--sheet), var(--sheet)) padding-box,
    linear-gradient(118deg, var(--red) 0%, #7A1B37 42%, var(--navy-mid) 78%, var(--navy-mid) 100%) border-box;
  padding: 24px 20px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out);
}

.company__fill {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.company__fill i {
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.55s var(--ease-out);
}

.company__fill i:nth-child(1) { background: var(--navy-mid); transition-delay: 0.14s; }
.company__fill i:nth-child(2) { background: var(--red);      transition-delay: 0.07s; }
.company__fill i:nth-child(3) { background: var(--ivory);    transition-delay: 0s; }

/* Placa marfim: uma caixa óptica idêntica para os quatro logos, que mantém
   as marcas em cor cheia sobre o card escuro. No preenchimento ela se
   dissolve no campo marfim e some. */
.company__logo {
  position: relative;
  z-index: 1;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  border-radius: 12px;
  background: var(--ivory);
  transition: transform 0.45s var(--ease-out),
              background 0.4s var(--ease-out) 0.2s;
}

.company__logo img { max-height: 100%; max-width: 100%; object-fit: contain; }

.company__logo--fin img { max-height: 48px; }
.company__logo--ins img { max-height: 34px; }

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  line-height: 0.9;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

.wordmark__sub {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  white-space: nowrap;
}

.wordmark__sub svg { width: 7px; height: 7px; fill: currentColor; }

.company__info { position: relative; z-index: 1; min-width: 0; }

.company__cat {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--red-soft);
  margin-bottom: 7px;
  transition: color 0.4s var(--ease-out) 0.2s;
}

.company__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 5.6vw, 1.9rem);
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color 0.4s var(--ease-out) 0.2s;
}

.company__desc {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--steel);
  max-width: 42ch;
  transition: color 0.4s var(--ease-out) 0.2s;
}

.company__go {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(242, 239, 230, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ivory);
  align-self: start;
  transition: background 0.4s var(--ease-out) 0.2s, border-color 0.4s var(--ease-out) 0.2s,
              color 0.4s var(--ease-out) 0.2s, transform 0.4s var(--ease-out);
}

.company__go svg { width: 19px; height: 19px; }

/* cards sem site ainda: nada de seta, nada de promessa de navegação */
.company--soon { cursor: default; }

.company__soon {
  position: relative;
  z-index: 1;
  align-self: start;
  padding: 6px 11px;
  border: 1px solid rgba(242, 239, 230, 0.24);
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--steel);
  white-space: nowrap;
  transition: color 0.4s var(--ease-out) 0.2s, border-color 0.4s var(--ease-out) 0.2s;
}

/* No celular a coluna do meio ficava estrangulada entre o logo e a seta.
   Logo e seta sobem para uma linha própria; o texto ganha a largura toda. */
@media (max-width: 700px) {
  .company {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "logo action"
      "info info";
    align-items: start;
    gap: 18px 12px;
  }

  .company__logo { grid-area: logo; width: 108px; height: 60px; }
  .company__go,
  .company__soon { grid-area: action; justify-self: end; }
  .company__info { grid-area: info; }
  .company__desc { max-width: none; }
}

/* ── estado preenchido: hover no desktop, entrada em tela no toque ── */

.company.is-filled .company__fill i { transform: translateX(0); }
.company.is-filled .company__fill i:nth-child(1) { transition-delay: 0s; }
.company.is-filled .company__fill i:nth-child(2) { transition-delay: 0.07s; }
.company.is-filled .company__fill i:nth-child(3) { transition-delay: 0.14s; }

.company.is-filled .company__logo { background: transparent; }
.company.is-filled .company__cat { color: var(--red); }
.company.is-filled .company__name { color: var(--navy); }
.company.is-filled .company__desc { color: #47597A; }

.company.is-filled .company__go {
  border-color: rgba(8, 37, 73, 0.28);
  color: var(--navy);
}

.company.is-filled .company__soon {
  border-color: rgba(8, 37, 73, 0.22);
  color: rgba(8, 37, 73, 0.62);
}

@media (hover: hover) {
  a.company:hover { transform: translateY(-5px); }

  a.company:hover .company__fill i { transform: translateX(0); }
  a.company:hover .company__fill i:nth-child(1) { transition-delay: 0s; }
  a.company:hover .company__fill i:nth-child(2) { transition-delay: 0.07s; }
  a.company:hover .company__fill i:nth-child(3) { transition-delay: 0.14s; }

  a.company:hover .company__logo { transform: scale(1.05); background: transparent; }
  a.company:hover .company__cat { color: var(--red); }
  a.company:hover .company__name { color: var(--navy); }
  a.company:hover .company__desc { color: #47597A; }

  a.company:hover .company__go {
    background: var(--red);
    border-color: var(--red);
    color: var(--ivory);
    transform: rotate(45deg);
  }
}

/* ── contato ── */

.wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: var(--red);
  color: var(--ivory);
  border-radius: 999px;
  padding: 21px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 4.6vw, 1.35rem);
  letter-spacing: 0.12em;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), color 0.35s var(--ease-out);
  will-change: transform;
}

.wa-wrap { margin-bottom: 38px; }

.wa-btn__fill {
  position: absolute;
  inset: 0;
  background: var(--wa-green);
  border-radius: inherit;
  transform: translateY(102%);
  transition: transform 0.5s var(--ease-out);
}

.wa-btn__icon { position: relative; z-index: 1; width: 23px; height: 23px; flex-shrink: 0; }
.wa-btn__text { position: relative; z-index: 1; }

.wa-btn__arrow {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  margin-left: auto;
  transition: transform 0.4s var(--ease-out);
}

@media (hover: hover) {
  .wa-btn:hover .wa-btn__fill { transform: translateY(0); }
  .wa-btn:hover .wa-btn__arrow { transform: rotate(45deg); }
  .wa-btn:hover { color: var(--navy); }
}

.contact__list { border-top: 1px solid var(--line); }

.contact__row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 14px;
  padding: 20px 10px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  overflow: hidden;
}

.contact__row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ivory);
  transform: translateY(101%);
  transition: transform 0.38s var(--ease-out);
}

.contact__label {
  grid-column: 1 / -1;
  position: relative;
  z-index: 1;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--steel);
  transition: color 0.38s;
}

.contact__value {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 6.4vw, 2.3rem);
  line-height: 1;
  letter-spacing: 0.025em;
  color: var(--ivory);
  transition: color 0.38s;
  min-width: 0;
  overflow-wrap: anywhere;
}

/* o email quebra no @ (via <wbr>) em vez de encolher fora da escala */
.contact__value--email {
  font-size: clamp(1.3rem, 5.2vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  overflow-wrap: normal;
}

.contact__go {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ivory);
  flex-shrink: 0;
  transition: background 0.38s, border-color 0.38s, color 0.38s, transform 0.38s;
}

.contact__go svg { width: 17px; height: 17px; }

@media (hover: hover) {
  .contact__row:hover::before { transform: translateY(0); }
  .contact__row:hover .contact__label { color: rgba(8, 37, 73, 0.75); }
  .contact__row:hover .contact__value { color: var(--navy); }
  .contact__row:hover .contact__go {
    background: var(--red);
    border-color: var(--red);
    color: var(--ivory);
    transform: rotate(45deg);
  }
}

/* ── rodapé ── */

.footer {
  padding: 96px var(--pad) 48px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer__star {
  width: 17px;
  height: 17px;
  fill: var(--red-soft);
  margin: 0 auto 20px;
}

.footer__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
}

.footer__meta {
  margin-top: 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--steel);
}

/* carrega o nº da licença NMLS — precisa passar em contraste */
.footer__copy {
  margin-top: 16px;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: rgba(151, 168, 196, 0.85);
}

/* ═══════════════ DESKTOP: capa trava à esquerda ═══════════════ */

@media (min-width: 1024px) {
  .cover {
    width: var(--cover-w);
    border-right: 1px solid rgba(151, 168, 196, 0.14);
  }

  .cover__content {
    padding: 0 clamp(36px, 4vw, 64px) 120px;
  }

  .cover__name { font-size: clamp(4.2rem, 8.6vw, 8.2rem); }

  .cover__tagline { font-size: 1.25rem; }

  .cover__cue {
    right: clamp(36px, 4vw, 64px);
    bottom: 44px;
  }

  .lang { top: 22px; right: clamp(24px, 3vw, 40px); }

  .cover__bigstar { right: -22%; top: 2%; width: 64vmin; }

  .sheet {
    margin-top: 0;
    margin-left: var(--cover-w);
    border-radius: 0;
    box-shadow: none;
    min-height: 100vh;
  }

  .section { max-width: 700px; }

  .divider { max-width: 700px; }

  .company { grid-template-columns: 104px 1fr auto; padding: 28px 26px; }

  .company__logo { height: 74px; }

  .company__logo--fin img { max-height: 52px; }

  .wordmark { font-size: 1.32rem; }
  .wordmark__sub { font-size: 7px; }

  .contact__row {
    grid-template-columns: 130px 1fr auto;
    padding: 24px 12px;
  }

  .contact__label { grid-column: auto; }
}

@media (min-width: 1600px) {
  .section, .divider { max-width: 760px; }
}

/* ═══════════════ MOVIMENTO REDUZIDO ═══════════════ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .cover__img, .cover__video, .cover__grain, .cover__bigstar,
  .cover__dot, .cover__cue-thumb, .ticker__track {
    animation: none !important;
  }

  .loader__star-path {
    animation: none;
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }

  .loader__line i { animation: none; transform: none; }
  .loader__tag { animation: none; opacity: 1; }
  .js .loader { transition: none; }

  .js [data-reveal],
  .js .cover__eyebrow.reveal-line,
  .js .cover__tagline.reveal-line {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .cover__word.reveal-line i { transform: none; transition: none; }

  .js .cover__cue { opacity: 1; transition: none; }

  * { transition-duration: 0.01ms !important; }
}
