/* ===== CONTENEDOR DE BOTONES CTA ===== */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--spacing-unit) * 2);
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: calc(var(--spacing-unit) * 2) 0;
}

/* ===== BOTONES PRINCIPALES ===== */
.elementor-button {
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  line-height: 1.4;
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
  border-radius: 6px;
  display: inline-block;
  text-align: center;
  min-width: 150px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  cursor: pointer;
}

.elementor-button:hover {
  transform: translateY(-2px);
  background-color: #003d99;
}

/* ===== BOTONES SECUNDARIOS ===== */
.elementor-button.secondary {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.elementor-button.secondary:hover {
  background-color: var(--color-primary);
  color: white;
}
