/**
 * Parceria Influenciadores Robozin PRO — formulário (card claro) + estado de sucesso.
 */

.animate-bounce-slow {
  animation: influencer-pro-bounce 3s ease-in-out infinite;
}

.animate-bounce-slow-reverse {
  animation: influencer-pro-bounce 4s ease-in-out infinite reverse;
}

@keyframes influencer-pro-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.influencer-pro-field-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.influencer-pro-field-input,
.influencer-pro-field-select {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background-color: #f8fafc;
  color: #18181b;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.influencer-pro-field-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.influencer-pro-field-input::placeholder {
  color: #94a3b8;
}

.influencer-pro-field-input:focus,
.influencer-pro-field-select:focus {
  outline: none;
  border-color: #fcbb2a;
  box-shadow: 0 0 0 3px rgba(252, 187, 42, 0.25);
}

#influencer-pro-form-embed.rd-embed--success #influencer-pro-lead-form {
  display: none;
}

#influencer-pro-form-success {
  animation: influencer-pro-success-in 0.35s ease-out;
}

@keyframes influencer-pro-success-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
