/* =========================================================
   EDY DIGITAL STUDIO — STYLE V2
   ========================================================= */

/* =========================
   1. VARIÁVEIS
   ========================= */
:root {
  --azul-950: #020b15;
  --azul-900: #06172d;
  --azul-850: #0a213d;
  --azul-800: #0d2b4d;
  --azul-700: #123d68;
  --azul-neon: #159bff;

  --verde: #78d100;
  --verde-escuro: #37a700;
  --verde-whatsapp: #1dcc68;

  --dourado: #ffae19;
  --dourado-claro: #ffd05d;

  --branco: #ffffff;
  --cinza-50: #f6f9fc;
  --cinza-100: #e9eef5;
  --cinza-300: #b8c5d3;
  --cinza-500: #718397;

  --texto: #e8f1f8;
  --texto-suave: #9fb1c3;

  --borda: rgba(255, 255, 255, 0.10);
  --borda-forte: rgba(255, 255, 255, 0.18);
  --vidro: rgba(255, 255, 255, 0.055);

  --sombra: 0 25px 70px rgba(0, 0, 0, 0.35);
  --sombra-suave: 0 18px 50px rgba(0, 0, 0, 0.22);

  --raio-sm: 12px;
  --raio-md: 18px;
  --raio-lg: 24px;
  --raio-xl: 32px;

  --transicao: 0.25s ease;
  --container: 1180px;
}

/* =========================
   2. RESET E BASE
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--texto);
  background:
    radial-gradient(circle at top right, rgba(21, 155, 255, 0.07), transparent 28%),
    var(--azul-950);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-aberto {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

ul {
  list-style-position: inside;
}

::selection {
  color: var(--azul-950);
  background: var(--dourado);
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--azul-950);
  background: var(--branco);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform var(--transicao);
}

.skip-link:focus {
  transform: translateY(0);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.progresso-pagina {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azul-neon), var(--verde), var(--dourado));
  box-shadow: 0 0 14px rgba(120, 209, 0, 0.55);
}

/* =========================
   3. TIPOGRAFIA
   ========================= */
h1,
h2,
h3,
h4 {
  font-family: Manrope, Inter, sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  letter-spacing: -0.045em;
}

h3 {
  letter-spacing: -0.02em;
}

.etiqueta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--dourado);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.etiqueta::before {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--dourado), transparent);
  content: "";
}

/* =========================
   4. BOTÕES
   ========================= */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform var(--transicao),
    box-shadow var(--transicao),
    border-color var(--transicao),
    filter var(--transicao);
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.34) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  content: "";
}

.btn:hover::before {
  transform: translateX(130%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-principal {
  color: var(--azul-950);
  background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
  box-shadow: 0 15px 40px rgba(255, 174, 25, 0.26);
}

.btn-principal:hover {
  box-shadow: 0 20px 50px rgba(255, 174, 25, 0.36);
}

.btn-secundario {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--branco);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.btn-secundario:hover {
  border-color: rgba(255, 174, 25, 0.65);
  background: rgba(255, 255, 255, 0.09);
}

.btn-whatsapp {
  color: var(--branco);
  background: linear-gradient(135deg, #1dcc68, #0b9849);
  box-shadow: 0 15px 36px rgba(29, 204, 104, 0.25);
}

.btn-largo {
  width: 100%;
  border: 0;
}

/* =========================
   5. CABEÇALHO
   ========================= */
.topo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 16, 31, 0.72);
  backdrop-filter: blur(20px);
  transition:
    background var(--transicao),
    box-shadow var(--transicao),
    border-color var(--transicao);
}

.topo.rolando {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(2, 11, 21, 0.92);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.26);
}

.topo-interno {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 24px;
  transition: min-height var(--transicao);
}

.topo.rolando .topo-interno {
  min-height: 70px;
}

.marca {
  display: flex;
  min-width: 285px;
  align-items: center;
  gap: 12px;
}

.marca img {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
}

.marca strong,
.marca span {
  display: block;
}

.marca strong {
  font-family: Manrope, sans-serif;
  font-size: 1rem;
}

.marca span {
  color: var(--dourado);
  font-size: 0.68rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.menu a {
  position: relative;
  padding: 9px 0;
  color: #c8d5e2;
  font-size: 0.79rem;
  font-weight: 750;
  transition: color var(--transicao);
}

.menu a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dourado), var(--verde));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transicao);
  content: "";
}

.menu a:hover,
.menu a.ativo {
  color: var(--branco);
}

.menu a:hover::after,
.menu a.ativo::after {
  transform: scaleX(1);
}

.topo-cta {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.75rem;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  color: var(--branco);
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.3rem;
  cursor: pointer;
}

/* =========================
   6. HERO
   ========================= */
