/* ==================================================
   CLAW — NOVA BASE (Padrão criativo + venda)
   Paleta: Preto + Azul Royal + Branco
================================================== */

/* -------------------- TOKENS -------------------- */
:root{
  --bg0:#05060d;
  --bg1:#070a17;
  --bg2:#0b1430;

  --white:#ffffff;
  --text:#eef2ff;
  --muted:#c9d2ff;

  --blue:#2b6cff;       /* azul royal */
  --blue2:#4aa3ff;
  --green:#22c55e;

  --border: rgba(255,255,255,.12);
  --border2: rgba(43,108,255,.28);

  --shadow: 0 22px 70px rgba(0,0,0,.45);
  --shadowB: 0 0 70px rgba(43,108,255,.22);

  --r12:12px;
  --r16:16px;
  --r20:20px;
  --r24:24px;
  --r28:28px;

  --container: 1200px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --ring: 0 0 0 4px rgba(43,108,255,.20);
}

/* -------------------- RESET -------------------- */
*{ margin:0; padding:0; box-sizing:border-box; }
html,body{ height:100%; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 16% 0%, rgba(43,108,255,.18), transparent 60%),
    radial-gradient(900px 620px at 85% 56%, rgba(74,163,255,.12), transparent 56%),
    radial-gradient(780px 520px at 40% 88%, rgba(255,255,255,.06), transparent 58%),
    linear-gradient(135deg, var(--bg0) 0%, var(--bg1) 40%, var(--bg2) 100%);
  background-size: 200% 200%;
  animation: bgmove 30s ease-in-out infinite;
  overflow-x:hidden;
}
@keyframes bgmove{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
button{ font-family:inherit; }
.container{ width: min(92%, var(--container)); margin: 0 auto; }

:focus{ outline:none; }
:focus-visible{ box-shadow: var(--ring); border-radius: 12px; }

/* -------------------- REDUCED MOTION -------------------- */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.5mls !important; animation-iteration-count:2 !important; transition-duration:.30s !important; scroll-behavior:auto !important; }
}

