.convenios-page {
  background: #fff;
}

.convenios-page__hero {
  padding: 80px 0 44px;
  background: #f9f9f9;
}

.convenios-page__hero-inner {
  max-width: 760px;
}

.convenios-page__title {
  margin: 0 0 14px;
  color: #1a1a1a;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
}

.convenios-page__subtitle {
  color: #666666;
  font-size: 16px;
  line-height: 1.65;
}

.convenios-page__subtitle p {
  margin: 0;
}

.convenios-content {
  background: #fff;
}

.convenios-page__interactive {
  position: relative;
  transition: opacity 0.2s ease;
}

.convenios-page__interactive.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.convenios-page__interactive.is-loading::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 26px;
  height: 26px;
  border: 3px solid rgba(246, 177, 0, 0.25);
  border-top-color: #f6b100;
  border-radius: 999px;
  animation: convenios-spin 0.8s linear infinite;
  z-index: 3;
}

@keyframes convenios-spin {
  to {
    transform: rotate(360deg);
  }
}

.convenios-page__filters-wrap {
  padding: 40px 0;
  border-bottom: 1px solid #e2e8f0;
}

.convenios-page__filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr) minmax(180px, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.convenios-page__search-field {
  position: relative;
}

.convenios-page__search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #f6b100;
  font-size: 15px;
}

.convenios-page__select-wrap {
  position: relative;
}

.convenios-page__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #f6b100;
  border-bottom: 2px solid #f6b100;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.convenios-page__select-wrap:hover::after,
.convenios-page__select-wrap:focus-within::after {
  border-color: #1a1a1a;
}

.convenios-page__select-wrap.is-disabled::after {
  border-color: #cbd5e1;
}

.convenios-page__input,
.convenios-page__select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 2px solid #ffa600;
  border-radius: 10px;
  background: #fff;
  color: #333333;
  font-family: inherit;
  font-size: 14px;
  box-shadow: none;
  outline: none;
}

.convenios-page__input {
  padding-left: 44px;
}

.convenios-page__select {
  padding-right: 52px;
  /* border-color: #d5dde8; */
  background: linear-gradient(180deg, #fffefb 0%, #fff7e8 100%);
  font-weight: 700;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.convenios-page__select:hover {
  border-color: #f6b100;
}

.convenios-page__input:focus,
.convenios-page__select:focus {
  border-color: #f6b100;
  box-shadow: 0 0 0 4px rgba(246, 177, 0, 0.16);
}

.convenios-page__select:disabled {
  border-color: #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  color: #94a3b8;
  cursor: not-allowed;
}

.convenios-page__submit {
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 10px;
  background: #f6b100;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: filter 0.25s ease;
}

.convenios-page__submit:hover,
.convenios-page__submit:focus {
  filter: brightness(0.95);
}

.convenios-page__controls {
  margin-top: 18px;
  display: none;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.convenios-page__top-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.convenios-page__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.convenios-page__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.convenios-page__chip--ghost {
  background: #fff7db;
  color: #8b5b00;
}

.convenios-page__control-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: auto;
}

.convenios-page__order {
  min-width: 190px;
}

.convenios-page__select--order {
  min-height: 44px;
  padding-right: 42px;
  font-weight: 700;
}

.convenios-page__clear {
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
}

.convenios-results {
  padding: 40px 0 64px;
}

.convenios-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 34px;
}

.convenios-page__card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.convenios-page__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.convenios-page__card-badge {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 2;
  max-width: calc(100% - 32px);
  padding: 9px 16px 9px 18px;
  border-radius: 8px 0 0 8px;
  background: #d32f2f;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: -3px 4px 12px rgba(0, 0, 0, 0.18);
}

.convenios-page__card-media {
  height: 190px;
  background: #f0f0f0;
}

.convenios-page__card-media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.convenios-page__card-image,
.convenios-page__card-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.convenios-page__card-image {
  object-fit: cover;
}

.convenios-page__card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: 60px;
  font-weight: 800;
}

.convenios-page__card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px;
}

.convenios-page__card-title {
  margin: 0 0 10px;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.convenios-page__card-title a {
  color: inherit;
  text-decoration: none;
  font-size: 22px;
}

.convenios-page__card-text {
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.65;
}

.convenios-page__card-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2rem;
  padding-top: 24px;
  padding: 16px;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
}

.convenios-page__card-tags-title {
  display: block;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.convenios-page__card-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.convenios-page__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.convenios-page__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-top: 1px solid #e2e8f0;
  background: #fafafa;
}