.hero {
  position: relative;
  display: flex;
  min-height: 850px;
  align-items: center;
  overflow: hidden;
  padding-top: 82px;
  background:
    radial-gradient(circle at 76% 24%, rgba(21, 155, 255, 0.21), transparent 29%),
    radial-gradient(circle at 86% 68%, rgba(120, 209, 0, 0.09), transparent 24%),
    linear-gradient(135deg, #03101f 0%, #071d37 55%, #042942 100%);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -35%;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}

.orb-1 {
  top: 80px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(120, 209, 0, 0.16), transparent 68%);
}

.orb-2 {
  bottom: -100px;
  left: -170px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 174, 25, 0.14), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  padding-block: 72px;
}

.hero-conteudo {
  position: relative;
  z-index: 3;
}

.hero h1 strong {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #fff, var(--dourado) 52%, var(--verde));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-conteudo > p {
  max-width: 700px;
  margin: 28px 0;
  color: #b7c7d6;
  font-size: 1.08rem;
}

.hero-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.hero-provas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #cad8e5;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-provas span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-metricas {
  display: grid;
  max-width: 660px;
  margin-top: 34px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-metricas div {
  padding: 15px 16px;
  border: 1px solid var(--borda);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.hero-metricas strong,
.hero-metricas span {
  display: block;
}

.hero-metricas strong {
  color: var(--dourado);
  font-size: 0.94rem;
}

.hero-metricas span {
  margin-top: 4px;
  color: var(--texto-suave);
  font-size: 0.68rem;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 660px;
  align-items: flex-end;
  justify-content: center;
}

.hero-pessoa {
  position: relative;
  width: min(100%, 500px);
  height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 220px 220px 40px 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    #081c33;
  box-shadow: var(--sombra);
}

.hero-pessoa::after {
  position: absolute;
  inset: auto 8% 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(2, 11, 21, 0.30));
  content: "";
}

.hero-pessoa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.tecnologia-card {
  position: absolute;
  z-index: 4;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(6, 23, 45, 0.76);
  box-shadow: var(--sombra);
  backdrop-filter: blur(14px);
}

.tecnologia-card span,
.tecnologia-card strong {
  display: block;
}

.tecnologia-card span {
  color: var(--dourado);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.tecnologia-card strong {
  font-size: 0.82rem;
}

.card-a {
  top: 170px;
  left: -15px;
}

.card-b {
  top: 330px;
  right: -15px;
}

.status-online {
  position: absolute;
  right: 12px;
  bottom: 24px;
  z-index: 5;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--azul-950);
  background: var(--branco);
  box-shadow: var(--sombra);
  font-size: 0.7rem;
  font-weight: 850;
}

.status-online span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #13c965;
  box-shadow: 0 0 0 5px rgba(19, 201, 101, 0.15);
}

.indicador-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 5;
  display: grid;
  width: 30px;
  height: 48px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  transform: translateX(-50%);
}

.indicador-scroll span {
  width: 5px;
  height: 9px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--dourado);
  animation: scrollIndicador 1.8s ease-in-out infinite;
}

/* =========================
   7. FAIXA DE BENEFÍCIOS
   ========================= */
.faixa-beneficios {
  position: relative;
  z-index: 3;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: #06172d;
}

.faixa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.faixa-grid div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.faixa-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.faixa-grid b {
  color: var(--dourado);
  font-size: 0.76rem;
}

.faixa-grid span {
  font-size: 0.76rem;
  font-weight: 800;
}

/* =========================
   8. SEÇÕES GERAIS
   ========================= */
.secao {
  position: relative;
  padding: 110px 0;
}

.secao:nth-of-type(even) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent),
    #07182e;
}
.secao.tecnologia{
    background:
        radial-gradient(circle at 20% 45%, rgba(255,174,25,.06), transparent 28%),
        linear-gradient(180deg, #08090c 0%, #121820 100%);
}
.secao.portfolio{
    background:
        radial-gradient(circle at 80% 20%, rgba(32,116,255,.08), transparent 30%),
        linear-gradient(180deg, #071018 0%, #0b1623 100%);
}
.secao-cabecalho {
  max-width: 670px;
}

.secao-cabecalho.central {
  margin: 0 auto 55px;
  text-align: center;
}

.secao-cabecalho.central .etiqueta {
  justify-content: center;
}

.secao-cabecalho p,
.tecnologia-conteudo > p,
.contato-conteudo > p {
  margin-top: 22px;
  color: var(--texto-suave);
  font-size: 1.02rem;
}

.duas-colunas {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

/* =========================
   9. PROBLEMA
   ========================= */
.painel-problemas {
  display: grid;
  gap: 15px;
}

.painel-problemas article {
  display: flex;
  gap: 18px;
  padding: 22px;
 border: 1px solid rgba(255, 255, 255, 0.08);
border-left: 4px solid #ff5a52;
border-radius: 22px;
background: linear-gradient(
  145deg,
  rgba(16, 24, 38, 0.95),
  rgba(11, 18, 30, 0.90)
);
  transition:
    transform var(--transicao),
    border-color var(--transicao),
    background var(--transicao);
}

.painel-problemas article:hover {
border-left: 4px solid #ff5a52;
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 22px;
background: linear-gradient(
    145deg,
    rgba(16, 24, 38, 0.95),
    rgba(11, 18, 30, 0.90)
);
}

.painel-problemas article > span {
  display: grid;
  flex: 0 0 37px;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 50%;
  color: #ff775d;
  background: rgba(255, 119, 93, 0.12);
  font-weight: 900;
}

.painel-problemas h3 {
  font-size: 1.04rem;
}

.painel-problemas p {
  margin-top: 6px;
  color: var(--texto-suave);
  font-size: 0.82rem;
}

/* =========================
   10. SERVIÇOS
   ========================= */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.servico-card {
  position: relative;
  min-height: 295px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--borda);
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
  transition:
    transform var(--transicao),
    border-color var(--transicao),
    box-shadow var(--transicao);
}

.servico-card::before {
  position: absolute;
  top: -60px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 155, 255, 0.16), transparent 70%);
  content: "";
}

