:root {
  --azul: #004AAD;
    --azul-claro: #0073e6;
    --amarelo: #FFC700;
    --branco: #ffffff;
    --cinza: #f2f2f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #001F4F, #0052A4 60%, #0073e6);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}


.card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 480px;
  width: 100%;
  padding: 3rem 2rem;
  text-align: center;
  order: 2;
  flex: 1;
}



.card h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

input, select {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border 0.3s;
}

input:focus, select:focus {
  border-color: var(--azul);
  outline: none;
}

button {
  background: linear-gradient(135deg, #FFC700, #FFE680);
  color: var(--azul);
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: linear-gradient(135deg, #FFE680, #FFC700);
}

.logo {
  width: 100px;
  margin-bottom: 15px;
}

.footer {
  font-size: 0.85rem;
  margin-top: 1.5rem;
  color: #888;
}

.container-pontocard {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

.beneficios {
  color: white;
  max-width: 480px;
  text-align: center;
  order: 1;
  flex: 1;
}

.beneficios h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.box-beneficios {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  color: var(--azul);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.box-beneficios h3 {
  color: var(--amarelo);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 0 #00000020;
}

.box-beneficios ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.box-beneficios li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--azul);
  font-size: 0.9rem;
}

.box-beneficios img {
  width: 120px;
  margin-bottom: 0.5rem;
}

  .mensagem{
    color: red !important;
  }
