:root{

--blue:#0B57FF;
--orange:#FD891A;

--text:#1e2435;
--muted:#6b7280;

--radius:26px;

--shadow:0 18px 40px rgba(11,87,255,.08);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Poppins;
color:var(--text);
background:#fff;
}

.container{
width:min(1180px,92%);
margin:auto;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:inherit;
}



/* HEADER */

.site-header{
border-bottom:1px solid #eee;
background:#fff;
position:sticky;
top:0;
z-index:20;
}

.header-row{
display:flex;
align-items:center;
justify-content:space-between;
height:86px;
}

.brand-word{
  font-family: "Grandstander", cursive;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  letter-spacing: .2px;
}

.nav-links{
display:flex;
gap:24px;
font-size:14px;
}

.nav-links a.active{
font-weight:700;
color:var(--blue);
}



/* HERO */

.hero{
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 15% 10%, rgba(11,87,255,.08) 0, transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(253,137,26,.12) 0, transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-shell{
  max-width: 1100px;
  margin: 0 auto;
}

.center-hero{
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  background:#eef3ff;
  color:var(--blue);
  font-weight:600;
  font-size:13px;
  border:1px solid rgba(11,87,255,.08);
  box-shadow:0 8px 24px rgba(11,87,255,.06);
}

.hero-title{
  font-size: 62px;
  font-weight: 800;
  line-height: 1.02;
  color: var(--blue);
  margin: 18px 0 18px;
  letter-spacing: -1.4px;
}

.hero-desc{
  color: var(--muted);
  line-height: 1.85;
  max-width: 780px;
  margin: 0 auto;
  font-size: 17px;
}

.hero-highlights{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.hero-highlight-card{
  background: linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border: 1px solid #e7edff;
  border-radius: 26px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: .22s ease;
  text-align: left;
}

.hero-highlight-card:hover{
  transform: translateY(-4px);
}

.hero-highlight-number{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:18px;
  color:var(--blue);
  background:linear-gradient(180deg,#f2f6ff,#fff4e7);
  margin-bottom:16px;
}

.hero-highlight-card h3{
  margin:0 0 8px;
  color:var(--blue);
  font-size:22px;
  line-height:1.2;
  font-weight:800;
}

.hero-highlight-card p{
  margin:0;
  color:var(--muted);
  font-size:14.5px;
  line-height:1.8;
}


/* SERVICES */

.services{
padding:80px 0;
}

.section-title{
font-size:44px;
color:var(--blue);
font-weight:800;
margin-bottom:16px;
}

.section-desc{
max-width:700px;
color:var(--muted);
line-height:1.8;
margin-bottom:40px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:22px;
}

.service-card{

background:#fff;
border:1px solid #e7edff;
border-radius:var(--radius);
padding:28px;

box-shadow:var(--shadow);

transition:.2s;
}

.service-card:hover{
transform:translateY(-4px);
}

.service-number{

width:56px;
height:56px;

border-radius:16px;

display:flex;
align-items:center;
justify-content:center;

font-weight:700;
font-size:20px;

color:var(--blue);

background:linear-gradient(180deg,#f2f6ff,#fff4e7);

margin-bottom:18px;

}

.service-card h3{
margin-bottom:8px;
}

.service-card p{
color:var(--muted);
font-size:14px;
line-height:1.7;
}



/* PHONES */

.phones{
padding:80px 0;
background:#fafcff;
}

.phones-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.phones-copy h2{
font-size:42px;
color:var(--blue);
margin:16px 0;
}

.phones-copy p{
color:var(--muted);
line-height:1.8;
margin-bottom:20px;
}

.phones-list{
list-style:none;
}

.phones-list li{
margin-bottom:10px;
color:#3b4260;
}



/* MADE */

.made{
padding:80px 0;
}

.made-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
margin-top:40px;
}

.made-card{

background:#fff;
border-radius:var(--radius);
padding:34px;

border:1px solid #e7edff;

box-shadow:var(--shadow);

}

.made-badge{

width:56px;
height:56px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-weight:700;

background:#e8f0ff;

color:var(--blue);

margin-bottom:18px;

}

.made-card h3{
color:var(--blue);
margin-bottom:8px;
}

.made-card p{
color:var(--muted);
line-height:1.8;
}



/* FOOTER */
.site-footer{
  background:var(--orange);
  color:#fff;
  padding:40px 0 8px;
  margin-top:0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
  align-items:start;
  padding-bottom:16px;
}
.footer-logo{
  font-family:"Grandstander",cursive;
  font-size:40px;
  font-weight:700;
  line-height:1;
  color:var(--blue);
  letter-spacing:.2px;
  margin-bottom:8px;
}
.footer-text{
  margin:0 0 12px;
  color:#fff;
  line-height:1.6;
  max-width:420px;
  font-size:14px;
}
.footer-social{
  display:flex;
  gap:10px;
}
.footer-social a{
  width:34px;
  height:34px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.4);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.footer-links{
  display:grid;
  gap:6px;
  justify-items:end;
  text-align:right;
}
.footer-links a{
  color:#fff;
  font-weight:500;
  font-size:14px;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.35);
  padding:10px 0;
  color:#fff;
  font-size:12px;
  text-align:left;
}


/* RESPONSIVO */

@media (max-width: 1100px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .phones-grid,
  .made-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links{
    justify-items:start;
    text-align:left;
  }
}

@media (max-width: 980px){
  .header-row{
    height: auto;
    padding: 16px 0;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .nav-links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 16px;
    width: 100%;
  }

  .brand-word{
    font-size: 40px;
  }

  .hero{
    padding: 58px 0 48px;
  }

  .hero-title{
    font-size: 44px;
    line-height: 1.06;
    letter-spacing: -.6px;
  }

  .hero-desc{
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-highlights{
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .section-title{
    font-size: 36px;
    line-height: 1.08;
  }

  .section-desc{
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .services{
    padding: 58px 0;
  }

  .services-grid{
    grid-template-columns: 1fr;
  }

  .phones{
    padding: 58px 0;
  }

  .phones-copy h2{
    font-size: 34px;
    line-height: 1.1;
  }

  .phones-copy p{
    font-size: 15px;
    line-height: 1.75;
  }

  .phones-list li{
    font-size: 15px;
    line-height: 1.7;
  }

  .made{
    padding: 58px 0;
  }

  .made-grid{
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 22px;
  }

  .service-card,
  .made-card,
  .hero-highlight-card{
    border-radius: 24px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links{
    justify-items:start;
    text-align:left;
  }
}

@media (max-width: 640px){
  .container{
    width: min(1180px, calc(100% - 28px));
  }

  .hero{
    padding: 48px 0 40px;
  }

  .hero-title{
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -.4px;
  }

  .hero-desc{
    font-size: 14.5px;
  }

  .chip{
    font-size: 12px;
    padding: 9px 14px;
  }

  .hero-highlight-card{
    padding: 22px 20px;
  }

  .hero-highlight-card h3{
    font-size: 20px;
  }

  .hero-highlight-card p{
    font-size: 14px;
  }

  .section-title{
    font-size: 30px;
  }

  .section-desc{
    font-size: 14px;
    line-height: 1.7;
  }

  .service-card{
    padding: 22px;
  }

  .service-card h3{
    font-size: 20px;
  }

  .service-card p{
    font-size: 14px;
  }

  .phones-copy h2{
    font-size: 30px;
  }

  .made-card{
    padding: 26px 22px;
  }

  .made-card h3{
    font-size: 22px;
  }

  .made-card p{
    font-size: 14.5px;
  }

  .footer-logo{
    font-size: 36px;
  }

  .footer-text,
  .footer-links a{
    font-size: 13px;
  }
}