
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
}

.service-hero {
  background: url('../images/servicos/controlroom.png') center/cover no-repeat;
  min-height: 50vh;
  text-align: center;
  padding: 0px 20px 40px; 
  display: flex;
  align-items: flex-start; 
}


.service-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: -50px;
}

.service-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.service {
  padding: 60px 0;
}

.service h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.service p {
  font-size: 1.05rem;
  color: #555;
}

.service .image img {
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  width: 100%;
  height: 360px; 
  object-fit: cover; 
  
}

.service.bg-light {
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  .service .text {
    margin-bottom: 30px;
    text-align: center;
  }
  .service .image {
    text-align: center;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

