:root{
  --navy:#001B49;
  --navy2:#002B70;
  --blue:#0068D9;
  --blue2:#1C86FF;
  --cyan:#74DFFF;
  --white:#FFFFFF;
  --text:#F5FAFF;
  --muted:#B8CAE0;
  --dark:#061226;
  --card:#071A34;
  --line:rgba(116,223,255,.18);
  --line2:rgba(28,134,255,.28);
  --shadow:0 22px 55px rgba(0,0,0,.30);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at 72% 12%, rgba(28,134,255,.20), transparent 30%),
    radial-gradient(circle at 18% 24%, rgba(116,223,255,.08), transparent 24%),
    linear-gradient(180deg,var(--navy) 0%,#03142e 44%,#020A18 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(116,223,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(116,223,255,.025) 1px,transparent 1px);
  background-size:64px 64px;
  z-index:-1;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1120px,calc(100% - 48px));margin:0 auto}

.header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(0,27,73,.78);
  border-bottom:1px solid rgba(116,223,255,.14);
  backdrop-filter:blur(18px);
}
.header-inner{
  width:min(1180px,calc(100% - 48px));
  height:78px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.brand img{
  height:42px;
  width:auto;
  max-width:218px;
  object-fit:contain;
}
.brand-fallback{
  display:none;
  align-items:center;
  gap:8px;
  font-weight:900;
  letter-spacing:.06em;
  font-size:24px;
}
.brand-fallback small{
  font-size:10px;
  letter-spacing:.32em;
  display:block;
  color:#DCEEFF;
}
.nav{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  color:#DCEEFF;
}
.nav a{opacity:.86;transition:.2s}
.nav a:hover{opacity:1;color:var(--cyan)}
.nav-support{
  padding:9px 13px;
  border:1px solid var(--line2);
  border-radius:999px;
}
.header-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 18px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  font-size:14px;
  font-weight:800;
  box-shadow:0 14px 32px rgba(0,104,217,.24);
  white-space:nowrap;
  transition:.2s;
}
.header-button:hover{transform:translateY(-2px);box-shadow:0 20px 42px rgba(0,104,217,.32)}

.section{padding:86px 0}
.tag{
  display:inline-flex;
  align-items:center;
  height:30px;
  padding:0 12px;
  border:1px solid rgba(116,223,255,.22);
  border-radius:999px;
  background:rgba(116,223,255,.06);
  color:var(--cyan);
  font-size:12px;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
  margin-bottom:18px;
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(40px,4.8vw,64px);
  line-height:1.03;
  letter-spacing:-.052em;
  margin-bottom:22px;
  max-width:760px;
}
h2{
  font-size:clamp(30px,3.2vw,48px);
  line-height:1.12;
  letter-spacing:-.038em;
  margin-bottom:18px;
}
h3{
  font-size:20px;
  line-height:1.25;
  letter-spacing:-.018em;
  margin-bottom:10px;
}
p{
  color:var(--muted);
  line-height:1.68;
  font-size:16px;
}
.hero{
  padding:82px 0 74px;
  position:relative;
  overflow:hidden;
}
.hero:after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  right:-180px;
  top:20px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(28,134,255,.24),transparent 68%);
  pointer-events:none;
}
.hero-layout{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) 430px;
  gap:54px;
  align-items:center;
}
.hero-content p{
  font-size:18px;
  max-width:650px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:13px;
  font-weight:850;
  transition:.2s;
}
.button-primary{
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:white;
  box-shadow:0 16px 34px rgba(0,104,217,.28);
}
.button-secondary{
  border:1px solid var(--line2);
  background:rgba(255,255,255,.04);
}
.button:hover{transform:translateY(-2px)}
.hero-metrics{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  max-width:620px;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.035);
}
.hero-metrics div{
  padding:18px 20px;
  border-right:1px solid var(--line);
}
.hero-metrics div:last-child{border-right:0}
.hero-metrics strong{
  display:block;
  font-size:22px;
  color:white;
  margin-bottom:4px;
}
.hero-metrics span{
  font-size:13px;
  color:var(--muted);
}
.hero-card{
  width:100%;
  border:1px solid var(--line2);
  border-radius:28px;
  background:linear-gradient(160deg,rgba(7,26,52,.88),rgba(4,14,31,.82));
  box-shadow:var(--shadow);
  padding:24px;
}
.hero-card-top{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:#DCEEFF;
  margin-bottom:20px;
}
.pulse{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#28E0A9;
  box-shadow:0 0 18px rgba(40,224,169,.7);
}
.hero-service-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.hero-service-grid article{
  min-height:138px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.035);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-service-grid img{
  width:46px;
  height:46px;
  margin-bottom:12px;
}
.hero-service-grid strong{
  font-size:17px;
  margin-bottom:4px;
}
.hero-service-grid small{
  color:var(--muted);
  font-size:12px;
  line-height:1.4;
}
.hero-card-bottom{
  margin-top:16px;
  padding:18px;
  border-radius:18px;
  background:linear-gradient(135deg,rgba(0,104,217,.18),rgba(116,223,255,.07));
  border:1px solid var(--line);
}
.hero-card-bottom strong{display:block;margin-bottom:6px}
.hero-card-bottom p{font-size:14px;margin-bottom:0}