.servico-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 209, 0, 0.12), transparent 70%);
  content: "";
}

.servico-card:hover {
  border-color: rgba(255, 174, 25, 0.5);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  transform: translateY(-7px);
}

.servico-card.destaque {
  background: linear-gradient(145deg, rgba(21, 155, 255, 0.18), rgba(120, 209, 0, 0.08));
}

.icone {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--dourado);
  background: #0c2949;
  font-size: 1.4rem;
}

.servico-card h3 {
  font-size: 1.25rem;
}

.servico-card p {
  margin: 14px 0 23px;
  color: var(--texto-suave);
  font-size: 0.87rem;
}

.servico-card > span {
  color: var(--verde);
  font-size: 0.7rem;
  font-weight: 850;
}

/* =========================
   11. TECNOLOGIA
   ========================= */
.tecnologia-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
}

.checklist {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  list-style: none;
}

.checklist li {
  padding: 16px 18px;
  border-left: 3px solid var(--verde);
  border-radius: 0 12px 12px 0;
  color: #bcd0df;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.87rem;
}

.checklist b {
  color: var(--branco);
}

.dashboard {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 25px;
  background: linear-gradient(145deg, #151d28, #0b1118);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.45s ease;
}

.dashboard:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0);
}

.dashboard-top {
  display: flex;
  gap: 6px;
  padding: 8px;
}

.dashboard-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #26415b;
}

.dashboard-top span:first-child {
  background: #ff6e55;
}

.dashboard-top span:nth-child(2) {
  background: #ffbd2d;
}

.dashboard-top span:last-child {
  background: #28c840;
}

.dashboard-corpo {
  display: grid;
  min-height: 380px;
  overflow: hidden;
  grid-template-columns: 65px 1fr;
  border-radius: 16px;
  background: #07172a;
}

.dashboard-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  background: #0d2845;
}

.dashboard-menu i {
  width: 25px;
  height: 8px;
  border-radius: 8px;
  background: #31516d;
}