/* -------------------- INTRO -------------------- */
#intro{
  position:fixed; inset:0;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(5,6,13,.98), rgba(11,20,48,.98));
  z-index: 5000;
  opacity:0; pointer-events:none;
  transition: opacity .100s var(--ease);
}
#intro.is-on{ opacity:1; pointer-events:auto; }
#intro.is-off{ opacity:0; pointer-events:none; }
.intro__inner{ text-align:center; padding: 20px; }
.intro__badge{
  display:inline-flex; padding: 8px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-weight: 950; letter-spacing:.18em; font-size: 12px;
}
.intro__text{
  margin-top: 14px;
  font-weight: 950;
  font-size: clamp(34px, 5.2vw, 62px);
  letter-spacing: -0.02em;
  opacity:0; transform: translateY(10px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.intro__text.is-show{ opacity:1; transform: translateY(0); }
.intro__hint{
  margin-top: 12px; color: rgba(231,234,242,.72);
  font-weight: 700; font-size: 13px;
}

/* -------------------- HEADER -------------------- */
.header{
  position: sticky; top: 14px; z-index: 1200;
  padding: 10px 0;
}
.header__row{
  display:flex; align-items:center; justify-content:space-between; gap: 16px;
  background: rgba(5,6,13,.55);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r28);
  padding: 14px 16px;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 45px rgba(0,0,0,.35);
  transition: .25s var(--ease);
}
.header.is-scrolled .header__row{
  border-color: rgba(43,108,255,.22);
  box-shadow: 0 18px 65px rgba(0,0,0,.55);
}

.brand{ display:flex; align-items:center; gap: 10px; }
.brand__mark{
  display:grid; place-items:center;
  width: 52px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-weight: 950; letter-spacing:.18em; font-size: 12px;
}
.brand__sub{
  font-weight: 900;
  font-size: 12px;
  color: rgba(231,234,242,.70);
}

.nav{ display:flex; align-items:center; gap: 14px; flex: 1; justify-content:center; }
.nav__link{
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(231,234,242,.78);
  transition: .2s var(--ease);
}
.nav__link:hover{ color: var(--white); background: rgba(255,255,255,.06); }
.nav__cta{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(43,108,255,.35);
  background: rgba(43,108,255,.16);
  color: var(--white);
  font-weight: 950;
  font-size: 13px;
  cursor:pointer;
  transition: .2s var(--ease);
}
.nav__cta:hover{ background: rgba(43,108,255,.22); box-shadow: var(--shadowB); transform: translateY(-1px); }

.header__actions{ display:flex; gap: 10px; align-items:center; }
.chip{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 950;
  font-size: 12px;
  transition: .2s var(--ease);
  white-space:nowrap;
}
.chip--ghost{ background: rgba(255,255,255,.04); color: rgba(231,234,242,.90); }
.chip--ghost:hover{ border-color: rgba(43,108,255,.35); box-shadow: 0 0 35px rgba(43,108,255,.18); }
.chip--primary{
  background: rgba(43,108,255,.95);
  border-color: rgba(43,108,255,.65);
  color: var(--white);
  box-shadow: 0 0 28px rgba(43,108,255,.35);
}
.chip--primary:hover{ transform: translateY(-1px); }

.hamb{
  display:none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.hamb span{
  display:block;
  width: 20px; height: 2px;
  background: rgba(255,255,255,.92);
  margin: 5px auto;
  border-radius: 10px;
  transition: .25s var(--ease);
}
.hamb.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamb.is-active span:nth-child(2){ opacity:0; }
.hamb.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mnav{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  opacity:0; pointer-events:none;
  transition: .25s var(--ease);
  z-index: 1300;
}
.mnav.is-open{ opacity:1; pointer-events:auto; }
.mnav__panel{
  position:absolute; right: 14px; top: 88px;
  width: min(340px, calc(100% - 28px));
  background: rgba(9, 12, 28, .92);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.mnav__link{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 900;
  color: rgba(231,234,242,.88);
  transition: .2s var(--ease);
}
.mnav__link:hover{ background: rgba(255,255,255,.06); color: var(--white); }
.mnav__cta{
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(43,108,255,.35);
  background: rgba(43,108,255,.18);
  color: var(--white);
  font-weight: 950;
  cursor:pointer;
}
.mnav__div{ height:1px; background: rgba(255,255,255,.08); margin: 10px 0; }

/* -------------------- REVEAL -------------------- */
.reveal{
  opacity:1;
  transform: translateY(18px);
  transition: .15s var(--ease);
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* -------------------- HERO -------------------- */
.hero{ position:relative; padding: 94px 0 66px; overflow:hidden; }
.hero__grid{ display:grid; grid-template-columns: 1.25fr .75fr; gap: 22px; align-items:center; }

}

.eyebrow{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(43,108,255,.30);
  background: rgba(43,108,255,.14);
  color: rgba(255,255,255,.92);
  font-weight: 950;
  font-size: 12px;
  letter-spacing:.25px;
  box-shadow: 0 0 35px rgba(43,108,255,.16);
}
.hero__title{
  margin-top: 14px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-size: clamp(40px, 4.8vw, 70px);
}
.hero__lead{
  margin-top: 12px;
  font-size: 18px;
  color: rgba(231,234,242,.80);
  max-width: 62ch;
}
.hero__actions{
  margin-top: 18px;
  display:flex; gap: 12px;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-weight: 950;
  font-size: 14px;
  cursor:pointer;
  transition: .2s var(--ease);
  color: rgba(255,255,255,.92);
}
.btn:hover{ transform: translateY(-2px); }
.btn--primary{
  background: rgba(43,108,255,.95);
  border-color: rgba(43,108,255,.65);
  box-shadow: 0 0 32px rgba(43,108,255,.38);
}
.btn--ghost:hover{ border-color: rgba(43,108,255,.35); box-shadow: 0 0 40px rgba(43,108,255,.20); }
.btn--subtle{ background: rgba(0,0,0,.12); }
.btn--subtle:hover{ border-color: rgba(255,255,255,.24); }
.w100{ width: 100%; }

.hero__stats{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat{
  padding: 14px 14px;
  border-radius: var(--r20);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
}
.stat strong{ display:block; font-weight: 950; font-size: 14px; }
.stat span{ display:block; margin-top: 6px; color: rgba(231,234,242,.70); font-size: 12px; }

.hero__card{
  padding: 22px;
  border-radius: var(--r24);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero__card::after{
  content:"";
  position:absolute; inset:-70px -80px auto auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(43,108,255,.25), transparent 60%);
  transform: translate(40px, -30px);
  opacity:.9;
}
.hcard__pill{
  position:relative; z-index:1;
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 950;
  font-size: 11px;
}
.hcard__title{
  position:relative; z-index:1;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing:-0.01em;
}
.hcard__text{
  position:relative; z-index:1;
  margin-top: 8px;
  color: rgba(231,234,242,.74);
  font-size: 14px;
  line-height: 1.65;
}
.hcard__mini{
  position:relative; z-index:1;
  margin-top: 12px;
  display:flex; gap: 10px; flex-wrap: wrap;
  color: rgba(231,234,242,.78);
  font-weight: 800;
  font-size: 12px;
}

/* -------------------- SECTION -------------------- */
.section{ padding: 86px 0; }
.section--soft{
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head{ margin-bottom: 28px; }
.section__title{
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: clamp(30px, 3.2vw, 44px);
}
.section__sub{
  margin-top: 10px;
  color: rgba(231,234,242,.76);
  font-size: 16px;
  max-width: 74ch;
}

/* -------------------- CARDS -------------------- */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card{
  text-align:left;
  border-radius: var(--r24);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 40px rgba(0,0,0,.30);
  padding: 24px 22px;
  cursor:pointer;
  transition: .3s var(--ease);
  position:relative;
  overflow:hidden;
}
.card:hover{
  transform: translateY(-8px);
  border-color: rgba(43,108,255,.32);
  box-shadow: var(--shadowB);
}
.card__tag{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 950;
  font-size: 11px;
  color: rgba(231,234,242,.92);
}
.card__title{ margin-top: 10px; font-weight: 950; font-size: 18px; }
.card__text{ margin-top: 8px; color: rgba(231,234,242,.76); font-size: 14px; line-height: 1.65; }
.card__more{
  display:inline-flex;
  margin-top: 14px;
  font-weight: 950;
  font-size: 13px;
  color: rgba(74,163,255,.92);
}

/* -------------------- PORTFÓLIO -------------------- */
.portfolio{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pitem{
  text-align:left;
  border-radius: var(--r24);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 40px rgba(0,0,0,.26);
  padding: 18px;
  cursor:pointer;
  transition: .3s var(--ease);
}
.pitem:hover{
  transform: translateY(-6px);
  border-color: rgba(43,108,255,.30);
  box-shadow: 0 0 60px rgba(43,108,255,.18);
}
.pitem__badge{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 950;
  font-size: 11px;
  margin-bottom: 10px;
}
.pitem strong{ display:block; font-weight: 950; font-size: 16px; margin-bottom: 6px; }
.pitem__sub{ color: rgba(231,234,242,.72); font-size: 13px; }

.center{ text-align:center; }

/* -------------------- PROCESS -------------------- */
.process{
  position:relative;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-top: 24px;
}
.process__rail{
  position:absolute;
  left: 10px; right: 10px;
  top: 40px;
  height: 3px;
  background: rgba(255,255,255,.10);
  border-radius: 999px;
}
.process__progress{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, rgba(43,108,255,.0), rgba(43,108,255,.95), rgba(74,163,255,.95));
  box-shadow: 0 0 35px rgba(43,108,255,.45);
  border-radius: 999px;
  transition: width .55s var(--ease);
}

.step{
  border-radius: var(--r20);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px 14px 16px;
  display:flex;
  flex-direction: column;
  gap: 6px;
  cursor:pointer;
  transition: .3s var(--ease);
}
.step:hover{ transform: translateY(-4px); border-color: rgba(43,108,255,.28); box-shadow: 0 0 55px rgba(43,108,255,.14); }
.step__dot{
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
}
.step__title{ font-weight: 950; font-size: 14px; }
.step__sub{ color: rgba(231,234,242,.70); font-weight: 800; font-size: 12px; }

.step.is-active{
  border-color: rgba(43,108,255,.38);
  box-shadow: 0 0 60px rgba(43,108,255,.18);
}
.step.is-active .step__dot{
  background: rgba(43,108,255,.95);
  border-color: rgba(43,108,255,.75);
  box-shadow: 0 0 18px rgba(43,108,255,.55);
}
.step.is-done{ border-color: rgba(34,197,94,.32); }
.step.is-done .step__dot{
  background: rgba(34,197,94,.95);
  border-color: rgba(34,197,94,.75);
  box-shadow: 0 0 16px rgba(34,197,94,.35);
}
.process__caption{
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--r24);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.process__caption strong{ font-weight: 950; }
.process__caption span{ color: rgba(231,234,242,.72); }

/* -------------------- IMPACT -------------------- */
.impact{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.impact__card{
  text-align:left;
  border-radius: var(--r24);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 40px rgba(0,0,0,.30);
  padding: 22px;
  cursor:pointer;
  transition: .3s var(--ease);
}
.impact__card:hover{
  transform: translateY(-6px);
  border-color: rgba(43,108,255,.30);
  box-shadow: 0 0 60px rgba(43,108,255,.18);
}
.impact__kicker{ display:block; font-weight: 950; font-size: 12px; color: rgba(74,163,255,.92); margin-bottom: 10px; }
.impact__title{ display:block; font-weight: 950; font-size: 18px; margin-bottom: 10px; }
.impact__hint{ color: rgba(231,234,242,.70); font-weight: 800; font-size: 13px; }

.banner{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--r24);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.banner strong{ font-weight: 950; }
.banner span{ color: rgba(231,234,242,.72); }

/* -------------------- CTA -------------------- */
.cta{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}
.cta__title{
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: clamp(30px, 3.2vw, 44px);
}
.cta__lead{
  margin-top: 10px;
  font-size: 16px;
  color: rgba(231,234,242,.80);
  line-height: 1.7;
}
.cta__checks{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.check{
  display:flex; gap: 10px; align-items:center;
  padding: 14px;
  border-radius: var(--r20);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  font-weight: 850;
  color: rgba(231,234,242,.88);
}
.check span{
  width: 22px; height: 22px;
  border-radius: 8px;
  display:grid; place-items:center;
  background: rgba(34,197,94,.18);
  border: 1px solid rgba(34,197,94,.35);
  color: rgba(34,197,94,.95);
  font-weight: 950;
}
.form{
  padding: 18px;
  border-radius: var(--r24);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field{ display:grid; gap: 8px; margin-top: 12px; }
.field span{ font-weight: 950; font-size: 12px; color: rgba(231,234,242,.92); }
.field input, .field textarea{
  width:100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: var(--white);
  transition: .2s var(--ease);
}
.field input:focus, .field textarea:focus{
  border-color: rgba(43,108,255,.45);
  box-shadow: 0 0 40px rgba(43,108,255,.18);
}
.field input::placeholder, .field textarea::placeholder{ color: rgba(231,234,242,.45); }
.form__note{
  margin-top: 12px;
  color: rgba(231,234,242,.70);
  font-size: 12px;
  text-align:center;
}
/* -------------------- FOOTER -------------------- */
.footer{
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}

/* GRID PRINCIPAL */
.footer__grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;                 /* 🔑 espaçamento correto entre colunas */
  align-items: start;        /* 🔑 tudo alinhado pelo topo */
}

/* COLUNA MARCA */
.footer__logo{
  display:inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-weight: 950;
  letter-spacing:.18em;
  width: fit-content;
  margin-bottom: 12px;
}

.footer__desc{
  color: rgba(231,234,242,.70);
  font-size: 14px;
  line-height: 1.6;
  max-width: 46ch;
}

.footer__meta{
  margin-top: 12px;
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: rgba(231,234,242,.78);
}

/* TÍTULOS DAS COLUNAS */
.footer__col h4{
  font-size: 14px;
  font-weight: 950;
  margin-bottom: 14px;
}

.footer__col h4::after{
  content:"";
  display:block;
  width: 32px;
  height: 2px;
  background: rgba(43,108,255,.55);
  margin-top: 8px;
  border-radius: 999px;
}

/* LINKS (NAVEGAÇÃO E ETC) */
.footer__col a{
  display: block;
  margin: 6px 0;             /* 🔑 mais compacto (igual navegação) */
  font-size: 13px;
  font-weight: 850;
  color: rgba(231,234,242,.76);
  transition: .2s var(--ease);
}

.footer__col a:hover{
  color: var(--white);
  transform: translateX(2px);
}

/* REDES SOCIAIS */
.social-links{
  display: flex;
  flex-direction: column;
  gap: 6px;                  /* 🔑 aproxima como navegação */
}

.social-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.4;
  color: rgba(231,234,242,.76);
  transition: .2s var(--ease);
}

.social-item:hover{
  color: var(--white);
}

.social-item i{
  width: 18px;
  text-align: center;
  opacity: .9;
}

/* COPYRIGHT — ABAIXO DO GRID */
.footer__copy{
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  font-size: 12px;
  color: rgba(231,234,242,.55);
}

/* RESPONSIVO */
@media (max-width: 1100px){
  .footer__grid{
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer__logo{
    margin-left: auto;
    margin-right: auto;
  }

  .social-item{
    justify-content: center;
  }
}
/* ===============================
   FOOTER — RESTAURA COMPORTAMENTO DE LINK
================================ */

/* navegação */
.footer__col a{
  cursor: pointer;
}

.footer__col a:hover{
  color: var(--white);
}

/* redes sociais */
.social-item{
  cursor: pointer;
}

.social-item:hover{
  color: var(--white);
}

/* acessibilidade (opcional, mas recomendado) */
.footer__col a:focus-visible,
.social-item:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(43,108,255,.25);
  border-radius: 6px;
}

/* -------------------- MODALS -------------------- */
.modal{
  position: fixed; inset: 0;
  display:grid; place-items:center;
  background: rgba(0,0,0,.62);
  opacity:0; pointer-events:none;
  transition: .25s var(--ease);
  z-index: 3000;
  padding: 14px;
}
.modal.is-open{ opacity:1; pointer-events:auto; }
.modal__box{
  width: min(560px, calc(100% - 28px));
  border-radius: var(--r24);
  background: rgba(9, 12, 28, .96);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  padding: 22px;
  position:relative;
  animation: pop .35s var(--ease);
}
.modal__box--wide{ width: min(980px, calc(100% - 28px)); }
@keyframes pop{ from{ transform: translateY(10px) scale(.985); opacity:0; } to{ transform: translateY(0) scale(1); opacity:1; } }
.modal__x{
  position:absolute;
  top: 10px; right: 12px;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--white);
  font-size: 22px;
  cursor:pointer;
}
.modal__title{ font-size: 22px; font-weight: 950; }
.modal__sub{ margin-top: 8px; color: rgba(231,234,242,.74); font-size: 14px; line-height: 1.6; }
.modal__list{ margin-top: 10px; padding-left: 18px; display:grid; gap: 8px; color: rgba(231,234,242,.82); font-size: 14px; line-height: 1.6; }
.modal__actions{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

.modal__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.mblock{
  padding: 16px;
  border-radius: var(--r20);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.mblock h4{ font-weight: 950; font-size: 14px; margin-bottom: 8px; }
.muted{ color: rgba(231,234,242,.74); line-height: 1.65; }

.gallery{
  display:grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items:center;
  margin-top: 10px;
}
.gallery__frame{
  border-radius: var(--r24);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  overflow:hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
}
.gallery__frame img{
  width:100%;
  height: 360px;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery__frame img.is-on{ opacity: 1; transform: scale(1); }
.gallery__nav{
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--white);
  cursor:pointer;
  font-size: 22px;
  display:grid; place-items:center;
}
.gallery__nav:hover{ border-color: rgba(43,108,255,.35); box-shadow: 0 0 35px rgba(43,108,255,.20); }

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1100px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .portfolio{ grid-template-columns: repeat(2, 1fr); }
  .impact{ grid-template-columns: repeat(2, 1fr); }
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__stats{ grid-template-columns: 1fr; }
  .cta{ grid-template-columns: 1fr; }
  .modal__grid{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .process{ grid-template-columns: 1fr; }
  .process__rail{ display:none; }
  .step{ flex-direction: row; align-items:center; justify-content:space-between; }
  .step__sub{ text-align:right; }
}
@media (max-width: 920px){
  .nav{ display:none; }
  .header__actions{ display:none; }
  .hamb{ display:block; } 
  .form__row{ grid-template-columns: 1fr; }
  .gallery__frame img{ height: 280px; }
}
@media (max-width: 520px){
  .header__row{ padding: 12px 12px; }
  .hero{ padding: 82px 0 54px; }
  .hero__title{ font-size: 40px; }
  .portfolio{ grid-template-columns: 1fr; }
  .impact{ grid-template-columns: 1fr; }
  .footer__bottom{ flex-direction: column; align-items:flex-start; }
}
/* ===============================
   CORREÇÃO - O QUE MUDA NA PRÁTICA
================================ */

/* centraliza o cabeçalho da seção */
#impacto .section__head {
  text-align: center;
  align-items: center;
}

/* garante contraste dentro dos cards */
.impact__card {
  color: #ffffff;
}

/* kicker (+ Confiança, etc) */
.impact__kicker {
  color: #4aa3ff; /* azul Claw */
  font-weight: 700;
}

/* título do card */
.impact__title {
  color: #ffffff;
  font-size: 18px;
}

/* texto auxiliar */
.impact__hint {
  color: rgba(231,234,242,0.75);
}
/* ===============================
   CORREÇÃO DE CONTRASTE DE TEXTO
================================ */

/* força textos legíveis em fundos escuros */
body,
.section,
.card,
.pitem,
.step,
.modal__box {
  color: var(--text);
}

.section__title,
.card__title,
.pitem strong,
.step__title,
.modal__title {
  color: #ffffff;
}

.section__sub,
.card__text,
.pitem__sub,
.step__sub,
.modal__sub {
  color: rgba(231,234,242,.82);
}

/* badges e tags */
.card__tag,
.pitem__badge {
  color: #ffffff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

/* ===============================
   AJUSTE DE TÍTULOS E SUBTÍTULOS
================================ */

.section__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* título */
.section__title {
  margin-bottom: 6px; /* aproxima do subtítulo */
}

/* subtítulo */
.section__sub {
  margin-top: 0;
  max-width: 640px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ajuste fino específico */
#processo .section__head,
#impacto .section__head {
  margin-bottom: 36px;
}
/* =========================================
   BACKGROUND GLOBAL ÚNICO (SITE INTEIRO)
========================================= */

html, body {
  min-height: 100%;
}

body {
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(74,163,255,.14), transparent 60%),
    radial-gradient(900px 700px at 80% 30%, rgba(43,108,255,.12), transparent 55%),
    radial-gradient(700px 600px at 50% 90%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(135deg, #05060d 0%, #070a17 40%, #0b1430 100%);
  background-attachment: fixed;
  background-size: cover;
}

/* remove QUALQUER fundo de seção */
.section,
.section--soft,
.footer,
.header {
  background: transparent !important;
}
//* =========================================
   FUNDO ESTRELADO — CHUVA INFINITA REAL
   (não para nunca)
========================================= */

body {
  background-color: #05060d;
}

/* camada de estrelas rápidas */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;

  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,.9), transparent),
    radial-gradient(2px 2px at 20% 80%, rgba(255,255,255,.85), transparent),
    radial-gradient(3px 3px at 30% 40%, rgba(74,163,255,.9), transparent),
    radial-gradient(2px 2px at 45% 65%, rgba(255,255,255,.8), transparent),
    radial-gradient(4px 4px at 60% 30%, rgba(43,108,255,.95), transparent),
    radial-gradient(3px 3px at 70% 75%, rgba(255,255,255,.85), transparent),
    radial-gradient(2px 2px at 85% 50%, rgba(74,163,255,.8), transparent),
    radial-gradient(3px 3px at 95% 15%, rgba(255,255,255,.9), transparent);

  background-size: 420px 420px;
  background-repeat: repeat;

  animation: starRainFast 25s linear infinite;
}

/* camada de estrelas lentas (profundidade) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;

  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.5px 1.5px at 35% 70%, rgba(74,163,255,.55), transparent),
    radial-gradient(1px 1px at 55% 10%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.5px 1.5px at 75% 90%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(74,163,255,.45), transparent);

  background-size: 600px 600px;
  background-repeat: repeat;

  animation: starRainSlow 55s linear infinite;
}

/* animações — NÃO PARAM */
@keyframes starRainFast {
  from { background-position: 0 0; }
  to   { background-position: 0 2000px; }
}

@keyframes starRainSlow {
  from { background-position: 0 0; }
  to   { background-position: 0 3500px; }
}



/* ==================================================
   OVERLAY DE MODELOS — LANDING PAGE (PORTFÓLIO)
   Alteração isolada: atua apenas sobre a imagem do modal
   Não interfere em outros cards ou modais
================================================== */

.gallery__frame--landing{
  position: relative;
}

/* container dos botões */
.landing-models{
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  z-index: 6;
}

/* botão individual */
.landing-btn{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

/* hover */
.landing-btn:hover{
  transform: translateY(-2px);
  background: rgba(43,108,255,0.75);
  box-shadow: 0 6px 20px rgba(43,108,255,0.35);
}

/* mobile */
@media (max-width: 768px){
  .landing-models{
    flex-direction: column;
    left: 12px;
    bottom: 12px;
  }
  .landing-btn{
    font-size: 12px;
    padding: 7px 12px;
  }
}
