/* ======= BASE ======= */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #1d25c5;
  color: #fff;
}

header, footer {
  text-align: center;
}

footer {
  background-color: #f0f0f0;
  color: #777;
  font-size: 14px;
  padding: 20px;
  margin-top: 40px;
}

/* ======= HEADER ======= */
.animated-header {
  width: 100%;
  padding: 30px 0;
  text-align: center;
}

.header-overlay img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.header-overlay .welcome-text {
  font-size: 36px;
  font-weight: bold;
  color: #ffc400;
  margin-top: 10px;
  margin-bottom: 50px;
}

/* ======= CONTAINER ======= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.left-content {
  flex: 2;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.left-content h1 {
  color: #ffc400;
  font-size: 32px;
  margin-bottom: 20px;
}

.left-content p {
  font-size: 18px;
  color: #f1f1f1;
}

.campaign-image {
  width: 100%;
  border-radius: 6px;
}

/* ======= BENEFÍCIOS COMO CARDS COM LINKS ======= */
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.benefits-list a {
  text-decoration: none;
}

.benefits-list .card {
  background-color: #ffffff;
  color: #333;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 10px; /* Diminuiu de 25px para 15px */
  width: 300px; /* Opcional, pode reduzir */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits-list .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  background-color: #c9d4f7;
}

.benefits-list .card i {
  color: #1d25c5;
  font-size: 34px; /* Era 42px */
  margin-bottom: 10px;
}

.benefits-list .card h3 {
  margin: 8px 0;
  color: #1d25c5;
  font-size: 18px; /* Era 20px */
}

.benefits-list .card p {
  font-size: 14px; /* Era 15px */
  color: #555;
}

/* ======= BOTÃO CTA ======= */
.cta-button {
  display: inline-block;
  background-color: #ffc400;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  margin: 20px auto;
  text-align: center;
}

.cta-button:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  background-color: #e0aa00;
  filter: brightness(1.1);
}

/* ======= FORMULÁRIO ======= */
.right-form {
  flex: 1;
  min-width: 300px;
}

.form-box {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #333;
  box-sizing: border-box;
}

.form-logo {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -20px;
}

.form-intro {
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1d25c5;
}

form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #1d25c5;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form input[type="text"]:hover,
form input[type="email"]:hover,
form input[type="tel"]:hover {
  border-color: #ffc400;
  box-shadow: 0 0 5px rgba(255, 196, 0, 0.5);
}

form input::placeholder {
  color: #999;
}

.radio-group label {
  display: block;
  margin-top: 5px;
}

.checkbox-lgpd {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.checkbox-lgpd a {
  color: #1d25c5;
  text-decoration: underline;
}

#contato-dinamico {
  margin-top: 10px;
}

.privacy-text small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #555;
}

form button {
  background-color: #ffc400;
  color: black;
  border: none;
  padding: 12px;
  margin-top: 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  font-weight: bold;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

form button:hover {
  background-color: #e0aa00;
  transform: scale(1.02);
}

/* ======= ANIMAÇÕES ======= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.animated-header {
  animation-delay: 0.2s;
}

.right-form {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======= RESPONSIVO ======= */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    padding: 10px;
  }

  .left-content {
    padding-right: 0;
  }

  .header-overlay img {
    max-width: 90%;
    padding: 0 10px;
  }

  .header-overlay .welcome-text {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .form-box {
    padding: 15px;
  }

  .benefits-list {
    justify-content: center;
  }

  .benefits-list .card {
    width: 90%;
  }
}