.dashboard-dados {
  display: grid;
  padding: 25px;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.mini-card {
 padding: 22px;
border: 1px solid rgba(255, 255, 255, 0.10);
border-radius: 18px;
background: linear-gradient(
    145deg,
    rgba(22, 42, 68, 0.88),
    rgba(12, 24, 40, 0.82)
);
backdrop-filter: blur(12px);
box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 10px 30px rgba(0,0,0,.25);
}

.mini-card small,
.mini-card strong,
.mini-card em {
  display: block;
}

.mini-card small {
  color: var(--texto-suave);
}

.mini-card strong {
  margin: 9px 0;
  color: var(--dourado);
  font-size: 1.22rem;
}

.mini-card em {
  color: #6ee484;
  font-size: 0.68rem;
  font-style: normal;
}

.grafico {
  display: flex;
  height: 220px;
  align-items: flex-end;
  grid-column: 1 / -1;
  gap: 14px;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(
    180deg,
    rgba(8, 18, 32, 0.95),
    rgba(12, 28, 48, 0.90)
);
border: 1px solid rgba(255, 255, 255, 0.06);
box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 35px rgba(0, 0, 0, 0.30);
}

.grafico div {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(
    to top,
    #2ea8ff 0%,
    #41c7ff 30%,
    #6be54d 75%,
    #9cff00 100%
);
  transform-origin: bottom;
  animation: crescerBarra 1.2s ease both;
}

/* =========================
   12. PORTFÓLIO
   ========================= */
.portfolio-grid {
  display: grid;
  gap: 70px;
}

.projeto {
  display: grid;
  align-items: center;
  padding: 40px;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 45px;
  border: 1px solid var(--borda);
  border-radius: 28px;
background:
  linear-gradient(145deg, rgba(20, 34, 54, 0.96), rgba(8, 14, 24, 0.98));

box-shadow:
  0 18px 45px rgba(0, 0, 0, 0.35),
  inset 0 1px 0 rgba(255, 255, 255, 0.05);

backdrop-filter: blur(12px);
}

.projeto.invertido {
  grid-template-columns: 0.65fr 1.35fr;
}

.projeto.invertido .notebook {
  order: 2;
}

.notebook {
  position: relative;
  padding: 16px 16px 12px;
  border-radius: 22px 22px 8px 8px;
  background: linear-gradient(145deg, #202830, #10151b);
  box-shadow: 0 35px 55px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease;
}

.projeto:hover .notebook {
  transform: translateY(-10px) scale(1.02) rotateX(2deg);
}

.projeto:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.notebook-camera {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3e4852;
}

.notebook-tela {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: #000;
}

.notebook-tela img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notebook-base {
  position: absolute;
  bottom: -13px;
  left: -6%;
  width: 112%;
  height: 13px;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(#69727b, #303840);
}

.projeto-info > span {
  color: var(--dourado);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.projeto-info h3 {
  margin: 12px 0;
  font-size: 1.95rem;
}

.projeto-info p {
  color: var(--texto-suave);
  font-size: 0.87rem;
}

.projeto-recursos {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  list-style: none;
}

.projeto-recursos li {
  position: relative;
  padding-left: 18px;
  color: #c7d5e1;
  font-size: 0.77rem;
}

.projeto-recursos li::before {
  position: absolute;
  left: 0;
  color: var(--verde);
  content: "✓";
}

.projeto-info > a {
  display: inline-block;
  margin-top: 22px;
  color: var(--verde);
  font-size: 0.8rem;
  font-weight: 850;
}

/* =========================
   13. PROCESSO
   ========================= */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline article {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 28px;
 border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 22px;
background:
  linear-gradient(
    145deg,
    rgba(20, 34, 54, 0.98),
    rgba(7, 14, 25, 0.99)
  );
box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.05),
  0 20px 50px rgba(0, 0, 0, 0.35);
transition:
  transform var(--transicao),
  border-color var(--transicao),
  box-shadow var(--transicao);
}

.timeline article::after {
  position: absolute;

  font-size: 7rem;
  font-weight: 900;
  content: attr(data-step);
}

.timeline article:hover {
    border-color: rgba(255, 174, 25, 0.28);
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 35px 80px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(0, 140, 255, 0.08);
}

.timeline b {
  display: block;
  margin-bottom: 25px;
  color: var(--dourado);
  font-size: 0.8rem;
}

.timeline h3 {
  font-size: 1.25rem;
}

.timeline p {
  margin-top: 10px;
  color: var(--texto-suave);
  font-size: 0.8rem;
}

/* =========================
   14. PÚBLICOS E BRIEFING
   ========================= */
.publicos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.publicos-grid span,
.briefing-lista span {
  padding: 12px 17px;
  border: 1px solid var(--borda);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
  font-weight: 750;
  transition:
    transform var(--transicao),
    border-color var(--transicao),
    background var(--transicao);
}

.publicos-grid span:hover,
.briefing-lista span:hover {
  border-color: rgba(120, 209, 0, 0.34);
  background: rgba(120, 209, 0, 0.07);
  transform: translateY(-3px);
}
.publicos-grid span {
  position: relative;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;

  background:
    linear-gradient(
      145deg,
      rgba(20, 34, 54, 0.95),
      rgba(8, 18, 32, 0.98)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 15px 35px rgba(0, 0, 0, 0.25);

  transition:
    transform var(--transicao),
    border-color var(--transicao),
    box-shadow var(--transicao),
    color var(--transicao);
}

.publicos-grid span:hover {
  color: #ffffff;
  border-color: rgba(255, 174, 25, 0.30);
  transform: translateY(-6px) scale(1.02);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 45px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(30, 170, 255, 0.10);
}

.briefing-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.briefing-lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.briefing-lista span {
  position: relative;
  padding: 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  min-height: 72px;
display: flex;
align-items: center;
font-weight: 600;
letter-spacing: .2px;

  background:
    linear-gradient(
      145deg,
      rgba(20, 34, 54, 0.96),
      rgba(8, 18, 32, 0.98)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 30px rgba(0, 0, 0, 0.22);

  transition:
    transform var(--transicao),
    border-color var(--transicao),
    box-shadow var(--transicao);
}
.briefing-lista span:hover {
  border-color: rgba(120, 209, 0, 0.35);
  transform: translateY(-8px) scale(1.03);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 45px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(0, 200, 120, 0.10);
}

/* =========================
   15. EQUIPE
   ========================= */
.equipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.membro {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--borda);
  border-radius: 28px;
  background: #091e37;
  box-shadow: var(--sombra-suave);
}

.membro-foto {
  min-height: 520px;
  overflow: hidden;
  background: #07172a;
}
.equipe-grid .membro:nth-child(1) .membro-foto {
  background:
    linear-gradient(rgba(4, 15, 28, 0.10), rgba(4, 15, 28, 0.28)),
    url("../img/fundo-equipe-feminino.webp") center center / cover no-repeat;
}

.equipe-grid .membro:nth-child(2) .membro-foto {
  background:
    linear-gradient(rgba(4, 15, 28, 0.08), rgba(4, 15, 28, 0.25)),
    url("../img/bg-especialista-tecnologia.webp") center center / cover no-repeat;
}

.membro-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
/* Ajuste somente da especialista */
.equipe-grid .membro:nth-child(1) .membro-foto img{
    transform: translateY(38px);
}

/* Hover somente da especialista */
.equipe-grid .membro:nth-child(1):hover .membro-foto img{
    transform: translateY(28px) scale(1.05);
}

.membro:hover .membro-foto img {
  transform: scale(1.035);
}

.membro-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px;
}

.membro-info span {
  color: var(--dourado);
  font-size: 0.64rem;
  font-weight: 900;
}

.membro-info h3 {
  margin: 15px 0;
  font-size: 1.68rem;
}

.membro-info p {
  color: var(--texto-suave);
  font-size: 0.85rem;
}

/* =========================
   16. FAQ
   ========================= */
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 65px;
}

.acordeao {
  display: grid;
  gap: 10px;
}

.acordeao details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(20, 34, 54, 0.96),
      rgba(8, 18, 32, 0.98)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 32px rgba(0, 0, 0, 0.22);

  transition:
    transform var(--transicao),
    border-color var(--transicao),
    box-shadow var(--transicao);
}
.acordeao details:hover {
  border-color: rgba(255, 174, 25, 0.24);
  transform: translateY(-3px);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 20px 44px rgba(0, 0, 0, 0.30),
    0 0 24px rgba(255, 174, 25, 0.05);
}

.acordeao details[open] {
  border-color: rgba(255, 174, 25, 0.32);
  transform: translateY(-3px);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 55px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(255, 174, 25, 0.07);
}

.acordeao summary {
  position: relative;
  padding: 22px 64px 22px 22px;
  list-style: none;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;

  transition:
    color var(--transicao),
    background var(--transicao);
}
.acordeao summary:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.025);
}

