:root{
  --bg:#f4f4f1;
  --surface:#fafaf8;
  --surface-2:#eeeeea;
  --text:#111111;
  --muted:#6d6d68;
  --line:#ddddda;
  --shadow-soft:0 10px 28px rgba(0,0,0,.07);
  --max:1180px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}

body{
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit;text-decoration:none}
.container{width:min(var(--max),calc(100% - 40px));margin:0 auto}

/* HEADER */
header{border-bottom:1px solid rgba(0,0,0,.05)}
.nav{min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:30px}
.page-top{padding:0}
.page-top .container{width:auto;margin:0}
.back-link{display:inline-flex;align-items:center;gap:8px;color:var(--muted);font-size:14px;font-weight:600}
.nav ul{display:flex;align-items:center;gap:32px;list-style:none;font-size:14px}
.nav-link{transition:opacity .2s ease}
.nav-link:hover{opacity:.55}
.mobile-menu-button{display:none}

/* HERO */
.service-hero{padding:86px 0 90px}
.service-hero-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:80px;align-items:center}
.kicker{color:var(--muted);font-size:14px;margin-bottom:14px}

h1{
  font-size:clamp(52px,7vw,92px);
  line-height:.96;
  letter-spacing:-.065em;
  font-weight:450;
}

.service-hero p{
  max-width:720px;
  margin-top:28px;
  color:var(--muted);
  font-size:19px;
  line-height:1.75;
}

.hero-note{
  padding:34px;
  border-radius:28px;
  background:var(--surface);
  box-shadow:var(--shadow-soft);
}

.service-icon{
  width:74px;
  height:74px;
  margin-bottom:46px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:#111;
  color:#fff;
}

.service-icon svg{
  width:34px;
  height:34px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
}

.hero-note small{display:block;color:var(--muted);margin-bottom:12px}
.hero-note strong{display:block;font-size:28px;line-height:1.15;letter-spacing:-.03em}

/* BASE */
.section{padding:96px 0}
.section.alt{background:var(--surface)}
.section-head{max-width:790px;margin-bottom:48px}

.section-head h2,
.service-cta h2{
  font-size:clamp(34px,4.2vw,58px);
  line-height:1.05;
  letter-spacing:-.045em;
  font-weight:600;
}

.section-head p,
.service-cta p{
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
  margin-top:18px;
}

/* START */
.start-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
}

.start-grid article{
  padding:28px 24px 28px 0;
  border-bottom:1px solid var(--line);
}

.start-grid span,
.integration-grid span,
.after-grid span{
  color:var(--muted);
  font-size:12px;
}

.start-grid h3,
.integration-grid h3,
.after-grid h3{
  margin-top:18px;
  font-size:20px;
}

.start-grid p,
.integration-grid p,
.after-grid p{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

/* PROCESSO */
.split-section{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:80px;
  align-items:start;
}

.split-section .section-head{margin-bottom:0}

.process-list,
.simple-list{
  border-top:1px solid var(--line);
}

.process-list article,
.simple-list article{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:20px;
  padding:22px 0;
  border-bottom:1px solid var(--line);
}

.process-list article>span,
.simple-list article>span{
  color:var(--muted);
  font-size:12px;
}

.process-list h3,
.simple-list h3{
  font-size:18px;
}

.process-list p,
.simple-list p{
  margin-top:5px;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

/* STATEMENT */
.statement-section{padding:32px 0 108px}
.statement{max-width:1000px}
.statement>span{color:var(--muted);font-size:13px}

.statement p{
  margin-top:16px;
  font-size:clamp(30px,4.3vw,56px);
  line-height:1.1;
  letter-spacing:-.045em;
  font-weight:550;
}

/* ESTRUTURA */
.structure-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.structure-grid article{
  padding:28px;

  border-radius:22px;
  background:var(--bg);
}

.structure-grid span{
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.structure-grid h3{
  margin-top:16px;
  font-size:22px;
}

.structure-grid p{
  margin-top:9px;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

/* INTEGRAÇÃO */
.integration-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
}

.integration-grid article{
  padding:28px 24px 28px 0;
  border-bottom:1px solid var(--line);
}

/* PLANOS */
.plans-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.plan{
  padding:28px;
  border-top:1px solid var(--line);
}

.plan>span{
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.plan h3{
  margin-top:18px;
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.03em;
}

.plan p{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

/* DEPOIS DO LANÇAMENTO */
.after-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
}

.after-grid article{
  padding:28px 24px 28px 0;
  border-bottom:1px solid var(--line);
}

/* CTA */
.service-cta{padding:100px 0}
.service-cta .container{max-width:860px;text-align:center}

.service-cta a{
  display:inline-block;
  margin-top:26px;
  padding:13px 20px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:14px;
  font-weight:600;
}

/* FOOTER */
.minimal-footer{
  margin-top:0;
  background:var(--bg);
  padding:42px 0 24px;
  border-top:1px solid var(--line);
}

.minimal-footer-main{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:50px;
}

.minimal-footer-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:12px 26px;
}

.minimal-footer-nav a{
  color:var(--muted);
  font-size:13px;
}

.footer-company{
  font-size:12px;
  line-height:1.8;
  color:var(--muted);
}

#start,#projeto,#estrutura,#contratacao{scroll-margin-top:24px}

@media(max-width:960px){
  .service-hero-grid,
  .split-section{
    grid-template-columns:1fr;
  }

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

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

@media(max-width:680px){
  .container{
    width:min(var(--max),calc(100% - 26px));
  }

  .nav ul{display:none}
  .service-hero{padding:62px 0 68px}
  .section{padding:72px 0}

  .start-grid,
  .integration-grid,
  .after-grid,
  .structure-grid,
  .plans-grid{
    grid-template-columns:1fr;
  }

  .statement-section{padding-bottom:76px}
  .minimal-footer-main{flex-direction:column}
  .minimal-footer-nav{justify-content:flex-start}
}
