/* style.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #222;
}
header {
  display: flex;
  background: #004080;
  color: white;
  padding: 20px;
  align-items: center;
}
.header-left {
  flex: 1;
}
.header-right {
  flex: 3;
}
.perfil {
  width: 120px;
  border-radius: 60px;
  border: 3px solid white;
}
.btn {
  background: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
}
section {
  padding: 20px;
}
.servicos ul {
  list-style: none;
  padding: 0;
}
.servicos li {
  margin-bottom: 10px;
  font-size: 18px;
}
.foto-trabalho img {
  width: 48%;
  margin: 1%;
  border-radius: 5px;
}
footer {
  background: #004080;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}


.novo-cabecalho {
  background: linear-gradient(135deg, #004080, #007acc);
  padding: 30px 20px;
  color: white;
}
.box-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.avatar {
  width: 120px;
  border-radius: 60px;
  margin-right: 20px;
  border: 3px solid white;
}
.dados h1 {
  margin: 0;
  font-size: 26px;
}
.sub {
  font-size: 16px;
  margin-top: 5px;
}
.contato {
  margin: 10px 0;
}
.btn-wpp {
  background: #25d366;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}


/* Responsividade geral */
@media (max-width: 768px) {
  .box-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .avatar {
    width: 100px;
    margin-bottom: 15px;
  }
  .btn-wpp, .contato {
    font-size: 15px;
    display: block;
    margin-top: 5px;
  }
  .services {
    flex-direction: column;
    align-items: stretch;
  }
  .services > div {
    margin-bottom: 20px;
  }
  footer {
    text-align: center;
  }
}

/* Responsivo para telas muito pequenas */
@media (max-width: 480px) {
  h1 {
    font-size: 22px;
  }
  .sub {
    font-size: 14px;
  }
  .btn-wpp {
    width: 100%;
    text-align: center;
  }
}