.acordeao summary::-webkit-details-marker {
  display: none;
}

.acordeao summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--azul-950);
  background: linear-gradient(135deg, #ffbf3f, #ff9f0a);
  font-size: 1rem;
  transform: translateY(-50%);
  content: "+";

  box-shadow: 0 8px 22px rgba(255, 174, 25, 0.24);

  transition:
    transform var(--transicao),
    box-shadow var(--transicao);
}

.acordeao details[open] summary::after {
    content: "+";
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 10px 28px rgba(255, 174, 25, 0.34);
}

.acordeao p {
  padding: 0 22px 24px;
  color: var(--texto-suave);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 92%;
}

/* =========================
   17. CONTATO
   ========================= */
.contato {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(255, 179, 71, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(0, 170, 255, 0.08), transparent 35%),
    linear-gradient(135deg, #06172d, #081b35) !important;
}

.contato-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.contato-dados {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.contato-dados a {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(20,34,54,.96),
      rgba(8,18,32,.98)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 14px 30px rgba(0,0,0,.22);

  transition:
    transform var(--transicao),
    border-color var(--transicao),
    box-shadow var(--transicao);
}

.contato-dados a:hover {
  border-color: rgba(120, 209, 0, 0.35);
  transform: translateY(-6px) scale(1.02);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 22px 45px rgba(0,0,0,.35),
    0 0 30px rgba(0,200,120,.10);
}

.contato-dados small,
.contato-dados strong {
  display: block;
}

.contato-dados small {
  color: var(--dourado);
  font-size: 0.64rem;
}

.contato-dados strong {
  font-size: 0.82rem;
}

.formulario {
  position: relative;
  overflow: hidden;

  padding: 42px;
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.98),
      rgba(245,248,252,.98)
    );

  border: 1px solid rgba(255,255,255,.85);

  box-shadow:
    0 35px 80px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.95);

  transition:
    transform var(--transicao),
    box-shadow var(--transicao);
}
.formulario:hover {
  transform: translateY(-8px);

  box-shadow:
    0 45px 95px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.linha-formulario {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.formulario label {
  display: block;
  margin-bottom: 16px;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.1px;
}

.formulario input,
.formulario select,
.formulario textarea {
  width: 100%;
  margin-top: 8px;
  padding: 16px 18px;

  border: 1px solid #d9e2ec;
  border-radius: 14px;

  background: #ffffff;
  color: #0f172a;

  font-size: .95rem;
  transition:
    border-color var(--transicao),
    box-shadow var(--transicao),
    transform var(--transicao);

  outline: none;
}

.formulario textarea {
  min-height: 130px;
  resize: vertical;
}

.formulario input:focus,
.formulario select:focus,
.formulario textarea:focus {
  border-color: rgba(255, 179, 71, .55);

  transform: translateY(-2px);

  box-shadow:
    0 0 0 4px rgba(255,179,71,.12),
    0 12px 28px rgba(0,0,0,.08);
}

.formulario .campo-invalido {
  border-color: #d93b3b;
  box-shadow: 0 0 0 4px rgba(217, 59, 59, 0.10);
}

.consentimento {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  color: #52677a;
  font-weight: 500 !important;
}

.consentimento input {
  width: 19px;
  height: 19px;
  margin: 0;
  flex: 0 0 19px;
}

.erro-campo {
  display: block;
  min-height: 17px;
  margin-top: 5px;
  color: #c92b2b;
  font-size: 0.68rem;
  font-weight: 700;
}

.status-formulario {
  min-height: 24px;
  margin-top: 12px;
  color: #17663c;
  font-size: 0.8rem;
  font-weight: 700;
}

.aviso {
  margin-top: 12px;
  color: #718397;
  font-size: 0.64rem;
}

/* =========================
   18. RODAPÉ
   ========================= */
.rodape {
    position: relative;
    overflow: hidden;

   padding: 18px 0 8px;

    background:
        radial-gradient(circle at top right, rgba(255,179,71,.08), transparent 30%),
        radial-gradient(circle at bottom left, rgba(21,155,255,.06), transparent 35%),
        linear-gradient(180deg, #020b15 0%, #06172d 100%);
}

.rodape-grid {
    display: grid;
    align-items: start;

    grid-template-columns: 1.4fr repeat(3, 1fr);

    gap: 36px;
}
.rodape-contato a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rodape-contato a svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: currentColor;
}

.rodape-marca img {
    width: 92px;
    height: 92px;

    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.10);

    box-shadow:
        0 0 0 1px rgba(255,179,71,.10),
        0 18px 40px rgba(0,0,0,.35),
        0 0 26px rgba(255,179,71,.10);

    transition:
        transform var(--transicao),
        box-shadow var(--transicao),
        border-color var(--transicao);
}
.rodape-marca img:hover {
    transform: translateY(-6px) scale(1.05);

    border-color: rgba(255,179,71,.45);

    box-shadow:
        0 0 0 1px rgba(255,179,71,.18),
        0 24px 50px rgba(0,0,0,.45),
        0 0 34px rgba(255,179,71,.18);
}

.rodape h3 {
  margin: 15px 0 5px;
}

.rodape h4 {
    margin-bottom: 24px;

    color: var(--dourado);

    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.rodape p,
.rodape span,
.rodape a {
    display: block;

    color: #93a8c2;

    font-size: .95rem;
    line-height: 1.9;
    letter-spacing: .2px;

    text-decoration: none;
}

.rodape a {
    width: fit-content;

    margin-bottom: 00px;

    transition:
        color var(--transicao),
        transform var(--transicao),
        text-shadow var(--transicao);
}

.rodape a:hover {
  color: var(--branco);
  transform: translateX(3px);
}

.rodape a:hover {
    color: var(--dourado);

    transform: translateX(6px);

    text-shadow: 0 0 14px rgba(255,179,71,.25);
}

.rodape-final {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;

  margin-top: 12px;
  padding-top: 12px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.rodape-direitos{
    font-size: .88rem;
    line-height: 1.5;
}

.rodape-direitos span{
    display:block;
    margin-bottom:6px;
}
.rodape-final > div {
  flex: 1;
}

.rodape-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px 18px;

  text-align: right;
  padding-right: 100px;
  font-style: normal;
}

.rodape-info span {
  display: inline;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
}
/* =========================
   19. BOTÕES FLUTUANTES
   ========================= */
.whatsapp-flutuante,
.voltar-topo {
  position: fixed;
  z-index: 45;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition:
    opacity var(--transicao),
    visibility var(--transicao),
    transform var(--transicao);
}

.whatsapp-flutuante {
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  display: flex;
justify-content: center;
align-items: center;
  color: var(--branco);
  background: var(--verde-whatsapp);
  box-shadow: 0 17px 40px rgba(29, 204, 104, 0.4);
  font-size: 1.8rem;
}
.whatsapp-flutuante svg{
    width: 30px;
    height: 30px;
    display: block;
}

.whatsapp-flutuante:hover {
  transform: scale(1.08);
}

.voltar-topo {
  right: 30px;
  bottom: 98px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--branco);
  background: rgba(6, 23, 45, 0.92);
  box-shadow: var(--sombra-suave);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.voltar-topo.visivel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.aviso-javascript {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 999;
  max-width: 360px;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--azul-950);
  background: var(--dourado);
  font-size: 0.8rem;
  font-weight: 800;
}

/* =========================
   20. ACESSIBILIDADE
   ========================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--dourado);
  outline-offset: 4px;
}

/* =========================
   21. ANIMAÇÕES
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visivel {
  opacity: 1;
  transform: none;
}

.card-flutuante {
  animation: flutuar 4s ease-in-out infinite;
}

.card-b {
  animation-delay: -2s;
}

@keyframes flutuar {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes scrollIndicador {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(16px);
  }
}

@keyframes crescerBarra {
  from {
    transform: scaleY(0.1);
  }

  to {
    transform: scaleY(1);
  }
}

/* =========================
   22. TABLET
   ========================= */
@media (max-width: 1050px) {
  .menu {
    position: fixed;
    top: 82px;
    left: 0;
    display: none;
    width: 100%;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(3, 16, 31, 0.98);
  }

  .menu.aberto {
    display: flex;
  }

  .menu a {
    padding: 14px 8px;
    font-size: 0.92rem;
  }

  .menu a::after {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .topo-cta {
    display: none;
  }

  .hero-grid,
  .duas-colunas,
  .tecnologia-grid,
  .contato-grid,
  .faq-grid,
  .briefing-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 50px;
  }

  .hero-conteudo {
    text-align: center;
  }

  .hero-conteudo > p {
    margin-inline: auto;
  }

  .hero-acoes,
  .hero-provas {
    justify-content: center;
  }

  .hero-metricas {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 600px;
  }

  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projeto,
  .projeto.invertido {
    grid-template-columns: 1fr;
  }

  .projeto.invertido .notebook {
    order: 0;
  }

  .equipe-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .rodape-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   23. CELULAR
   ========================= */
@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .topo {
    background: rgba(3, 16, 31, 0.94);
  }

  .topo-interno,
  .topo.rolando .topo-interno {
    min-height: 70px;
  }

  .menu {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .marca {
    min-width: 0;
  }

  .marca img {
    width: 44px;
    height: 44px;
  }

  .marca div {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-grid {
    padding-block: 48px 75px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .hero-conteudo > p {
    font-size: 0.95rem;
  }

  .hero-metricas {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-pessoa {
    height: 500px;
  }

  .card-a {
    top: 90px;
    left: 0;
  }

  .card-b {
    top: 250px;
    right: 0;
  }

  .status-online {
    right: 0;
  }

  .indicador-scroll {
    display: none;
  }

  .faixa-grid,
  .servicos-grid,
  .timeline,
  .linha-formulario,
  .briefing-lista,
  .rodape-grid {
    grid-template-columns: 1fr;
  }

  .faixa-grid div {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .faixa-grid div:first-child {
    border-top: 0;
  }

  .secao {
    padding: 76px 0;
  }

  .secao h2 {
    font-size: clamp(2.05rem, 10vw, 3.3rem);
  }

  .dashboard {
    transform: none;
  }

  .dashboard-corpo {
    grid-template-columns: 45px 1fr;
  }

  .dashboard-dados {
    grid-template-columns: 1fr;
  }

  .grafico {
    grid-column: auto;
  }

  .projeto {
    padding: 22px;
  }

  .equipe-grid {
    gap: 18px;
  }

  .membro {
    grid-template-columns: 1fr;
  }

  .membro-foto {
    min-height: 500px;
  }

  .rodape-final {
    flex-direction: column;
  }

  .whatsapp-flutuante {
    right: 15px;
    bottom: 15px;
    width: 56px;
    height: 56px;
  }

  .voltar-topo {
    right: 21px;
    bottom: 82px;
  }

  .tecnologia-card {
    padding: 10px 12px;
  }

  .publicos-grid {
    justify-content: flex-start;
  }

  .hero-provas {
    gap: 9px;
  }

  .hero-provas span {
    font-size: 0.65rem;
  }

  .formulario {
    padding: 22px;
  }
}

/* =========================
   24. MOVIMENTO REDUZIDO
   ========================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   EDY DIGITAL STUDIO — HERO PREMIUM LIMPO
   ETAPA 1: ESTRUTURA E POSICIONAMENTO
   ========================================================= */

.hero-premium {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  padding-top: 62px;
  isolation: isolate;

  background:
    linear-gradient(
      90deg,
      rgba(2, 11, 21, 0.96) 0%,
      rgba(2, 11, 21, 0.88) 30%,
      rgba(2, 11, 21, 0.52) 58%,
      rgba(2, 11, 21, 0.16) 100%
    ),
    url("../img/hero-tech-background.webp")
      center center / cover no-repeat;
}

.hero-premium::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(2, 11, 21, 0.82) 0%,
      rgba(2, 11, 21, 0.28) 52%,
      transparent 76%
    );
  content: "";
}

.hero-premium::after {
  position: absolute;
  right: -220px;
  bottom: -390px;
  z-index: 0;
  width: 850px;
  height: 850px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.015),
    0 0 0 140px rgba(255, 255, 255, 0.010);
  content: "";
}

.hero-premium .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
 min-height: 670px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.95fr);
  gap: 85px;
  padding-top: 25px;
  padding-bottom: 20px;
}

.hero-premium .hero-conteudo {
  position: relative;
  z-index: 5;
  max-width: 720px;
}

.hero-premium .etiqueta {
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 174, 25, 0.22);
  border-radius: 999px;
  background: rgba(255, 174, 25, 0.055);
  backdrop-filter: blur(10px);
}

