/* ===================================================
   BLINKPAG - SITE BASE + HOME
   Produção limpa e organizada
=================================================== */

/* =========================
   ROOT
========================= */

:root{
  --bg:#0b1220;
  --bg-deep:#070b14;
  --card:#101b33;
  --card-soft:rgba(255,255,255,.04);

  --text:#e9eefc;
  --muted:#b6c2e3;
  --line:rgba(255,255,255,.10);

  --brand:#4aa3ff;
  --brand2:#9b7bff;

  --radius:18px;
  --radius-lg:26px;

  --max:1180px;

  --header-h:74px;

  --logo-h:34px;
  --logo-h-mobile:28px;

  --shadow:0 20px 60px rgba(0,0,0,.45);

  --font:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
}

/* =========================
   RESET
========================= */

*,
*::before,
*::after{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
}

body{
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 600px at 12% 10%, rgba(74,163,255,.16), transparent 60%),
    radial-gradient(800px 550px at 88% 22%, rgba(155,123,255,.14), transparent 60%),
    linear-gradient(180deg,var(--bg-deep) 0%,var(--bg) 100%);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

/* =========================
   CONTAINER
========================= */

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px;
}

/* ===================================================
   HEADER
=================================================== */

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    backdrop-filter: blur(12px);
    background: rgba(7, 11, 20, .75);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* BRAND */

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand__logo{
  height:var(--logo-h);
}

.brand__name{
  font-weight:800;
  letter-spacing:.4px;
}

/* NAV */

.nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav a{
  font-size:.95rem;
  font-weight:600;
  color:var(--muted);
  transition:.2s ease;
}

.nav a:hover{
  color:var(--text);
}

.nav__toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  cursor:pointer;
}

.nav__toggle span{
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  margin:5px auto;
}

/* ===================================================
   TRUST STRIP - ANIMADO SEMPRE
=================================================== */

.trust-strip {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    margin-bottom: -40px;
    isolation: isolate;
    align-items: center;
}

.trust-strip::before{
  content:"";
  position:absolute;
  inset:0;

  /* vidro real = blur + opacidade suficiente */
  background: rgba(7, 11, 20, 0.78);              /* AQUI é onde “some” o texto de baixo */
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);

  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.10);

  /* brilho sutil de vidro */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  z-index: 0;
}

/* garante que o conteúdo da faixa fique acima do vidro */
.trust-strip__wrapper,
.trust-strip__inner,
.trust-item{
  position: relative;
  z-index: 1;
}

.trust-strip__wrapper{
  overflow:hidden;
}

.trust-strip__inner{
  display:flex;
  gap:60px;
  align-items:center;
  white-space:nowrap;
  width:max-content;
  animation:scrollTrust 35s linear infinite;
  padding:10px 0;
}

.trust-item{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.92rem;
  color:var(--muted);
}

.trust-item img{
  width:18px;
  height:18px;
}

@keyframes scrollTrust{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* ===================================================
   BOTÕES
=================================================== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 20px;
  border-radius:14px;
  font-weight:700;
  border:1px solid var(--line);
  transition:.18s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn--primary{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#fff;
  box-shadow:0 12px 35px rgba(74,163,255,.3);
}

.btn--soft{
  background:rgba(255,255,255,.06);
}

/* ===================================================
   HERO - HOME
=================================================== */

.hero{
  padding:clamp(60px,8vw,100px) 0;
}

.hero__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
}

.hero h1{
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.1;
  margin-bottom:16px;
}

.lead{
  color:var(--muted);
  font-size:1.05rem;
  max-width:60ch;
}

.hero__cta {
    margin-top: 22px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-direction: column;
}

.hero__notes{
  margin-top:26px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.note{
  background:var(--card-soft);
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 14px;
  font-size:.9rem;
  color:var(--muted);
}

/* HERO CARDS */

.hero__visual{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.hero__card{
  background:var(--card-soft);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:18px;
  display:flex;
  gap:16px;
  align-items:center;
  box-shadow:var(--shadow);
}

.hero__card--secondary{
  background:linear-gradient(135deg,rgba(74,163,255,.12),rgba(155,123,255,.12));
}

.pill{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  font-size:.75rem;
  font-weight:700;
  color:var(--muted);
}

.big{
  font-weight:800;
  margin-top:6px;
}

/* ===================================================
   SECTION
=================================================== */

.section{
  padding:90px 0;
}

.section--alt{
  background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.section__head{
  margin-bottom:40px;
}

.section__head h2{
  margin:0 0 10px;
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.step{
  background:var(--card-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
}

.step__num{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-weight:800;
  background:rgba(74,163,255,.2);
  margin-bottom:10px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

.bullets{
  padding-left:18px;
  color:var(--text);
}

.bullets--muted{
  color:var(--muted);
}

.callout{
  margin-top:20px;
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px dashed var(--line);
  color:var(--muted);
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  background:var(--card-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
}

.cta-band{
  margin-top:50px;
  padding:30px;
  border-radius:var(--radius-lg);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  background:linear-gradient(135deg,rgba(74,163,255,.12),rgba(155,123,255,.12));
  border:1px solid var(--line);
}

/* ===================================================
   FOOTER
=================================================== */

.footer{
  padding:70px 0 30px;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .9fr;
  gap:40px;
}

.footer__logo{
  height:26px;
}

.footer__bottom{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:.85rem;
  color:var(--muted);
}

/* ===================================================
   RESPONSIVO
=================================================== */

@media (max-width:1024px){

  .hero__grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero__visual{
    margin-top:30px;
  }

  .steps{
    grid-template-columns:repeat(2,1fr);
  }

  .cards{
    grid-template-columns:1fr;
  }

  .split{
    grid-template-columns:1fr;
  }

  .cta-band{
    flex-direction:column;
    align-items:flex-start;
  }

}

@media (max-width:820px){

  :root{
    --header-h:64px;
  }

  .nav{
    display:none;
  }

  .nav__toggle{
    display:inline-block;
  }

  .nav.nav--open{
    display:flex;
    position:absolute;
    top:var(--header-h);
    left:20px;
    right:20px;
    flex-direction:column;
    padding:20px;
    background:rgba(7,11,20,.96);
    border:1px solid var(--line);
    border-radius:18px;
  }

  .brand__logo{
    height:var(--logo-h-mobile);
  }

  .footer__grid{
    grid-template-columns:1fr;
  }

}