* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0088a3;
  color: #333;
}
 
header {
  background: #0088a3;
  color: #fff;
  padding: 60px 0px;
  text-align: center;
}

.slogan{
  background: #0088a3;
  color: #fff;
  padding: 60px 0px;
  text-align: center;}





section {
  padding: 0px 0px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  margin-bottom: 20px;
  text-align: center;
}

.projetos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.slider {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .slider {
    height: 250px;
  }
}

.logo{ 
  margin-top: 0;
  padding: 0;
  width: 23%;
  height: 23%;
  }

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: black;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  align: center;
}

#logo{
  margin-top: -60px;
  margin-bottom: -80px;


}