.hero-premium .etiqueta::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dourado);
  box-shadow: 0 0 0 6px rgba(255, 174, 25, 0.10);
}

.hero-premium h1 {
  max-width: 620px;
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-premium h1 strong {
  display: block;
  margin-top: 8px;
  padding-bottom: 8px;
  color: transparent;
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffca52 46%,
      #78d100 100%
    );
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-premium .hero-conteudo > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #b9cada;
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-premium .hero-acoes {
  margin: 34px 0 26px;
}

.hero-premium .hero-acoes .btn {
  min-height: 56px;
  padding-inline: 27px;
  border-radius: 16px;
}

.hero-premium .hero-provas {
  gap: 10px 14px;
}

.hero-premium .hero-provas span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.hero-premium .hero-metricas {
  max-width: 680px;
  margin-top: 30px;
  gap: 13px;
}

.hero-premium .hero-metricas div {
  min-height: 82px;
  padding: 17px 18px;
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.02)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 35px rgba(0, 0, 0, 0.13);
}

/* =========================
   COMPOSIÇÃO VISUAL
   ========================= */

.hero-visual-premium {
  position: relative;
  min-height: 760px;
  align-self: center;
  overflow: visible;
  isolation: isolate;

  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* =========================
   MOCKUPS
   ========================= */

.hero-mockup {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: #07172a;
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transform-origin: center;
}

.hero-mockup-topo {
  display: flex;
  height: 28px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.10),
      rgba(255, 255, 255, 0.025)
    );
}

