.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(128, 200, 29, 0.12);
  color: var(--secondary-2);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-2));
}


.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}


.form-feedback {
  margin-bottom: 1.25rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.form-feedback.success {
  color: #0f5132;
  background: #d1e7dd;
  border-color: #badbcc;
}

.form-feedback.error {
  color: #842029;
  background: #f8d7da;
  border-color: #f5c2c7;
}
