/* ------------------------------
   MAXILAB WEB - LANDING PAGE v1.0
   Design limpo, responsivo e leve
   ------------------------------ */

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: #212529;
}

p {
  color: #555;
}

.navbar {
  padding: 0.8rem 1rem;
}

.navbar-brand {
  font-size: 1.3rem;
}

.hero-section {
  background-color: #f8f9fa;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-section h1 {
  font-size: 2.3rem;
}

.hero-section p {
  font-size: 1.2rem;
  color: #555;
}

.hero-section .btn {
  font-weight: 600;
}

.feature-box, .step-box {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-box:hover, .step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.navbar-brand img {
  max-height: 145px;
  height: auto;
  width: auto;
}


#contato form .form-control {
  border-radius: 6px;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
}

#contato form label {
  font-weight: 600;
}

#contato button {
  border: none;
  transition: 0.3s;
}

#contato button:hover {
  background-color: #e9ecef;
}

footer {
  font-size: 0.9rem;
}




@media (max-width: 992px) {
  .hero-section {
    text-align: center;
  }

  .hero-section img {
    margin-top: 30px;
    width: 90%;
  }
}