.hero-mockup-topo span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28445f;
}

.hero-mockup-topo span:first-child {
  background: #ff6b56;
}

.hero-mockup-topo span:nth-child(2) {
  background: #ffbd2d;
}

.hero-mockup-topo span:last-child {
  background: #28c840;
}

.hero-mockup-tela {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.hero-mockup-tela img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mockup-principal {
  top: 130px;
  right: -70px;
  z-index: 1;
 width: 520px;
  transform:
    perspective(1400px)
    rotateY(-7deg)
    rotateX(2deg);
}

.hero-mockup-secundario {
  right: 120px;
  bottom: -10px;
  z-index: 2;
  width: 320px;
  opacity: 0.95;
  transform:
    perspective(1300px)
    rotateY(8deg)
    rotateX(1deg);
}

/* =========================
   ESPECIALISTA
   ========================= */

.hero-pessoa-premium {
  position: absolute;
  right: 20px;
 bottom: -110px;
  z-index: 5;
  width: 560px;
  height: 820px;
  overflow: visible;
  background: transparent;
  filter: drop-shadow(0 0 120px rgba(30, 170, 255, 0.55));
  
}

.hero-pessoa-premium img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
filter:
    drop-shadow(0 0 80px rgba(30, 170, 255, 0.35))
    drop-shadow(0 30px 32px rgba(0, 0, 0, 0.55))
    contrast(1.03)
    saturate(1.04);
}