.convenios-page__benefit {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.convenios-page__benefit-label {
  margin-bottom: 4px;
  color: #666666;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.convenios-page__benefit-text {
  color: #d32f2f;
  font-size: clamp(20px, 2vw, 20px);
  font-weight: 800;
  line-height: 1;
}

.convenios-page__card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.convenios-page__detail-btn {
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid #1a1a1a;
  border-radius: 9px;
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.convenios-page__detail-btn:hover,
.convenios-page__detail-btn:focus {
  border-color: #f6b100;
  background: #f6b100;
  color: #1a1a1a;
}

.convenios-page__detail-link {
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}

.convenios-page__pagination {
  padding-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.convenios-page__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin: 0 5px;
  padding: 0 10px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
}

.convenios-page__pagination .page-numbers.current,
.convenios-page__pagination .page-numbers:hover {
  border-color: #f6b100;
  background: #f6b100;
  color: #1a1a1a;
}

.convenios-empty {
  padding: 60px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.convenios-empty__title {
  margin: 0 0 12px;
  color: #1a1a1a;
  font-size: 30px;
  font-weight: 800;
}

.convenios-empty__text {
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
}

.convenios-empty__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.convenios-empty__btn,
.convenios-empty__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.convenios-empty__btn {
  background: #f6b100;
  color: #1a1a1a;
}

.convenios-empty__link {
  border: 1px solid #e2e8f0;
  color: #1a1a1a;
}

.convenios-drawer-open {
  overflow: hidden;
}

.convenios-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.convenios-drawer-overlay.is-open {
  opacity: 1;
}

.convenios-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  width: min(100%, 520px);
  height: 100vh;
  padding: 32px;
  overflow-y: auto;
  background: #fff;
  box-shadow: -12px 0 36px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 0.32s ease;
}

.convenios-drawer.is-open {
  transform: translateX(0);
}

.convenios-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.convenios-drawer__eyebrow {
  margin: 0;
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 800;
}

.convenios-drawer__close {
  border: 0;
  background: transparent;
  color: #666666;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.convenios-drawer__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.convenios-drawer__media {
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 18px;
  background: #f0f0f0;
  min-height: 170px;
}

.convenios-drawer__image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.convenios-drawer__title {
  margin: 0 0 10px;
  color: #1a1a1a;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.convenios-drawer__category {
  display: inline-flex;
  align-self: flex-start;
  min-height: 30px;
  margin-bottom: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef2f7;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
}

.convenios-drawer__category:empty {
  display: none;
}

.convenios-drawer__highlight {
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid #f6b100;
  border-radius: 14px;
  background: #fffdf1;
}

.convenios-drawer__highlight h4 {
  margin: 0 0 8px;
  color: #d32f2f;
  font-size: 18px;
  font-weight: 800;
}

.convenios-drawer__highlight p {
  margin: 0;
  color: #7c2d12;
  font-size: 14px;
  line-height: 1.65;
}

.convenios-drawer__section {
  margin-top: 4px;
  margin-bottom: 24px;
}

.convenios-drawer__section-title {
  margin: 0 0 14px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 800;
}

.convenios-drawer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.convenios-drawer__chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.convenios-drawer__list {
  display: grid;
  gap: 12px;
}

.convenios-drawer__list-item {
  padding: 16px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.convenios-drawer__address {
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}

.convenios-drawer__address-name {
  margin: 0 0 8px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
}

.convenios-drawer__address-text {
  margin: 0 0 6px;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.convenios-drawer__address-city {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.convenios-drawer__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.convenios-drawer__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.convenios-drawer__action--primary {
  background: #f6b100;
  color: #1a1a1a;
}

.convenios-drawer__action--secondary {
  border: 2px solid #1a1a1a;
  background: #1a1a1a;
  color: #fff;
}

.convenios-drawer__action--link {
  justify-content: flex-start;
  min-height: auto;
  padding: 0;
  color: #1a1a1a;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .convenios-page__filter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .convenios-page__submit {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .convenios-page__hero {
    padding: 56px 0 32px;
  }

  .convenios-page__filter-bar {
    grid-template-columns: 1fr;
  }

  .convenios-page__controls,
  .convenios-page__card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .convenios-page__control-actions,
  .convenios-page__card-actions {
    margin-left: 0;
    align-items: stretch;
  }

  .convenios-page__detail-link {
    text-align: center;
  }

  .convenios-drawer {
    width: 100%;
    padding: 24px 20px;
  }
}

@media (max-width: 576px) {
  .convenios-results {
    padding: 32px 0 54px;
  }

  .convenios-page__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .convenios-page__card-body,
  .convenios-page__card-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .convenios-page__card-title {
    font-size: 21px;
  }

  .convenios-drawer__title {
    font-size: 26px;
  }
}
