.kupo-travels-landing {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
  font-family: var(--smgCupoFontFamily, "Montserrat", Arial, sans-serif);
}

.kupo-travel-action {
  margin-bottom: 20px;
}
.kupo-travel-action .kupo-service-button-back {
  border: 1px solid #d1d1d1;
  background-color: #fff;
  color: #333;
  padding: 8px 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.kupo-travel-action .kupo-service-button-back:hover {
  background-color: #f8f8f8;
}

.kupo-travel-landing {
  display: flex;
  flex-direction: column;
}

.kupo-travel-landing-services {
  margin-bottom: 20px;
}
.kupo-travel-landing-services .kupo-travels-landing-services {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 799px) {
  .kupo-travel-landing-services .kupo-travels-landing-services {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.kupo-service-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--smgCupoSecondaryColor, #005a9f);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  column-gap: 12px;
  background-color: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.kupo-service-button .kupo-service-button-active-indicator {
  display: none;
  width: 24px;
  height: 24px;
  fill: #28a745;
}
.kupo-service-button svg {
  width: 30px;
  height: 30px;
  min-width: 30px;
  flex-shrink: 0;
  fill: var(--smgCupoSecondaryColor, #005a9f) !important;
}
.kupo-service-button span {
  font-size: 14px;
  color: var(--smgCupoSecondaryColor, #005a9f);
  font-weight: 500;
}
.kupo-service-button:hover {
  background-color: #f4f8fb;
  transform: translateY(-2px);
}
.kupo-service-button.active {
  background-color: var(--smgCupoSecondaryColor, #005a9f);
  border-color: var(--smgCupoSecondaryColor, #005a9f);
  color: #fff;
}
.kupo-service-button.active .cupo_icon_secondary_color {
  fill: #fff !important;
}
.kupo-service-button.active span {
  color: #fff !important;
}
.kupo-service-button.disabled {
  background-color: #f5f5f5;
  border-color: #e0e0e0;
  cursor: not-allowed;
  transform: none;
}
.kupo-service-button.disabled span {
  color: #aaa;
}
.kupo-service-button.disabled .cupo_icon_disabled {
  fill: #ccc;
}

.kupo-travel-landing-services-iframe {
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  overflow: hidden;
}
.kupo-travel-landing-services-iframe iframe {
  display: block;
  border: none;
  width: 100%;
}