/* =========================
   CARDS E SELO
   ========================= */

.hero-visual-premium .card-a {
  top: 165px;
  left: -20px;
  z-index: 8;
}

.hero-visual-premium .card-b {
  top: 405px;
  right: -70px;
  z-index: 8;
}

.hero-visual-premium .status-online {
  right: 95px;
  bottom: 16px;
  z-index: 9;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1050px) {
  .hero-premium {
    min-height: auto;
  }

  .hero-premium .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .hero-premium .hero-conteudo {
    margin-inline: auto;
    text-align: center;
  }

  .hero-premium .hero-conteudo > p {
    margin-inline: auto;
  }

  .hero-premium .hero-acoes,
  .hero-premium .hero-provas {
    justify-content: center;
  }

  .hero-premium .hero-metricas {
    margin-inline: auto;
  }

  .hero-visual-premium {
    min-height: 650px;
    overflow: hidden;
  }

  .hero-mockup-principal {
    top: 70px;
    right: 4%;
    width: 70%;
  }

  .hero-mockup-secundario {
    right: auto;
    bottom: 65px;
    left: 4%;
    width: 48%;
  }

  .hero-pessoa-premium {
    right: 50%;
    width: 300px;
    height: 610px;
    transform: translateX(50%);
  }

  .hero-visual-premium .card-a {
    left: 5%;
  }

  .hero-visual-premium .card-b {
    right: 5%;
  }

  .hero-visual-premium .status-online {
    right: 50%;
    transform: translateX(50%);
  }
}

/* =========================
   CELULAR
   ========================= */

@media (max-width: 680px) {
  .hero-premium {
    padding-top: 70px;
  }

  .hero-premium .hero-grid {
    padding-top: 45px;
    padding-bottom: 70px;
  }

  .hero-premium h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: 1;
  }

  .hero-premium .hero-conteudo > p {
    font-size: 0.95rem;
  }

  .hero-premium .hero-acoes {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-premium .hero-acoes .btn {
    width: 100%;
  }

  .hero-premium .hero-metricas {
    grid-template-columns: 1fr;
  }

  .hero-visual-premium {
    min-height: 570px;
  }

  .hero-mockup-principal {
    top: 45px;
    right: -80px;
    width: 360px;
  }

  .hero-mockup-secundario {
    bottom: 75px;
    left: -70px;
    width: 270px;
  }

  .hero-pessoa-premium {
  right: 50%;
  bottom: -50px;
  width: min(92vw, 390px);
  height: 800px;
  transform: translateX(50%);
}

  .hero-visual-premium .card-a {
    top: 115px;
    left: 0;
  }

  .hero-visual-premium .card-b {
    top: 295px;
    right: 0;
  }

  .hero-visual-premium .status-online {
    right: 50%;
    bottom: 12px;
    transform: translateX(50%);
  }
}