.divulga-hero {
  background:
    linear-gradient(135deg, rgba(13, 131, 253, 0.14), rgba(20, 184, 166, 0.10) 48%, rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 80% 18%, rgba(255, 193, 7, 0.14), transparent 28%);
}

.divulga-hero .hero-content h1 {
  max-width: 760px;
}

.divulga-hero .hero-image img {
  animation: divulga-float 7s ease-in-out infinite;
}

.divulga-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.divulga-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #0d83fd;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.divulga-feature-band {
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
}

.divulga-feature-card,
.divulga-proof-panel,
.divulga-trial-card {
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(13, 131, 253, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(45, 70, 94, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.divulga-feature-card:hover,
.divulga-proof-panel:hover,
.divulga-trial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 131, 253, 0.32);
  box-shadow: 0 18px 52px rgba(45, 70, 94, 0.14);
}

.divulga-feature-card i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d83fd, #14b8a6);
  font-size: 1.4rem;
}

.divulga-feature-card h3,
.divulga-proof-panel h3,
.divulga-trial-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.divulga-proof-panel {
  background: linear-gradient(135deg, #ffffff, #f0fbff);
}

.divulga-proof-panel.panel-alt {
  background: linear-gradient(135deg, #ffffff, #fff8e6);
}

.divulga-trial-section .content {
  overflow: hidden;
  padding: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0d83fd, #0f766e 62%, #2d465e);
}

.divulga-trial-section h2,
.divulga-trial-section p,
.divulga-trial-section .divulga-kicker,
.divulga-check-list span {
  color: #ffffff;
}

.divulga-check-list {
  display: grid;
  gap: 10px;
}

.divulga-check-list i {
  margin-right: 8px;
  color: #facc15;
}

.divulga-trial-card {
  background: #ffffff;
}

.divulga-trial-card p {
  color: #6c757d;
}

.divulga-form-group .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #22384f;
  font-size: 0.9rem;
  font-weight: 800;
}

.divulga-form-group .form-label i {
  width: 18px;
  color: #0d83fd;
  text-align: center;
}

.divulga-form-group .form-label span {
  color: #dc3545;
}

.divulga-input-wrap {
  position: relative;
}

.divulga-field-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 2;
  width: 18px;
  color: #6c849f;
  text-align: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.divulga-input-wrap .form-control {
  min-height: 46px;
  padding-left: 44px;
  border-color: rgba(13, 131, 253, 0.18);
  border-radius: 8px;
  color: #22384f;
  font-weight: 600;
}

.divulga-input-wrap .form-control::placeholder {
  color: #93a4b7;
  font-weight: 500;
}

.divulga-input-wrap .form-control:focus {
  border-color: #0d83fd;
  box-shadow: 0 0 0 0.2rem rgba(13, 131, 253, 0.14);
}

@keyframes divulga-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 991px) {
  .divulga-trial-section .content {
    padding: 28px;
  }
}
