* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Cabeçalho */
.topo {
    background: #0066ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    color: white;
}

.topo .logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
}

.topo .logo img {
    height: 25px;
    margin-right: 8px;
}

.topo nav a,
.topo .acoes a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

/* HEADER */
header {
  background: #0056ff;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

header nav a,
header .user-area a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* TÍTULO */
.titulo {
  text-align: center;
  padding: 40px 0 20px 0;
}
.titulo h2 {
  font-size: 28px;
  color: #0056ff;
}

/* SEÇÃO SERVIÇOS */
.servicos {
  background: #0056ff;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 50px 0;
}
.servicos .card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.servicos .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.servicos .card h3 {
  background: #0056ff;
  color: #fff;
  padding: 10px;
}
    /* Rodapé */
footer {
    background: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h3 {
    color: #0056d6;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-links a, .footer-links p {
    color: #0056d6;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 5px;
}
