 body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      background: #f7f9fb;
      color: #333;
    }
    header {
      background: #004aad;
      color: white;
      padding: 40px 20px;
      text-align: center;
    }
    header h1 {
      margin: 0;
      font-size: 2.5rem;
    }
    section {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .benefits, .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .card {
      background: white;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      text-align: center;
    }
    .card img {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;
    }
    .card h3 {
      margin-top: 0;
      color: #004aad;
      font-size: 1rem;
    }
    .cta {
      margin-top: 60px;
    }
    .features {
      margin-top: 60px;
    }
    .features h2 {
      text-align: center;
      margin-bottom: 20px;
    }
    form {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      display: grid;
      gap: 16px;
    }
    form .row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }
    form .row > div {
      flex: 1;
      min-width: 200px;
    }
    label {
      display: block;
      margin-bottom: 4px;
      font-weight: 600;
    }
    input, textarea {
      width: 100%;
      padding: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-family: inherit;
    }
    textarea {
      resize: vertical;
      min-height: 100px;
    }
    button[type="submit"] {
      background: #004aad;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
      width: fit-content;
    }
    button[type="submit"]:hover {
      background: #00337a;
    }
    footer {
      background: #eee;
      padding: 20px;
      text-align: center;
      font-size: 0.9rem;
    }

    @media (max-width: 600px) {
  header img {
    max-width: 140px;
  }
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.features-grid .card {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza horizontalmente */
  justify-content: center; /* Centraliza verticalmente */
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-grid .card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px; /* Espaço entre ícone e texto */
}

.features-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 12px rgba(0,0,0,0.4);
}
