```css
/* =====================================================
   TECMAX MASTER VERSION - style.css
===================================================== */

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#08111f;
  color:#ffffff;
  line-height:1.6;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  width:90%;
  max-width:1280px;
  margin:auto;
}

/* =====================================================
   HEADER
===================================================== */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:18px 0;
  transition:.3s ease;
}

header.scrolled{
  background:rgba(3,8,18,.92);
  backdrop-filter:blur(10px);
  box-shadow:0 8px 25px rgba(0,0,0,.35);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo img{
  width:190px;
}

nav{
  display:flex;
  gap:28px;
}

nav a{
  color:#ffffff;
  font-weight:500;
  font-size:15px;
  transition:.3s;
}

nav a:hover{
  color:#25D366;
}

.btn-topo{
  background:#25D366;
  color:#fff;
  padding:14px 22px;
  border-radius:10px;
  font-weight:700;
  transition:.3s;
}

.btn-topo:hover{
  transform:translateY(-3px);
}

/* =====================================================
   BOTÕES
===================================================== */

.btn-primary,
.btn-outline{
  display:inline-block;
  padding:15px 28px;
  border-radius:10px;
  font-weight:700;
  transition:.3s ease;
}

.btn-primary{
  background:#25D366;
  color:#fff;
}

.btn-outline{
  border:2px solid #fff;
  color:#fff;
}

.btn-primary:hover,
.btn-outline:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 25px rgba(0,0,0,.25);
}

/* =====================================================
   FLOAT WHATS
===================================================== */

.float-whats{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:999;
  background:#25D366;
  color:#fff;
  padding:15px 20px;
  border-radius:40px;
  font-weight:700;
  box-shadow:0 12px 25px rgba(0,0,0,.35);
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.06);}
  100%{transform:scale(1);}
}

/* =====================================================
   HERO
===================================================== */

.hero{
  min-height:100vh;
  background:url('images/hero-tecmax.png') center center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.88),
    rgba(0,0,0,.55),
    rgba(0,0,0,.18)
  );
}

.hero-content{
  position:relative;
  z-index:2;
  padding-top:130px;
}

.hero-text{
  max-width:760px;
}

.tag{
  display:inline-block;
  background:#0A4BFF;
  color:#fff;
  padding:8px 16px;
  border-radius:40px;
  font-size:14px;
  margin-bottom:22px;
  font-weight:600;
}

.hero h1{
  font-size:58px;
  line-height:1.08;
  margin-bottom:20px;
}

.hero p{
  font-size:20px;
  color:#dddddd;
  margin-bottom:28px;
  max-width:650px;
}

.hero-icons{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-bottom:30px;
  color:#f2f2f2;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
}

/* =====================================================
   MINI FEATURES
===================================================== */

.mini-features{
  background:#07101d;
  padding:38px 0;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:18px;
}

.item{
  background:#0e1a2d;
  padding:20px;
  border-radius:12px;
  text-align:center;
  font-weight:600;
}

/* =====================================================
   TITLES
===================================================== */

.title{
  font-size:42px;
  text-align:center;
  margin-bottom:50px;
  color:#0f172a;
}

.title.white{
  color:#fff;
}

/* =====================================================
   SERVICES
===================================================== */

.services{
  padding:110px 0;
  background:#ffffff;
}

.grid-services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.35s;
}

.card:hover{
  transform:translateY(-10px);
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.card h3{
  font-size:24px;
  color:#08111f;
  padding:20px 22px 10px;
}

.card p{
  color:#5d6673;
  padding:0 22px 25px;
}

/* =====================================================
   PROBLEMS
===================================================== */

.problems{
  padding:110px 0;
  background:url('images/bg-problemas.jpg') center/cover no-repeat;
  position:relative;
}

.overlay-dark{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
}

.problems .container{
  position:relative;
  z-index:2;
}

.problem-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-bottom:35px;
}

.problem{
  background:rgba(255,255,255,.08);
  padding:22px;
  border-radius:12px;
  text-align:center;
  font-weight:600;
}

.center{
  text-align:center;
}

/* =====================================================
   SEGMENTS
===================================================== */

.segments{
  padding:110px 0;
  background:#ffffff;
}

.segment-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
}

.seg{
  background:#f5f7fa;
  padding:24px;
  text-align:center;
  border-radius:14px;
  color:#08111f;
  font-weight:700;
}

/* =====================================================
   WHY
===================================================== */

.why{
  padding:110px 0;
  background:#07101d;
}

.grid-why{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
}

.why-card{
  background:#0e1a2d;
  padding:28px;
  border-radius:16px;
  text-align:center;
  font-weight:600;
}

/* =====================================================
   CLIENTES
===================================================== */

.clients{
  padding:110px 0;
  background:#ffffff;
}

.clientes-img{
  max-width:900px;
  margin:0 auto 25px;
}

/* =====================================================
   CTA FINAL
===================================================== */

.cta-final{
  padding:90px 0;
  background:url('images/footer-bg.png') center/cover no-repeat;
  position:relative;
}

.cta-final::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
}

.cta-box{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}

.cta-box h2{
  font-size:42px;
  max-width:650px;
  margin-bottom:10px;
}

.cta-box p{
  color:#ddd;
}

.cta-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

/* =====================================================
   FOOTER
===================================================== */

footer{
  background:#04080f;
  padding:70px 0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:35px;
  margin-bottom:35px;
}

.footer-logo{
  width:180px;
  margin-bottom:15px;
}

footer h4{
  margin-bottom:14px;
}

footer p{
  color:#b8b8b8;
  margin-bottom:8px;
}

.copyright{
  text-align:center;
  color:#8e8e8e;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:18px;
}

/* =====================================================
   REVEAL
===================================================== */

.reveal{
  opacity:0;
  transform:translateY(45px);
  transition:all .9s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:992px){

  nav{
    display:none;
  }

  .hero h1{
    font-size:44px;
  }

  .hero p{
    font-size:18px;
  }

  .title{
    font-size:34px;
  }

  .cta-box h2{
    font-size:34px;
  }
}

@media(max-width:768px){

  .hero{
    background-position:center;
  }

  .hero h1{
    font-size:34px;
  }

  .hero-icons{
    grid-template-columns:1fr;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .title{
    font-size:28px;
  }

  .cta-box h2{
    font-size:28px;
  }

  .logo img{
    width:160px;
  }

  .float-whats{
    right:15px;
    bottom:15px;
    padding:14px 18px;
  }
}
```
