body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}



#header {
  background-color: #222222;
  color: #ffffff;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

   
}

#header .logo {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(https://app.primesgr.com.br:8181/prime/jakarta.faces.resource/ic_logo.svg.xhtml);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 20px;
}

#header h1 {
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

#header nav {
  display: inline-block;
  float: right;
}

#header nav ul {
  list-style: none;
  margin-right: 50px;
  padding: 0;
}

#header nav li {
  display: inline-block;
  margin-left: 20px;
}

#header nav a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

#header nav a:hover {
  color: #ff0000;
}

/* Estilo da seção Home */
#home {
  padding: 0px 50px 0 50px;
  background-image: url("img.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 95vh;
  text-align: justify;
}

#home h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

#home p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  margin: 20px 0 40px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

#home button {
  background-color: #ff0000;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 30px;
  text-transform: uppercase;
  transition: background-color 0.3s ease-in-out;
}

#home button:hover {
  background-color: #ffffff;
  color: #ff0000;
}

section#about {

  padding: 50px;
  background-color: #191919;
  color: #fff;
  
  font-size: 20px;
}

section#about h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

section#about p {
  margin-bottom: 30px;
  line-height: 1.5;
}

section#about .about-info {
  display: flex;
  justify-content: space-between;
}

section#about .about-info .info-item {
  flex-basis: calc(50% - 30px);
}

section#about .about-info .info-item i {
  font-size: 40px;
  margin-bottom: 30px;
  display: block;
}

section#about .about-info .info-item h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

section#about .about-info .info-item p {
  line-height: 1.5;
}

section#about .about-img {
  margin-top: 50px;
}

section#about .about-img img {
  width: 100%;
}

section#services {
  padding: 50px;
  background-color: #fff;
  color: #333;
   font-size: 20px;
}

section#services h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

section#services .services-container {
padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

section#services .service {
padding: 20px;
  flex-basis: calc(33.33% - 30px);
  margin-bottom: 50px;
  text-align: center;
  padding: 20px;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
}

section#services .service:hover {
  background-color: #191919;
  color: #fff;
  cursor: pointer;
}

section#services .service i {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

section#services .service h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

section#services .service p {
  line-height: 1.5;
}

section#contact {
  padding: 50px;
  background-color: #191919;
  color: #fff;
 
  font-size: 20px;
}

section#contact h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

section#contact .contact-form {
  max-width: 700px;
  margin: 0 auto;
}

section#contact .form-control {
  width: 100%;
  border: none;
  background-color: #333;
  color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  font-size: 18px;
  border-radius: 5px;
}

section#contact .form-control:focus {
  outline: none;
  box-shadow: none;
}

section#contact .btn {
  background-color: #fd5c63;
  color: #fff;
  border: none;
  padding: 20px 30px;
  border-radius: 5px;
  font-size: 18px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

section#contact .btn:hover {
  background-color: #333;
  cursor: pointer;
}

footer {
  padding: 20px;
  background-color: #222222;
  color: #fff;
  padding: 50px 20 20px 0;
  font-size: 18px;
}

footer p {
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

footer li {
  margin-right: 20px;
}

footer li:last-child {
  margin-right: 0;
}

footer a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #aaa;
}

/* Para telas menores que 768px */
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 32px;
  }

  section p {
    font-size: 16px;
  }

  section#about {
    background-color: #fff;
    color: #333;
  }

  section#about img {
    width: 100%;
  }

  section#services {
    background-color: #333;
    color: #fff;
  }

  section#services .service {
    margin-bottom: 40px;
  }

  section#services .service h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  section#services .service p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  section#services .service i {
    font-size: 36px;
    margin-bottom: 20px;
  }

  section#contact form {
    max-width: 100%;
  }
}

/* Para telas maiores ou iguais a 768px */
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }

  section {
    padding: 100px 0;
  }

  section h2 {
    font-size: 40px;
    margin-bottom: 50px;
  }

  section p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  section#about {
    background-color: #f5f5f5;
    color: #333;
  }

  section#about img {
    width: 50%;
    float: left;
    margin-right: 30px;
  }

  section#services {
    background-color: #333;
    color: #fff;
  }

  section#services .service {
    margin-bottom: 60px;
  }

  section#services .service h3 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  section#services .service p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  section#services .service i {
    font-size: 48px;
    margin-bottom: 30px;
  }

  section#contact form {
    max-width: 600px;
    margin: 0 auto;
  }
}


