/* =============================================
   HEADER
   ============================================= */

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background: var(--base-white);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  width: 100%;
}

.header__logo {
  width: 250px;
  height: 43px;
}

.header__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--secondary-normal-active);
  color: var(--base-white);
  border: none;
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.21em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.15s ease;
}

.header__cta:hover {
  opacity: 0.85;
}

.header__cta:active {
  transform: scale(0.95);
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .header__container { max-width: 1140px; }
}

@media (max-width: 834px) {
  .header__container { max-width: 720px; }
  .header__cta { font-size: 18px; }
}

@media (max-width: 576px) {
  .header__container {
    max-width: 350px;
    justify-content: center;
  }
  .header__cta { display: none; }
}
