* {
    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;
}

    .container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      position: relative;
    }

    .form-box {
      border: 2px solid #007bff;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      background: #fff;
    }

    h2 {
      color: #007bff;
      margin-bottom: 20px;
    }

    label {
      display: block;
      font-weight: bold;
      color: #007bff;
      margin: 10px 0 5px;
      text-align: left;
    }

    input {
      width: 100%;
      padding: 10px;
      border: 2px solid #ccc;
      border-radius: 8px;
      margin-bottom: 15px;
      font-size: 14px;
    }

    button {
      background: #007bff;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
      width: 100%;
      font-weight: bold;
    }

    button:hover {
      background: #0056b3;
    }

    .cars {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      width: 100%;
      pointer-events: none;
    }

    .cars img {
      width: 200px;
    }

    .cars img:first-child {
      position: absolute;
      left: -220px;
      top: -120px;
    }

    .cars img:nth-child(2) {
      position: absolute;
      left: -220px;
      bottom: -120px;
    }

    .cars img:nth-child(3) {
      position: absolute;
      right: -220px;
      top: -120px;
    }

    .cars img:last-child {
      position: absolute;
      right: -220px;
      bottom: -120px;
    }
  /* 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;
}
