.sedes-tabs-container {
  overflow-x: auto;
  margin-bottom: 32px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sedes-tabs-container::-webkit-scrollbar {
  display: none;
}

.sedes-tabs {
  display: flex;
  gap: 12px;
  width: max-content;
}

.sede-chip {
  padding: 10px 24px;
  background-color: var(--color-background-low);
  border: none;
  border-radius: 24px;
  color: var(--color-content-mid);
  font-family: var(--font-outfit);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.sede-chip.active {
  background-color: var(--color-primary-mid);
  color: var(--white-color);
}

.sede-tab-content {
  display: none;
}

.sede-tab-content.active {
  display: block;
  animation: sedeFadeIn 0.5s ease forwards;
}

.sede-info-wrapper {
  background: var(--white-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sede-name {
  color: var(--primary-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: none;
}

.sede-description {
  color: var(--color-content-mid);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
}

.sede-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}

.sede-extra {
  margin-bottom: 16px;
}

.sede-feature {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.sede-feature-icon {
  color: var(--primary-color);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  font-size: 20px;
}

.sede-feature p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 24px;
}

.sede-cta {
  color: var(--color-primary-mid);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  line-height: 28px;
  transition: gap 0.3s ease;
}

.sede-cta i {
  font-size: 14px;
}

.sede-cta:hover {
  text-decoration: none;
  gap: 15px;
}

.sede-info-image {
  width: 100%;
  order: 2;
  border-radius: 20px;
  overflow: hidden;
}

.sede-info-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.sede-footer {
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .sede-info-wrapper {
    flex-direction: row;
    align-items: stretch;
  }

  .sede-info-text {
    flex: 1;
    padding: 0 58px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .sede-name {
    font-size: 22px;
    line-height: 30px;
  }

  .sede-info-image {
    width: 472px;
    height: 288px;
    order: 2;
    overflow: hidden;
  }

  .sede-info-image img {
    height: 100%;
    aspect-ratio: unset;
  }

  .sede-chip:hover:not(.active) {
    background-color: var(--color-background-mid);
  }
}

@keyframes sedeFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}