* {
    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;
}
.card {
      display: flex;
      border: 2px solid #0044ff;
      border-radius: 10px;
      overflow: hidden;
      max-width: 800px;
      background: #fff;
    }

    .card img {
      width: 400px;
      height: auto;
      border-radius: 8px;
      margin: 10px;
    }

    .card-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card-content h2 {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .card-content p {
      font-size: 14px;
      color: #555;
      margin: 0 0 15px;
    }

    .icons {
      display: flex;
      gap: 20px;
      font-size: 30px;
      margin: 15px 0;
      justify-content: center;
    }

    .price {
      font-size: 22px;
      font-weight: bold;
      margin: 15px 0;
      text-align: center;
    }

    .btn {
      background: #007bff;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      transition: 0.3s;
      display: block;
      width: 100%;
    }

    .btn:hover {
      background: #0056b3;
    }
/* Rodapé */
footer {
    background: #0066ff;
    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: #ffff;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-links a, .footer-links p {
    color: #ffff;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 5px;
}
