@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cinzel:wght@400..900&family=League+Spartan:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  margin: 0;
  font-family: "Cinzel", serif;
  background: #f5f5f5;
  color: #1d3b6c;
}

img {
  max-width: 100%;
  height: auto;
}

.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: white;
}

.logo {
  height: 109px;
  width: 178;
}

.contatos {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contatos img {
  width: 36px;
  cursor: pointer;
  transition: 0.3s;
}
.contatos img:hover {
  transform: scale(1.05);
  filter: brightness(1.5);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
}


.texto {
  max-width: 500px;
  text-align: center;
   font-weight: 600;
}

h1 {
  font-size: 28px;
  text-align: center;
}

h1 span {
  font-size: 20px;
}

h2 {
  margin-top: 40px;
  font-size: 28px;
  text-align: center;
}

.redes {
  margin: 20px 0;
}

.redes img {
  width: 60px;
  margin-right: 10px;
  padding: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.redes img:hover {
 transform: scale(1.1);
filter: brightness(1.3);
}

button {
  background: #27c46a;
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  background: #1fa557;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.imagem img {
  width: 700px;
  align-items: center;
  opacity: 0.5;
}

footer {
  text-align: center;
  align-items: center;
  padding: 20px;
  border-top: 1px solid #ccc;
  color: #777;
   font-weight: 500;
}

@media (max-width: 900px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .imagem img {
    width: 100%;
    max-width: 400px;
    margin-top: 30px;
  }

  .texto {
    max-width: 100%;
  }

}

@media (max-width: 900px) {

  .topo {
    flex-direction: column;
    gap: 15px;
  }

  .contatos {
    justify-content: center;
  }

}

@media (max-width: 900px) {

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 24px;
  }

}

@media (max-width: 900px) {

  .redes img {
    width: 35px;
  }

}