/* =========================
   COMPONENTS (shared)
   ========================= */

/* =========================
   COMPONENTS (shared)
   ========================= */

/* ---------- Shared main rectangles ---------- */
.section-card{
  max-width: 1200px;
  margin: 30px auto;
  padding: 28px;

  background: linear-gradient(120deg, #ffffff, #f2f7ff);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Buttons (shared) ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 22px;
  border-radius: 12px;
  border: 2px solid transparent;

  font-family: 'Bender', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;

  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  box-shadow: 0 8px 18px rgba(2,44,95,.10);
}

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

.btn--primary{
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn--primary:hover{
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn--outline{
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover{
  background: var(--blue);
  color: #fff;
}

.btn--wa{
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}
.btn--wa:hover{
  background: #16a34a;
  border-color: #16a34a;
}
