*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  font-family:Arial,Helvetica,sans-serif;
  color:#111;
  overflow-x:hidden;
}

a{text-decoration:none;color:inherit}

.topbar{
  height:34px;
  background:#050505;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 9%;
  font-size:14px;
  font-weight:600;
}

.header{
  height:104px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 9%;
  box-shadow:0 6px 22px rgba(0,0,0,.08);
  position:sticky;
  top:0;
  z-index:100;
}

.brand img{
  width:235px;
  height:auto;
  display:block;
  background:transparent;
}

.menu{
  display:flex;
  align-items:center;
  gap:38px;
  font-weight:800;
  font-size:18px;
}

.btn-menu,
.btn-red{
  background:#ed1c24;
  color:#fff!important;
  padding:18px 34px;
  border-radius:50px;
  font-weight:900;
  box-shadow:0 12px 30px rgba(237,28,36,.28);
  display:inline-block;
}

.btn-white{
  background:#fff;
  color:#111!important;
  padding:18px 34px;
  border-radius:50px;
  font-weight:900;
  display:inline-block;
}

.hero{
  position:relative;
  min-height:calc(100vh - 138px);
  background:url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  display:flex;
  align-items:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.90),rgba(0,0,0,.72),rgba(0,0,0,.30));
}

.hero-content{
  position:relative;
  z-index:2;
  width:82%;
  margin:auto;
  display:grid;
  grid-template-columns:56% 44%;
  align-items:center;
  gap:60px;
}

.hero-text span,
.group span,
.section-title span,
.method span{
  color:#ed1c24;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:14px;
  font-weight:900;
}

.hero h1{
  color:#fff;
  font-size:76px;
  line-height:.95;
  letter-spacing:-3px;
  margin:22px 0;
  max-width:760px;
}

.hero p{
  color:#f1f1f1;
  font-size:21px;
  line-height:1.6;
  max-width:720px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  margin-top:32px;
}

.hero-card{
  background:rgba(255,255,255,.95);
  border-radius:32px;
  padding:42px;
  max-width:520px;
  margin-left:auto;
  box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.hero-card img{
  width:100%;
  max-width:420px;
  display:block;
  margin:auto;
  background:transparent;
}

.kpis{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:32px;
}

.kpis div{
  background:#070707;
  color:#fff;
  border-radius:18px;
  padding:20px 10px;
  text-align:center;
}

.kpis b{
  display:block;
  color:#ed1c24;
  font-size:28px;
}

.kpis small{
  font-size:14px;
  font-weight:700;
}

.group{
  background:#050505;
  color:#fff;
  text-align:center;
  padding:70px 9%;
}

.group h2{
  font-size:46px;
  margin:12px 0;
}

.group p{
  color:#ccc;
  font-size:18px;
}

.services{
  padding:90px 9%;
  background:#fff;
}

.section-title{
  max-width:900px;
  margin-bottom:45px;
}

.section-title h2{
  font-size:44px;
  margin:12px 0;
}

.section-title p{
  font-size:20px;
  color:#444;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.card{
  border:1px solid #eee;
  border-radius:26px;
  padding:38px;
  min-height:250px;
  box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.card h3{
  font-size:26px;
  margin:0 0 18px;
}

.card p{
  font-size:19px;
  line-height:1.6;
  color:#444;
}

.method{
  padding:90px 9%;
  display:grid;
  grid-template-columns:40% 60%;
  gap:70px;
  align-items:start;
  background:#f7f7f7;
}

.method h2{
  font-size:44px;
  margin:12px 0;
}

.method p{
  font-size:18px;
  line-height:1.6;
}

.steps{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.steps div{
  background:#fff;
  border-radius:24px;
  padding:30px;
  box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.steps b{
  color:#ed1c24;
  font-size:28px;
}

.steps h3{
  font-size:22px;
}

.footer{
  background:#050505;
  color:#fff;
  padding:80px 9% 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:45px;
}

.footer img{
  width:240px;
  background:transparent;
  margin-bottom:24px;
}

.footer p{
  color:#ddd;
  max-width:420px;
  line-height:1.6;
}

.footer h4{
  margin-bottom:20px;
}

.footer a{
  display:block;
  color:#ddd;
  margin-bottom:13px;
}

.copy{
  margin-top:60px;
  padding-top:25px;
  border-top:1px solid #222;
  color:#aaa;
}

.whatsapp{
  position:fixed;
  right:28px;
  bottom:28px;
  width:64px;
  height:64px;
  background:#25d366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  z-index:999;
}

@media(max-width:1000px){
  .topbar{
    height:auto;
    padding:8px 5%;
    flex-direction:column;
    gap:5px;
    text-align:center;
  }

  .header{
    height:auto;
    min-height:82px;
    padding:18px 5%;
    flex-direction:column;
    gap:18px;
  }

  .menu{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    font-size:15px;
  }

  .brand img{
    width:210px;
  }

  .hero{
    min-height:auto;
    padding:70px 0;
  }

  .hero-content{
    width:90%;
    grid-template-columns:1fr;
    gap:40px;
  }

  .hero h1{
    font-size:46px;
    letter-spacing:-1px;
  }

  .hero-card{
    margin:auto;
    max-width:390px;
  }

  .cards,
  .method,
  .steps,
  .footer-grid{
    grid-template-columns:1fr;
  }
}

.page-hero{
  padding:110px 9%;
  background:linear-gradient(90deg,rgba(0,0,0,.92),rgba(0,0,0,.60)),url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color:#fff;
}

.page-hero span{
  color:#ed1c24;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:14px;
  font-weight:900;
}

.page-hero h1{
  max-width:1000px;
  font-size:56px;
  line-height:1.05;
  margin:20px 0;
}

.page-hero p{
  max-width:900px;
  font-size:21px;
  line-height:1.6;
  color:#e8e8e8;
}

.contact-section{
  padding:90px 9%;
  background:#f7f7f7;
}

.contact-card{
  background:#fff;
  padding:45px;
  border-radius:28px;
  max-width:720px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-card h2{
  font-size:38px;
  margin-top:0;
}

.contact-card p{
  font-size:20px;
}

@media(max-width:900px){
  .page-hero h1{font-size:40px}
  .page-hero p{font-size:18px}
}