.section-head{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(0,.75fr);
  gap:40px;
  align-items:end;
  margin-bottom:36px;
}
.section-head h2{margin-bottom:0}
.section-head p{margin-bottom:0}
.section-head.compact{
  display:block;
  max-width:680px;
  text-align:center;
  margin-inline:auto;
}

.cards-five{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}
.service-card{
  min-height:260px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(160deg,rgba(7,26,52,.78),rgba(4,14,31,.72));
  box-shadow:0 16px 42px rgba(0,0,0,.18);
  transition:.22s;
}
.service-card:hover{
  transform:translateY(-5px);
  border-color:rgba(116,223,255,.42);
  box-shadow:0 24px 56px rgba(0,0,0,.25);
}
.service-card img{
  width:54px;
  height:54px;
  margin-bottom:18px;
}
.service-card p{font-size:14.5px;margin-bottom:0}

.split{
  background:linear-gradient(180deg,#F7FBFF,#EEF6FF);
  color:#061226;
}
.split p,.proof p{color:#49627A}
.split-layout{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:54px;
  align-items:center;
}
.split .tag,.proof .tag{
  color:var(--blue);
  border-color:rgba(0,104,217,.18);
  background:rgba(0,104,217,.07);
}
.solution-list{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.solution-list article{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:18px;
  align-items:start;
  padding:22px;
  border-radius:18px;
  background:white;
  border:1px solid rgba(0,27,73,.08);
  box-shadow:0 14px 32px rgba(0,27,73,.06);
}
.solution-list span{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#EAF5FF;
  color:var(--blue);
  font-weight:900;
}
.solution-list h3{color:#061226}
.solution-list p{margin-bottom:0}

.process{background:rgba(0,0,0,.10)}
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:34px;
}
.steps article{
  padding:24px;
  border-radius:22px;
  background:linear-gradient(160deg,rgba(7,26,52,.82),rgba(4,14,31,.72));
  border:1px solid var(--line);
}
.steps span{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(28,134,255,.14);
  border:1px solid var(--line2);
  color:var(--cyan);
  font-weight:900;
  margin-bottom:18px;
}
.steps p{font-size:14.5px;margin-bottom:0}

.proof{
  background:linear-gradient(180deg,#F7FBFF,#EEF6FF);
  color:#061226;
}
.proof-box{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:42px;
  align-items:center;
}
.proof-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.proof-grid article{
  background:white;
  border:1px solid rgba(0,27,73,.08);
  border-radius:18px;
  padding:22px;
  box-shadow:0 14px 32px rgba(0,27,73,.06);
}
.proof-grid strong{
  display:block;
  color:#061226;
  margin-bottom:8px;
}
.proof-grid p{font-size:14.5px;margin-bottom:0}

.contact{
  padding-bottom:92px;
}
.contact-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:50px;
  align-items:center;
}
.contact-copy p{font-size:17px}
.contact-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.contact-cards a{
  min-height:180px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(160deg,rgba(7,26,52,.82),rgba(4,14,31,.72));
  display:flex;
  flex-direction:column;
  justify-content:center;
  transition:.22s;
}
.contact-cards a:hover{
  transform:translateY(-5px);
  border-color:rgba(116,223,255,.42);
}
.contact-cards img{
  width:42px;
  height:42px;
  margin-bottom:16px;
}
.contact-cards strong{
  font-size:19px;
  margin-bottom:8px;
}
.contact-cards span{
  color:var(--muted);
  font-size:14px;
  word-break:break-word;
}

.footer{
  border-top:1px solid var(--line);
  background:#020A18;
  padding:48px 0 22px;
}
.footer-layout{
  display:grid;
  grid-template-columns:1.25fr .7fr .8fr;
  gap:46px;
}
.footer-logo img{
  height:44px;
  max-width:230px;
  margin-bottom:16px;
}
.footer-logo strong{display:none}
.footer p,.footer a{
  display:block;
  color:#AFC2D8;
  margin:8px 0;
  line-height:1.7;
}
.footer strong{display:block;margin-bottom:12px}
.copyright{
  border-top:1px solid rgba(116,223,255,.10);
  margin-top:34px;
  padding-top:20px;
  text-align:center;
  color:#7890A8;
  font-size:13px;
}
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:120;
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#25D366;
  box-shadow:0 18px 40px rgba(0,0,0,.30);
}
.whatsapp-float img{width:34px;height:34px}

@media(max-width:1120px){
  .nav{display:none}
  .hero-layout{grid-template-columns:1fr}
  .hero-card{max-width:560px}
  .cards-five{grid-template-columns:repeat(3,1fr)}
  .split-layout,.proof-box,.contact-layout{grid-template-columns:1fr}
  .proof-grid,.contact-cards{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:760px){
  .container,.header-inner{width:min(100% - 32px,1120px)}
  .header-inner{height:68px}
  .header-button{display:none}
  .brand img{height:36px;max-width:190px}
  .hero{padding:58px 0}
  h1{font-size:38px}
  h2{font-size:30px}
  .hero-metrics{grid-template-columns:1fr}
  .hero-metrics div{border-right:0;border-bottom:1px solid var(--line)}
  .hero-metrics div:last-child{border-bottom:0}
  .hero-service-grid,.cards-five,.steps,.proof-grid,.contact-cards,.footer-layout{grid-template-columns:1fr}
  .section{padding:62px 0}
  .section-head{display:block}
  .service-card{min-height:auto}
}

/* Fundo azul escuro Aliat - ajuste final */
html,
body {
  background: #001B49 !important;
}

body::before {
  display: none !important;
}

.hero,
.process,
.contact,
.footer,
section {
  background-color: #001B49 !important;
}

/* Mantém leve profundidade só nos cards */
.hero-card,
.service-card,
.steps article,
.contact-cards a,
.mini-card {
  background: linear-gradient(160deg, #06265A, #001B49) !important;
}

.split,
.proof {
  background: #001B49 !important;
  color: #ffffff !important;
}

.split h2,
.split h3,
.proof h2,
.proof h3,
.solution-list h3,
.proof-grid strong {
  color: #ffffff !important;
}

.split p,
.proof p,
.solution-list p,
.proof-grid p {
  color: #B8CAE0 !important;
}

.solution-list article,
.proof-grid article {
  background: #06265A !important;
  border-color: rgba(28, 134, 255, .28) !important;
}


/* Fundo azul escuro degradê Aliat - ajuste final */
html,
body {
  background:
    radial-gradient(circle at 75% 8%, rgba(28, 134, 255, .22), transparent 32%),
    radial-gradient(circle at 12% 28%, rgba(0, 104, 217, .18), transparent 30%),
    linear-gradient(180deg, #001B49 0%, #002B70 42%, #001126 100%) !important;
}

body::before {
  display: block !important;
  content: "" !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  background-image:
    linear-gradient(rgba(116, 223, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 223, 255, .025) 1px, transparent 1px) !important;
  background-size: 64px 64px !important;
  z-index: -1 !important;
}

/* Seções escuras seguindo o degradê */
.hero,
.process,
.contact,
.footer {
  background:
    radial-gradient(circle at 80% 10%, rgba(28, 134, 255, .16), transparent 34%),
    linear-gradient(180deg, #001B49 0%, #00235F 48%, #001126 100%) !important;
}

/* Seções que estavam claras também ficam no padrão azul escuro */
.split,
.proof,
section {
  background:
    radial-gradient(circle at 18% 12%, rgba(28, 134, 255, .12), transparent 32%),
    linear-gradient(180deg, #002B70 0%, #001B49 100%) !important;
  color: #ffffff !important;
}

.split h2,
.split h3,
.proof h2,
.proof h3,
.solution-list h3,
.proof-grid strong {
  color: #ffffff !important;
}

.split p,
.proof p,
.solution-list p,
.proof-grid p {
  color: #B8CAE0 !important;
}

/* Cards com degradê mais profundo */
.hero-card,
.service-card,
.steps article,
.contact-cards a,
.mini-card,
.solution-list article,
.proof-grid article {
  background:
    linear-gradient(160deg, rgba(6, 38, 90, .96), rgba(0, 27, 73, .96)) !important;
  border-color: rgba(28, 134, 255, .28) !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .28) !important;
}


/* Fundo azul escuro executivo - Aliat Tecnologia */
html,
body {
  background:
    radial-gradient(circle at 78% 8%, rgba(0, 104, 217, .13), transparent 30%),
    radial-gradient(circle at 12% 26%, rgba(28, 134, 255, .08), transparent 28%),
    linear-gradient(180deg, #020814 0%, #061226 42%, #01050D 100%) !important;
}

body::before {
  display: block !important;
  content: "" !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  background-image:
    linear-gradient(rgba(116, 223, 255, .014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 223, 255, .014) 1px, transparent 1px) !important;
  background-size: 72px 72px !important;
  z-index: -1 !important;
}

/* Seções no mesmo tom executivo */
.hero,
.process,
.contact,
.footer,
.split,
.proof,
section {
  background:
    radial-gradient(circle at 82% 10%, rgba(0, 104, 217, .10), transparent 32%),
    linear-gradient(180deg, #020814 0%, #061226 48%, #01050D 100%) !important;
  color: #ffffff !important;
}

/* Header mais executivo */
.header,
.site-header,
header {
  background: rgba(2, 8, 20, .88) !important;
  border-bottom-color: rgba(28, 134, 255, .18) !important;
}

/* Cards em azul petróleo escuro */
.hero-card,
.service-card,
.steps article,
.contact-cards a,
.mini-card,
.solution-list article,
.proof-grid article {
  background:
    linear-gradient(160deg, rgba(8, 26, 52, .96), rgba(2, 8, 20, .98)) !important;
  border-color: rgba(28, 134, 255, .22) !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .36) !important;
}

/* Textos nas seções que eram claras */
.split h2,
.split h3,
.proof h2,
.proof h3,
.solution-list h3,
.proof-grid strong {
  color: #ffffff !important;
}

.split p,
.proof p,
.solution-list p,
.proof-grid p {
  color: #B8CAE0 !important;
}

/* Números e tags mais discretos */
.solution-list span,
.steps span {
  background: rgba(28, 134, 255, .12) !important;
  border: 1px solid rgba(28, 134, 255, .24) !important;
  color: #74DFFF !important;
}

/* Botões mantendo destaque */
.button-primary,
.header-button,
.btn.primary {
  background: linear-gradient(135deg, #0057B8, #1C86FF) !important;
  box-shadow: 0 16px 34px rgba(0, 87, 184, .24) !important;
}

.button-secondary,
.btn.secondary,
.nav-support,
.support-link {
  background: rgba(255, 255, 255, .03) !important;
  border-color: rgba(116, 223, 255, .20) !important;
}

/* Rodapé bem escuro */
.footer,
footer {
  background: linear-gradient(180deg, #020814 0%, #01050D 100%) !important;
}

