.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-orange-500), #ff8f35);
  box-shadow: 0 12px 24px rgba(255,122,26,.28);
}

.btn-secondary,
.btn-search {
  color: #fff;
  background: linear-gradient(135deg, var(--color-teal-600), var(--color-teal-500));
  box-shadow: 0 12px 24px rgba(0,169,173,.22);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.04);
}

.btn-lg {
  padding: 17px 26px;
}

.btn-light {
  color: var(--color-teal-600);
  background: #fff;
}

.btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.05);
}

.text-link {
  font-weight: 900;
  color: var(--color-teal-600);
}

.orange-link {
  color: var(--color-orange-500);
}

.light-link {
  color: var(--color-teal-400);
}

.search-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 30px;
  border: 1px solid rgba(14, 27, 49, .08);
}

.search-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr .95fr 180px;
  gap: 12px;
  align-items: end;
}

.search-box label {
  display: grid;
  gap: 5px;
  background: var(--color-slate-50);
  border: 1px solid #e2ebef;
  border-radius: 14px;
  padding: 13px 15px;
}

.search-box label span {
  color: var(--color-slate-700);
  font-weight: 800;
  font-size: .86rem;
}

.search-box input {
  border: 0;
  background: transparent;
  outline: 0;
  min-width: 0;
  color: var(--color-slate-900);
}

.destinations-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr) .85fr;
  gap: 14px;
  margin-top: 22px;
}

.destination-chip {
  min-height: 88px;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: end;
  color: #fff;
  font-weight: 900;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.62)),
    linear-gradient(135deg, #2c7199, #09243c);
  box-shadow: 0 10px 20px rgba(6,26,45,.12);
}

.destination-chip small {
  display: block;
  font-weight: 600;
  opacity: .88;
}

.more-destinations {
  display: grid;
  place-items: center;
  min-height: 88px;
  border-radius: 14px;
  background: var(--color-slate-50);
  color: var(--color-teal-600);
  text-align: center;
  font-weight: 900;
  border: 1px solid #e2ebef;
}

.solution-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.solution-card,
.case-card,
.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(14,27,49,.08);
}

.solution-image,
.case-image {
  min-height: 160px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.26)),
    linear-gradient(135deg, #125477, #f0a04b);
}

.image-hotel { background: linear-gradient(135deg, #0d5572, #dab16e); }
.image-house { background: linear-gradient(135deg, #b9652c, #0c765e); }
.image-resort { background: linear-gradient(135deg, #1a528f, #d7a45c); }
.image-glamping { background: linear-gradient(135deg, #356b3d, #d6a14c); }
.image-city { background: linear-gradient(135deg, #28476b, #d5a85c); }

.solution-content,
.case-card {
  padding: 24px;
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-top: -52px;
  margin-bottom: 18px;
  background: var(--color-teal-600);
  border: 4px solid #fff;
  font-size: 1.5rem;
}

.icon-badge.orange { background: var(--color-orange-500); }
.icon-badge.blue { background: var(--color-blue-500); }

.ecosystem-card {
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, #effafd, #ffffff);
  border: 1px solid #dcecef;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.journey {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e4eef2;
}

.journey-label {
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  color: var(--color-teal-600);
  margin-bottom: 14px;
}

.journey-steps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.journey-steps span {
  flex: 1 1 86px;
  text-align: center;
  background: var(--color-slate-50);
  padding: 11px 8px;
  border-radius: 12px;
  font-weight: 800;
  font-size: .86rem;
}

.ecosystem-center {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle, var(--color-teal-500), var(--color-navy-900));
  box-shadow: 0 14px 30px rgba(0,169,173,.28);
}

.ecosystem-center strong,
.ecosystem-center span {
  display: block;
}

.fish-strip {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid #e4eef2;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}

.fish-strip strong {
  color: var(--color-navy-900);
  font-size: 1.2rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: .38fr .62fr;
  gap: 42px;
  align-items: center;
}

.comparison-table {
  overflow: auto;
  min-width: 600px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid #dce7ed;
  box-shadow: var(--shadow-card);
}

.table-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
}

.table-row > span {
  padding: 14px 16px;
  border-bottom: 1px solid #e8eef2;
  border-right: 1px solid #e8eef2;
  font-size: .9rem;
}

.table-row > span:last-child {
  border-right: 0;
  color: var(--color-teal-600);
  font-weight: 900;
}

.table-head {
  background: #edf7f9;
  font-weight: 900;
}

.table-head > span:last-child {
  color: #fff;
  background: var(--color-teal-600);
}

.fish-banner {
  margin-inline: auto;
}

.fish-banner-grid {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(circle at 80% 50%, rgba(0,169,173,.26), transparent 32%),
    linear-gradient(135deg, var(--color-navy-950), var(--color-navy-800));
  border-radius: var(--radius-lg);
  padding: 46px;
}

.fish-modules {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.fish-modules span {
  min-height: 118px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px;
  font-weight: 900;
}

.case-grid {
  grid-template-columns: repeat(3, 1fr) 1.1fr;
}

.case-image {
  margin: -24px -24px 18px;
}

.tag {
  display: inline-flex;
  color: var(--color-teal-600);
  background: rgba(0,169,173,.1);
  padding: 5px 8px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .72rem;
}

.orange-tag {
  color: var(--color-orange-500);
  background: rgba(255,122,26,.12);
}

.testimonial {
  padding: 32px;
  background: linear-gradient(135deg, var(--color-navy-900), var(--color-teal-600));
  color: #fff;
}

.testimonial p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.testimonial span {
  display: block;
  color: rgba(255,255,255,.75);
}

.vision-grid {
  display: grid;
  grid-template-columns: .8fr 1fr .7fr;
  gap: 42px;
  align-items: center;
  background:
    radial-gradient(circle at 55% 50%, rgba(0,169,173,.28), transparent 36%),
    linear-gradient(135deg, #04172a, #08243d);
  border-radius: var(--radius-lg);
  padding: 42px;
}

.country-grid,
.vision-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.country-grid span,
.vision-stats strong {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  padding: 14px;
  border-radius: 14px;
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-teal-600), var(--color-navy-900));
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}

.cta-card p {
  color: rgba(255,255,255,.8);
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* Search Pro Controls */
.search-box-pro {
  grid-template-columns: 1.25fr .72fr .72fr .88fr 1fr 160px;
  align-items: stretch;
}

.search-box select,
.search-box input[type="date"] {
  border: 0;
  background: transparent;
  outline: 0;
  min-width: 0;
  color: var(--color-slate-900);
  width: 100%;
}

.search-box select {
  appearance: none;
  cursor: pointer;
}

.guest-control {
  position: relative;
}

.guest-trigger {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  background: var(--color-slate-50);
  border: 1px solid #e2ebef;
  border-radius: 14px;
  padding: 13px 15px;
  cursor: pointer;
  color: var(--color-slate-900);
}

.guest-trigger strong {
  display: block;
  color: var(--color-slate-700);
  font-weight: 900;
  font-size: .86rem;
}

.guest-trigger small {
  display: block;
  margin-top: 5px;
  color: #777;
  font-size: .96rem;
}

.guest-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  width: 310px;
  display: none;
  background: #fff;
  border: 1px solid #dce7ed;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 22px 60px rgba(6,26,45,.22);
}

.guest-control.is-open .guest-popover {
  display: block;
}

.counter-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #edf3f6;
}

.counter-row:last-child {
  border-bottom: 0;
}

.counter-row strong {
  display: block;
  color: var(--color-slate-900);
}

.counter-row small {
  color: var(--color-slate-500);
}

.counter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.counter button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #cbdde5;
  background: #fff;
  color: var(--color-teal-600);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
}

.counter output {
  min-width: 20px;
  text-align: center;
  font-weight: 900;
}

.results-hero {
  padding: 118px 0 44px;
  background:
    radial-gradient(circle at 78% 20%, rgba(0,169,173,.28), transparent 30%),
    linear-gradient(135deg, var(--color-navy-950), var(--color-navy-800));
  color: #fff;
}

.results-hero p {
  color: rgba(255,255,255,.76);
}

.results-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  align-items: start;
}

.filters-card,
.results-card {
  background: #fff;
  border: 1px solid #e1ebf0;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.filters-card {
  padding: 22px;
  position: sticky;
  top: 92px;
}

.filters-card label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-weight: 900;
  color: var(--color-slate-700);
}

.filters-card input,
.filters-card select {
  width: 100%;
  border: 1px solid #d9e6ec;
  border-radius: 12px;
  padding: 12px 13px;
  background: var(--color-slate-50);
}

.results-list {
  display: grid;
  gap: 18px;
}

.result-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 20px;
  padding: 18px;
}

.result-image {
  min-height: 160px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.25)),
    linear-gradient(135deg, #0d5572, #d9a85f);
}

.result-content h3 {
  margin-bottom: 8px;
}

.result-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.result-meta span {
  background: var(--color-slate-50);
  border: 1px solid #e3edf1;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--color-slate-700);
}

.result-actions {
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 180px;
}

.empty-results {
  padding: 34px;
  text-align: center;
}

.search-summary {
  margin-bottom: 22px;
  color: var(--color-slate-700);
}

.search-summary strong {
  color: var(--color-slate-900);
}


/* v4 - Search panel proportion refinements */
.search-panel {
  padding: 38px 46px 34px;
  border-radius: 30px;
}

.search-panel .section-heading h2 {
  font-size: clamp(2.35rem, 3.2vw, 3.75rem);
  line-height: 1;
  margin-bottom: 26px;
}

.search-box-pro {
  grid-template-columns: minmax(260px, 1.45fr) minmax(150px, .78fr) minmax(150px, .78fr) minmax(180px, .95fr) minmax(190px, .95fr) 160px;
  gap: 14px;
  align-items: start;
}

.search-box label,
.guest-trigger {
  min-height: 86px;
  padding: 15px 18px;
  border-radius: 16px;
}

.search-box label span,
.guest-trigger strong {
  font-size: .84rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.search-box input,
.search-box select {
  font-size: .98rem;
  line-height: 1.25;
}

.guest-trigger {
  height: 86px;
}

.guest-trigger small {
  font-size: .98rem;
  line-height: 1.35;
  margin-top: 0;
}

.search-box-pro .btn-search {
  min-height: 86px;
  height: 86px;
  padding-inline: 24px;
  border-radius: 16px;
  align-self: start;
  box-shadow: 0 18px 42px rgba(0,169,173,.24);
}

.destinations-row {
  grid-template-columns: repeat(3, minmax(150px, 1fr)) 190px;
  max-width: 820px;
  margin-top: 24px;
}

.destination-chip,
.more-destinations {
  min-height: 92px;
}

.guest-popover {
  top: calc(100% + 12px);
  width: 330px;
}

.counter-row {
  padding: 14px 0;
}

.counter button {
  width: 32px;
  height: 32px;
}

/* Prevent native date/select controls from visually breaking the rhythm */
.search-box input[type="date"] {
  min-height: 28px;
}

.search-box select {
  min-height: 28px;
}


/* v5 - Search redesign */
.search-panel {
  padding: 34px 40px 30px;
  border-radius: 32px;
  background: #fff;
}

.search-panel .section-heading {
  margin-bottom: 22px;
}

.search-panel .section-heading h2 {
  font-size: clamp(2.2rem, 3vw, 3.25rem);
  line-height: 1.03;
  margin-bottom: 0;
  letter-spacing: -0.05em;
}

.search-box-pro {
  grid-template-columns: minmax(280px, 1.55fr) minmax(150px, .86fr) minmax(150px, .86fr) minmax(180px, .98fr) minmax(190px, 1.04fr) 170px;
  gap: 12px;
  align-items: stretch;
}

.search-box label {
  background: #fff;
  min-height: 96px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid #d8e3e8;
  box-shadow: 0 6px 18px rgba(7, 31, 54, .04);
}

.search-box label span,
.guest-trigger strong {
  display: block;
  color: #21395a;
  font-size: .83rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.search-box input,
.search-box select {
  font-size: .96rem;
  color: var(--color-slate-900);
}

.search-box input::placeholder {
  color: #6d7a8e;
}

.search-box select {
  appearance: none;
  background: transparent;
}

.search-box input[type="date"] {
  padding-right: 2px;
}

.field-destination {
  position: relative;
}

.destination-combobox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.destination-combobox input {
  flex: 1;
}

.destination-clear {
  display: none;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #edf3f6;
  color: #617188;
  font-size: .96rem;
  cursor: pointer;
}

.field-destination.has-value .destination-clear {
  display: inline-grid;
  place-items: center;
}

.destination-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  width: min(100%, 270px);
  display: none;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce6eb;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(7, 31, 54, .16);
}

.field-destination.is-open .destination-popover {
  display: block;
}

.destination-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid #edf3f6;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.destination-option:last-child {
  border-bottom: 0;
}

.destination-option:hover {
  background: #f8fbfd;
}

.destination-option-icon {
  font-size: 1.18rem;
  line-height: 1;
}

.destination-option strong {
  display: block;
  font-size: .96rem;
  color: var(--color-slate-900);
}

.destination-option small {
  display: block;
  margin-top: 3px;
  color: var(--color-slate-500);
}

.guest-trigger {
  min-height: 96px;
  height: 96px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid #d8e3e8;
  background: #fff;
  box-shadow: 0 6px 18px rgba(7, 31, 54, .04);
}

.guest-trigger small {
  font-size: .96rem;
  line-height: 1.35;
  color: #6d7a8e;
}

.guest-popover {
  width: 340px;
  top: calc(100% + 10px);
  right: 0;
  border-radius: 20px;
  border: 1px solid #dce6eb;
  box-shadow: 0 24px 60px rgba(7,31,54,.16);
}

.counter-row {
  padding: 15px 0;
}

.counter button {
  width: 36px;
  height: 36px;
  border-color: #cfdde5;
  color: var(--color-teal-600);
}

.search-box-pro .btn-search {
  min-height: 96px;
  height: 96px;
  border-radius: 18px;
  font-size: 1.08rem;
  box-shadow: 0 14px 34px rgba(0,169,173,.18);
}

.destinations-row {
  grid-template-columns: repeat(3, minmax(165px, 1fr)) 210px;
  gap: 14px;
  margin-top: 18px;
  max-width: 840px;
}

.destination-chip,
.more-destinations {
  min-height: 88px;
  border-radius: 18px;
}

.destination-chip {
  padding: 14px;
}

.more-destinations {
  font-size: .96rem;
}

.more-destinations span {
  display: inline-block;
}

.search-box label:focus-within,
.guest-control.is-open .guest-trigger {
  border-color: rgba(0,169,173,.45);
  box-shadow: 0 0 0 4px rgba(0,169,173,.12);
}


/* v6 - Unified date range control */
.search-box-pro {
  grid-template-columns: minmax(300px, 1.55fr) minmax(260px, 1.28fr) minmax(185px, .95fr) minmax(210px, 1.02fr) 170px;
}

.date-range-control {
  position: relative;
}

.date-range-trigger {
  width: 100%;
  min-height: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  text-align: left;
  background: #fff;
  border: 1px solid #d8e3e8;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 6px 18px rgba(7, 31, 54, .04);
  cursor: pointer;
  color: var(--color-slate-900);
}

.date-range-trigger strong {
  display: block;
  color: #21395a;
  font-size: .83rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.date-range-trigger small {
  display: block;
  font-size: .96rem;
  line-height: 1.35;
  color: #6d7a8e;
}

.date-range-control.is-open .date-range-trigger {
  border-color: rgba(0,169,173,.45);
  box-shadow: 0 0 0 4px rgba(0,169,173,.12);
}

.date-range-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 42;
  width: 420px;
  display: none;
  background: #fff;
  border: 1px solid #dce6eb;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(7,31,54,.16);
  padding: 16px;
}

.date-range-control.is-open .date-range-popover {
  display: block;
}

.date-range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.date-range-grid label {
  min-height: 82px;
  background: #f8fbfd;
  box-shadow: none;
}

.date-range-grid input {
  width: 100%;
}

.date-range-hint {
  margin: 12px 2px 0;
  font-size: .88rem;
  color: var(--color-slate-500);
}

.search-box-pro .btn-search {
  justify-self: stretch;
}

.search-box label select {
  overflow: hidden;
  text-overflow: ellipsis;
}


/* v7 - desktop integration fix */
.search-panel {
  max-width: 1290px;
  margin-inline: auto;
}

.search-box-pro {
  grid-template-columns: minmax(280px, 2.2fr) minmax(240px, 1.9fr) minmax(180px, 1.35fr) minmax(180px, 1.35fr) minmax(150px, 1.2fr);
  gap: 14px;
}

.search-box-pro .btn-search {
  min-height: 94px;
  height: 94px;
  width: 100%;
  align-self: stretch;
  justify-self: stretch;
  border-radius: 20px;
}

.search-box label,
.date-range-trigger,
.guest-trigger {
  min-height: 94px;
  height: 94px;
}

.destinations-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 100%;
  width: 100%;
}

.more-destinations {
  min-width: 0;
}


/* v9 - Real image assets */
.destination-chip {
  position: relative;
  overflow: hidden;
  background: var(--color-navy-900);
}

.destination-chip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.destination-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,14,28,.74));
}

.destination-chip span {
  position: relative;
  z-index: 2;
}

.destination-chip:hover img {
  transform: scale(1.06);
}

.solution-image,
.case-image {
  background-size: cover !important;
  background-position: center !important;
}

.image-hotel {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.34)),
    url("../images/home/solucion-hoteles-apart-hoteles.webp") !important;
}

.image-house {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.34)),
    url("../images/home/solucion-casas-bungalows-glamping.webp") !important;
}

.image-resort {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.34)),
    url("../images/home/solucion-resorts-multipropiedad.webp") !important;
}

.image-glamping {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.34)),
    url("../images/home/solucion-casas-bungalows-glamping.webp") !important;
}

.image-city {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.34)),
    url("../images/home/solucion-hoteles-apart-hoteles.webp") !important;
}

.solution-card,
.case-card {
  isolation: isolate;
}


/* v11 - Destination card image reliability */
.destination-chip {
  isolation: isolate;
}

.destination-chip img {
  display: block;
  opacity: 1;
}

.destination-chip::after {
  z-index: 1;
}

.destination-chip span {
  z-index: 2;
}

.destinations-row .destination-chip:nth-child(n+5) {
  display: flex;
}

@media (min-width: 1101px) {
  .destinations-row {
    grid-template-columns: repeat(6, minmax(0, 1fr)) 148px;
  }
}

@media (max-width: 760px) {
  .destination-chip {
    min-height: 92px;
  }
}


/* v12 - Ecosystem section redesign */
.ecosystem .section-heading {
  max-width: 980px;
  margin-inline: auto;
}

.ecosystem-shell {
  margin-top: 18px;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,255,255,.86)),
    linear-gradient(135deg, rgba(25,209,209,.08), rgba(8,27,53,.06));
  border: 1px solid #d9e8ed;
  box-shadow: 0 20px 60px rgba(8, 27, 53, .08);
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 20px;
  align-items: start;
}

.ecosystem-column {
  display: grid;
  gap: 16px;
}

.ecosystem-visual {
  position: relative;
  min-height: 260px;
  border-radius: 28px;
  overflow: hidden;
  background: #0b223d;
  border: 1px solid rgba(16, 116, 140, .16);
  box-shadow: 0 18px 42px rgba(8, 27, 53, .12);
}

.ecosystem-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ecosystem-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,14,26,.14), rgba(2,14,26,.82));
}

.ecosystem-overlay {
  position: relative;
  z-index: 2;
  padding: 22px;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
}

.ecosystem-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .03em;
  color: #e9ffff;
  background: rgba(25,209,209,.18);
  border: 1px solid rgba(25,209,209,.36);
  backdrop-filter: blur(8px);
}

.ecosystem-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.12;
  max-width: 320px;
  text-wrap: balance;
}

.ecosystem-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ecosystem-steps span {
  display: grid;
  place-items: center;
  min-height: 70px;
  padding: 12px 10px;
  text-align: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e3edf1;
  box-shadow: 0 12px 26px rgba(8, 27, 53, .05);
  color: var(--color-slate-900);
  font-weight: 900;
  line-height: 1.18;
  font-size: .96rem;
}

.ecosystem-core {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.ecosystem-core-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 68px rgba(0, 169, 173, .18);
}

.ecosystem-core-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ecosystem-core-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15,203,208,.28), rgba(4,22,40,.74));
}

.ecosystem-core-glow {
  position: absolute;
  inset: auto 50% -18px auto;
  width: 180px;
  height: 44px;
  transform: translateX(50%);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(25,209,209,.35), transparent 70%);
  filter: blur(10px);
  z-index: 1;
}

.ecosystem-core-badge {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.ecosystem-core-badge strong {
  font-size: 2.05rem;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}

.ecosystem-core-badge span {
  font-size: 1.1rem;
  color: rgba(255,255,255,.92);
}

.ecosystem-engine {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fefefe, #f9fdff);
  border: 1px solid #dce8ed;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 14px 34px rgba(8, 27, 53, .06);
}

.ecosystem-engine-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fish-mini-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: var(--color-teal-500);
  background: rgba(25,209,209,.12);
  border: 1px solid rgba(25,209,209,.28);
  font-size: .96rem;
  flex: 0 0 auto;
}

.ecosystem-engine-brand strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--color-slate-900);
}

.ecosystem-engine-brand p {
  margin: 6px 0 0;
  color: var(--color-slate-600);
  font-size: .96rem;
}

.ecosystem-modules {
  display: grid;
  grid-template-columns: repeat(5, minmax(118px, 1fr));
  gap: 10px;
  align-self: center;
}

.ecosystem-modules span {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 10px 12px;
  text-align: center;
  border-radius: 16px;
  background: #f6fbfd;
  border: 1px solid #dce9ee;
  color: var(--color-slate-700);
  font-weight: 800;
  line-height: 1.2;
}


/* v13 - Ecosystem section aligned to approved mockup */
.ecosystem-v13 .section-heading {
  max-width: 1000px;
  margin-inline: auto;
}

.ecosystem-v13 .section-heading p {
  max-width: 860px;
  margin-inline: auto;
}

.ecosystem-v13-shell {
  margin-top: 18px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, #eef9fc, #f7fcfd);
  border: 1px solid #d8eaef;
  box-shadow: 0 18px 54px rgba(8, 27, 53, .06);
}

.ecosystem-v13-top {
  display: grid;
  grid-template-columns: 1fr 230px 1fr;
  gap: 18px;
  align-items: center;
}

.ecosystem-lane {
  background: #fff;
  border: 1px solid #e0ecef;
  border-radius: 28px;
  padding: 20px 18px;
  box-shadow: 0 14px 30px rgba(8, 27, 53, .05);
  min-height: 242px;
}

.ecosystem-lane__head {
  text-align: center;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .03em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ecosystem-lane--traveler .ecosystem-lane__head { color: #0f9aa8; }
.ecosystem-lane--host .ecosystem-lane__head { color: #ff8b2a; }

.ecosystem-lane__flow {
  display: grid;
  grid-template-columns: repeat(9, auto);
  align-items: start;
  justify-content: center;
  gap: 8px;
}

.ecosystem-step {
  width: 96px;
  text-align: center;
}

.ecosystem-step__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(244,250,252,.94));
  border: 1px solid #deedf1;
  box-shadow: 0 10px 22px rgba(8, 27, 53, .05);
}

.ecosystem-step__icon svg,
.ecosystem-module svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ecosystem-step--traveler .ecosystem-step__icon svg { stroke: #0f9aa8; }
.ecosystem-step--host .ecosystem-step__icon svg { stroke: #ff8b2a; }

.ecosystem-step strong {
  display: block;
  color: var(--color-slate-900);
  font-size: 1.02rem;
  line-height: 1.06;
  margin-bottom: 5px;
}

.ecosystem-step small {
  display: block;
  color: var(--color-slate-600);
  font-size: .84rem;
  line-height: 1.22;
}

.ecosystem-arrow {
  align-self: start;
  padding-top: 16px;
  color: #7bc5ce;
  font-size: 1.25rem;
  font-weight: 900;
}

.ecosystem-lane--host .ecosystem-arrow {
  color: #ffb071;
}

.ecosystem-center-node {
  position: relative;
  display: grid;
  place-items: center;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  margin-inline: auto;
  background: radial-gradient(circle at center, #102846 0%, #06182d 72%);
  box-shadow: 0 28px 60px rgba(3, 17, 31, .22);
}

.ecosystem-center-node::before,
.ecosystem-center-node::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  border-top: 2px dashed #9ad7dd;
}

.ecosystem-center-node::before {
  right: calc(100% + 8px);
}
.ecosystem-center-node::after {
  left: calc(100% + 8px);
}

.ecosystem-center-node__glow {
  position: absolute;
  inset: auto 50% -22px auto;
  width: 172px;
  height: 52px;
  transform: translateX(50%);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(25,209,209,.30), transparent 70%);
  filter: blur(12px);
}

.ecosystem-center-node__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.ecosystem-center-node__mark {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 12px;
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1;
}

.ecosystem-center-node__mark .mark-teal { color: #12d6d9; }
.ecosystem-center-node__mark .mark-orange { color: #ff982b; }

.ecosystem-center-node strong {
  display: block;
  font-size: 2.2rem;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.ecosystem-center-node span {
  color: rgba(255,255,255,.9);
  font-size: 1.02rem;
}

.ecosystem-v13-downlink {
  position: relative;
  width: 2px;
  height: 40px;
  margin: 8px auto 10px;
  background: linear-gradient(180deg, rgba(15,154,168,.1), rgba(15,154,168,.8));
}

.ecosystem-v13-downlink::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #0f9aa8;
}

.ecosystem-fish-board {
  background: #fff;
  border: 1px solid #dfebef;
  border-radius: 28px;
  padding: 22px 24px 24px;
  box-shadow: 0 14px 30px rgba(8, 27, 53, .05);
}

.ecosystem-fish-board__header {
  text-align: center;
  margin-bottom: 18px;
}

.ecosystem-fish-logo {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  background: rgba(15,154,168,.08);
  border: 1px solid rgba(15,154,168,.18);
  color: #0f9aa8;
  font-weight: 900;
}

.ecosystem-fish-board__header h3 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -.03em;
}

.ecosystem-fish-board__header p {
  margin: 8px 0 0;
  color: var(--color-slate-600);
  font-size: 1.02rem;
}

.ecosystem-fish-modules {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
}

.ecosystem-module {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  min-height: 112px;
  padding: 12px 8px 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbfeff);
  border: 1px solid #e4eef1;
}

.ecosystem-module svg {
  stroke: #19a8b5;
}

.ecosystem-module span {
  text-align: center;
  color: var(--color-slate-800);
  font-weight: 800;
  line-height: 1.22;
  font-size: .95rem;
}


/* v14 - Ecosystem responsive refinement */
.ecosystem-v14 .section-heading {
  max-width: 980px;
  margin-inline: auto;
}

.ecosystem-v14 .section-heading p {
  max-width: 860px;
  margin-inline: auto;
}

.ecosystem-v14-shell {
  margin-top: 18px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, #eef8fb, #f7fcfd);
  border: 1px solid #d9eaef;
  box-shadow: 0 18px 54px rgba(8, 27, 53, .06);
  overflow: hidden;
}

.ecosystem-v14-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.ecosystem-card {
  min-width: 0;
  background: #fff;
  border: 1px solid #dfebef;
  border-radius: 28px;
  padding: 20px 18px;
  box-shadow: 0 14px 30px rgba(8, 27, 53, .05);
}

.ecosystem-card__head {
  text-align: center;
  margin-bottom: 18px;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.ecosystem-card--traveler .ecosystem-card__head { color: #0f9aa8; }
.ecosystem-card--host .ecosystem-card__head { color: #ff8b2a; }

.ecosystem-card__flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(118px, 1fr));
  gap: 10px;
  align-self: center;
  align-items: start;
}

.ecosystem-step {
  position: relative;
  min-width: 0;
  text-align: center;
}

.ecosystem-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 20px;
  right: -10px;
  font-size: 1.15rem;
  font-weight: 900;
}

.ecosystem-step--traveler:not(:last-child)::after { color: #7dc8d1; }
.ecosystem-step--host:not(:last-child)::after { color: #ffb57b; }

.ecosystem-step__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #f7fbfc);
  border: 1px solid #ddecef;
  box-shadow: 0 8px 18px rgba(8, 27, 53, .05);
}

.ecosystem-step__icon svg,
.ecosystem-module svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ecosystem-step--traveler .ecosystem-step__icon svg { stroke: #0f9aa8; }
.ecosystem-step--host .ecosystem-step__icon svg { stroke: #ff8b2a; }

.ecosystem-step__text {
  min-width: 0;
}

.ecosystem-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-slate-900);
  font-size: .96rem;
  line-height: 1.08;
}

.ecosystem-step small {
  display: block;
  color: var(--color-slate-600);
  font-size: .84rem;
  line-height: 1.22;
}

.ecosystem-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ecosystem-center__node {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: radial-gradient(circle at center, #0f2746 0%, #04172b 74%);
  box-shadow: 0 26px 56px rgba(3, 17, 31, .22);
}

.ecosystem-center__node::before,
.ecosystem-center__node::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38px;
  border-top: 2px dashed #a9dde2;
}

.ecosystem-center__node::before {
  right: calc(100% + 8px);
}
.ecosystem-center__node::after {
  left: calc(100% + 8px);
}

.ecosystem-center__node::after,
.ecosystem-center__node::before {
  transform: translateY(-50%);
}

.ecosystem-center__node::marker { content: none; }

.ecosystem-center__node::selection {
  background: transparent;
}

.ecosystem-center__mark {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 10px;
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1;
}

.ecosystem-center__mark .mark-teal { color: #12d6d9; }
.ecosystem-center__mark .mark-orange { color: #ff982b; }

.ecosystem-center__node strong {
  display: block;
  font-size: 2.12rem;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 6px;
}

.ecosystem-center__node span {
  font-size: .96rem;
  color: rgba(255,255,255,.92);
}

.ecosystem-center__node::after {
  box-shadow: none;
}

.ecosystem-center__node::before,
.ecosystem-center__node::after {
  pointer-events: none;
}

.ecosystem-center__node > * {
  position: relative;
  z-index: 2;
}

.ecosystem-center__node::after,
.ecosystem-center__node::before {}

.ecosystem-center__node::part(glow) {}

.ecosystem-center__node {
  overflow: visible;
}

.ecosystem-center__node::after,
.ecosystem-center__node::before {}

.ecosystem-center__node {
  background-image:
    radial-gradient(circle at 50% 88%, rgba(25, 209, 209, .22), transparent 28%),
    radial-gradient(circle at center, #0f2746 0%, #04172b 74%);
}

.ecosystem-center__down {
  position: relative;
  width: 2px;
  height: 38px;
  margin: 10px auto 10px;
  background: linear-gradient(180deg, rgba(15,154,168,.16), rgba(15,154,168,.85));
}

.ecosystem-center__down::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #0f9aa8;
}

.ecosystem-fish {
  background: #fff;
  border: 1px solid #dfebef;
  border-radius: 28px;
  padding: 22px 24px 24px;
  box-shadow: 0 14px 30px rgba(8, 27, 53, .05);
}

.ecosystem-fish__header {
  text-align: center;
  margin-bottom: 18px;
}

.ecosystem-fish__logo {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #0f9aa8;
  background: rgba(15,154,168,.08);
  border: 1px solid rgba(15,154,168,.18);
  font-weight: 900;
}

.ecosystem-fish__header h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.03em;
}

.ecosystem-fish__header p {
  margin: 8px 0 0;
  color: var(--color-slate-600);
  font-size: .96rem;
}

.ecosystem-fish__modules {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
}

.ecosystem-module {
  min-width: 0;
  min-height: 112px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 12px 8px 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbfeff);
  border: 1px solid #e4eef1;
}

.ecosystem-module svg { stroke: #19a8b5; }

.ecosystem-module span {
  text-align: center;
  color: var(--color-slate-800);
  font-weight: 800;
  line-height: 1.22;
  font-size: .92rem;
}


/* v15 - Ecosystem isolated clean version */
.ecosystem-v15 .section-heading {
  max-width: 980px;
  margin-inline: auto;
}

.ecosystem-v15 .section-heading p {
  max-width: 860px;
  margin-inline: auto;
}

.eco15-shell {
  margin-top: 18px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, #eef8fb, #f7fcfd);
  border: 1px solid #d9eaef;
  box-shadow: 0 18px 54px rgba(8, 27, 53, .06);
  overflow: hidden;
}

.eco15-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.eco15-card {
  min-width: 0;
  background: #fff;
  border: 1px solid #dfecef;
  border-radius: 28px;
  padding: 20px 18px;
  box-shadow: 0 14px 30px rgba(8, 27, 53, .05);
}

.eco15-card__title {
  text-align: center;
  margin-bottom: 18px;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.eco15-card--travel .eco15-card__title { color: #0f9aa8; }
.eco15-card--host .eco15-card__title { color: #ff8b2a; }

.eco15-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}

.eco15-step {
  position: relative;
  min-width: 0;
  text-align: center;
  padding-inline: 2px;
}

.eco15-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 16px;
  right: -6px;
  font-size: 1.05rem;
  font-weight: 900;
}

.eco15-step--travel:not(:last-child)::after { color: #7cc7d1; }
.eco15-step--host:not(:last-child)::after { color: #ffb57b; }

.eco15-step__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #f7fbfc);
  border: 1px solid #dfecef;
  box-shadow: 0 8px 18px rgba(8, 27, 53, .05);
}

.eco15-step__icon svg,
.eco15-module svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eco15-step--travel .eco15-step__icon svg { stroke: #0f9aa8; }
.eco15-step--host .eco15-step__icon svg { stroke: #ff8b2a; }

.eco15-step__text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-slate-900);
  font-size: .96rem;
  line-height: 1.08;
}

.eco15-step__text small {
  display: block;
  color: var(--color-slate-600);
  font-size: .8rem;
  line-height: 1.2;
}

.eco15-center-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eco15-center {
  position: relative;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background-image:
    radial-gradient(circle at 50% 85%, rgba(25,209,209,.24), transparent 28%),
    radial-gradient(circle at center, #0f2746 0%, #04172b 74%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-align: center;
  color: #fff;
  box-shadow: 0 26px 56px rgba(3, 17, 31, .22);
}

.eco15-center::before,
.eco15-center::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  border-top: 2px dashed #a9dde2;
  transform: translateY(-50%);
}

.eco15-center::before { right: calc(100% + 8px); }
.eco15-center::after { left: calc(100% + 8px); }

.eco15-center__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin-bottom: 0;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.eco15-center__mark--logo {
  font-size: 3.2rem;
  letter-spacing: -.05em;
  background: linear-gradient(90deg, #12d6d9 0%, #ff982b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 14px rgba(18, 214, 217, .14));
}


.eco15-center strong {
  display: block;
  font-size: 2.02rem;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 0;
}

.eco15-center span {
  font-size: .98rem;
  color: rgba(255,255,255,.92);
  margin-top: -1px;
}

.eco15-downline {
  position: relative;
  width: 2px;
  height: 38px;
  margin: 10px auto 10px;
  background: linear-gradient(180deg, rgba(15,154,168,.16), rgba(15,154,168,.85));
}

.eco15-downline::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #0f9aa8;
}

.eco15-fish {
  background: #fff;
  border: 1px solid #dfecef;
  border-radius: 28px;
  padding: 22px 24px 24px;
  box-shadow: 0 14px 30px rgba(8, 27, 53, .05);
  text-align: center;
}

.eco15-fish__logo {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #0f9aa8;
  background: rgba(15,154,168,.08);
  border: 1px solid rgba(15,154,168,.18);
  font-weight: 900;
}

.eco15-fish h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.03em;
}

.eco15-fish p {
  margin: 8px 0 18px;
  color: var(--color-slate-600);
  font-size: .96rem;
}

.eco15-modules {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
}

.eco15-module {
  min-width: 0;
  min-height: 112px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 12px 8px 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbfeff);
  border: 1px solid #e4eef1;
}

.eco15-module svg { stroke: #19a8b5; }

.eco15-module span {
  text-align: center;
  color: var(--color-slate-800);
  font-weight: 800;
  line-height: 1.22;
  font-size: .92rem;
}


.table-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.table-benefit__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(0, 169, 173, .12);
  border: 1px solid rgba(0, 169, 173, .18);
}

.table-benefit__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--color-teal-600);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.table-benefit__text {
  display: inline;
}

.table-row > span.table-benefit {
  padding: 14px 16px;
}

.table-benefit {
  width: 100%;
  min-height: 100%;
  align-items: flex-start;
}

.table-benefit__text {
  display: block;
  line-height: 1.3;
  color: var(--color-teal-600);
  font-weight: 900;
}


/* v19 - Fish Hospitality banner upgrade */
.fish-banner-v19 {
  padding: 0;
  background: transparent;
}

.fish19-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.96fr) minmax(660px, 1.56fr) minmax(240px, .72fr);
  gap: 28px;
  align-items: center;
  padding: 38px 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 46%, rgba(0, 169, 173, .22), transparent 36%),
    radial-gradient(circle at 28% 8%, rgba(25, 209, 209, .10), transparent 28%),
    linear-gradient(135deg, #061427 0%, #071f36 48%, #073647 100%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 68px rgba(4, 23, 42, .18);
}

.fish19-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  opacity: .35;
  pointer-events: none;
}

.fish19-copy,
.fish19-modules,
.fish19-devices {
  position: relative;
  z-index: 2;
}

.fish19-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #fff;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.fish19-logo {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--color-teal-400);
  background: rgba(25,209,209,.11);
  border: 1px solid rgba(25,209,209,.30);
}

.fish19-copy h2 {
  max-width: 360px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2.1rem, 3.5vw, 3.7rem);
}

.fish19-copy p {
  max-width: 410px;
  color: rgba(255,255,255,.78);
  font-size: 1.02rem;
}

.fish19-cta {
  margin-top: 14px;
}

.fish19-modules {
  display: grid;
  grid-template-columns: repeat(5, minmax(118px, 1fr));
  gap: 10px;
  align-self: center;
}

.fish19-module {
  min-height: 164px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 47, 78, .86), rgba(13, 34, 60, .92));
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.fish19-module-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--color-teal-400);
  background: rgba(25,209,209,.09);
  border: 1px solid rgba(25,209,209,.26);
}

.fish19-module svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fish19-module strong {
  display: block;
  line-height: 1.15;
  font-size: .96rem;
}

.fish19-module small {
  display: block;
  color: rgba(255,255,255,.66);
  line-height: 1.32;
  font-size: .78rem;
}

.fish19-devices {
  min-height: 285px;
  display: grid;
  place-items: center;
}

.fish19-laptop {
  position: relative;
  width: min(100%, 270px);
  border-radius: 18px;
  padding: 12px;
  background: #f4fbfd;
  box-shadow: 0 24px 46px rgba(0,0,0,.28);
  transform: translateX(0);
}

.fish19-laptop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 84%;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, #cfdde2, #9aadb7);
}

.fish19-laptop-top {
  display: flex;
  gap: 5px;
  margin-bottom: 9px;
}

.fish19-laptop-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bed1d9;
}

.fish19-dashboard {
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}

.fish19-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 14px;
}

.fish19-kpi-row div {
  padding: 10px;
  border-radius: 10px;
  background: #eff8fa;
}

.fish19-kpi-row strong {
  display: block;
  color: var(--color-teal-600);
  font-size: .88rem;
}

.fish19-kpi-row small {
  color: var(--color-slate-500);
  font-size: .68rem;
}

.fish19-chart {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7fbfd, #eef7fa);
}

.fish19-chart span {
  flex: 1;
  min-width: 10px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--color-teal-500), #0b7682);
}

.fish19-dashboard-footer {
  display: grid;
  grid-template-columns: 1fr 1.3fr .8fr;
  gap: 8px;
  margin-top: 12px;
}

.fish19-dashboard-footer span {
  height: 12px;
  border-radius: 999px;
  background: #e5f1f5;
}

.fish19-phone {
  position: absolute;
  right: -4px;
  bottom: 16px;
  width: 82px;
  min-height: 170px;
  border-radius: 26px;
  padding: 18px 9px 12px;
  background: #f9feff;
  border: 5px solid #0a2036;
  box-shadow: 0 18px 34px rgba(0,0,0,.30);
}

.fish19-phone-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 34px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #b9ced7;
}

.fish19-chat {
  display: grid;
  gap: 8px;
}

.fish19-bubble {
  padding: 7px 8px;
  border-radius: 10px;
  font-size: .58rem;
  line-height: 1.2;
}

.fish19-bubble-in {
  background: #e7f5f0;
  color: #126a54;
}

.fish19-bubble-out {
  background: #dff7f8;
  color: #08656d;
}

.fish19-wa {
  position: absolute;
  right: -13px;
  top: 48%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #19c56f;
  border: 4px solid #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.2);
}

.fish19-copy {
  align-self: center;
}

.fish19-copy p {
  margin-bottom: 4px;
}

.fish19-modules {
  position: relative;
}

.fish19-module strong {
  min-height: 2.35em;
  letter-spacing: -0.01em;
}

.fish19-module small {
  min-height: 3.7em;
}

.fish19-module:hover {
  transform: translateY(-4px);
  border-color: rgba(25,209,209,.22);
  box-shadow: 0 16px 30px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
}

.fish19-devices {
  justify-self: center;
}

.fish19-devices {
  padding-right: 8px;
}

.fish19-module strong {
  font-size: .94rem;
}

.fish19-module small {
  line-height: 1.36;
}

/* v22 fine-tuning */
.fish19-copy {
  max-width: 430px;
}

.fish19-modules {
  width: 100%;
}

.fish19-module {
  justify-items: start;
}

.fish19-module strong {
  min-height: 2.1em;
  font-size: .92rem;
}

.fish19-module small {
  min-height: 2.8em;
  font-size: .76rem;
  line-height: 1.28;
}

.fish19-devices {
  padding-right: 0;
}


/* v23 - testimonial card with avatar */
.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.testimonial-quote-mark {
  font-size: 4rem;
  line-height: .7;
  font-weight: 900;
  color: rgba(255,255,255,.2);
  margin-bottom: -8px;
}

.testimonial p {
  margin: 0;
  max-width: 18ch;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(25,209,209,.92), rgba(255,255,255,.78));
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}

.testimonial-avatar svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  background: #fff;
}

.testimonial-meta strong {
  display: block;
  margin-bottom: 2px;
}

.testimonial-meta span {
  color: rgba(255,255,255,.82);
}


/* v24 - Latinoamérica vision section */
.vision-v24 {
  padding-top: 0;
}

.vision24-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .95fr 1.18fr .72fr .7fr;
  gap: 30px;
  align-items: center;
  padding: 34px 38px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 45% 50%, rgba(25,209,209,.18), transparent 18%),
    linear-gradient(90deg, #031427 0%, #04203b 22%, #08324c 52%, #06243d 76%, #031427 100%);
  border: 1px solid rgba(159, 230, 239, .16);
  box-shadow: 0 22px 60px rgba(4, 23, 42, .18);
}

.vision24-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: .16;
  pointer-events: none;
}

.vision24-copy,
.vision24-map,
.vision24-presence,
.vision24-stats {
  position: relative;
  z-index: 2;
}

.vision24-copy h2 {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  margin-bottom: 14px;
}

.vision24-copy p {
  color: rgba(255,255,255,.82);
  max-width: 390px;
}

.vision24-map {
  min-height: 285px;
  display: grid;
  place-items: center;
}

.vision24-map svg {
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(25,209,209,.12));
}

.vision24-continent {
  fill: url(#latamShape);
  opacity: .72;
  stroke: rgba(140,245,248,.38);
  stroke-width: 1.3;
}

.vision24-continent-soft {
  fill: none;
  opacity: .24;
}

.vision24-mexico {
  fill: url(#latamShape);
  opacity: .68;
  stroke: rgba(140,245,248,.32);
  stroke-width: 1.1;
}

.vision24-central {
  fill: none;
  stroke: rgba(140,245,248,.5);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.vision24-orbit {
  fill: none;
  stroke: rgba(117,226,232,.16);
  stroke-width: 1.1;
  stroke-dasharray: 4 8;
}

.vision24-network {
  fill: none;
  stroke: rgba(117,226,232,.34);
  stroke-width: 1.3;
  stroke-dasharray: 5 7;
}

.vision24-node {
  fill: #72f1f1;
  stroke: rgba(255,255,255,.82);
  stroke-width: 1.2;
}

.vision24-node-hot {
  fill: #ffb04a;
  filter: drop-shadow(0 0 10px rgba(255,176,74,.7));
}

.vision24-presence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.vision24-country {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
}

.vision24-country .flag {
  flex: 0 0 auto;
  width: 22px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}

.flag-pe { background: linear-gradient(90deg, #d91023 0 33.33%, #ffffff 33.33% 66.66%, #d91023 66.66% 100%); }
.flag-mx { background: linear-gradient(90deg, #0a8f52 0 33.33%, #ffffff 33.33% 66.66%, #d52b1e 66.66% 100%); }
.flag-co { background: linear-gradient(180deg, #f7d117 0 50%, #0038a8 50% 75%, #ce1126 75% 100%); }
.flag-cl {
  background:
    linear-gradient(180deg, #ffffff 0 50%, #d52b1e 50% 100%),
    linear-gradient(90deg, #0039a6 0 38%, transparent 38% 100%);
  background-blend-mode: normal;
}
.flag-ar { background: linear-gradient(180deg, #6ccff6 0 33.33%, #ffffff 33.33% 66.66%, #6ccff6 66.66% 100%); }
.flag-br {
  background:
    radial-gradient(circle at 50% 50%, #1f4aa8 0 18%, transparent 19%),
    linear-gradient(135deg, transparent 38%, #f7cf2d 38% 62%, transparent 62%),
    #1f8f48;
}

.vision24-country strong {
  color: #fff;
  font-size: .98rem;
}

.vision24-stats {
  display: grid;
  gap: 14px;
  padding-left: 26px;
  border-left: 1px solid rgba(25,209,209,.22);
}

.vision24-stats div {
  padding: 14px 14px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.11);
}

.vision24-stats strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.vision24-stats strong::before {
  content: "+";
  margin-right: 8px;
  color: var(--color-teal-400);
  font-weight: 800;
}

.vision24-stats span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.55);
  font-size: .78rem;
}


/* v27 - Real Latam map image asset */
.vision24-map {
  min-height: 300px;
  background-image: url("../images/home/vision-latam-map.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: drop-shadow(0 0 24px rgba(25,209,209,.18));
}

.vision24-map svg {
  display: none;
}


/* v29 - Latam map as full-width background */
.vision24-card {
  isolation: isolate;
}

.vision24-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg,
      rgba(3, 20, 39, .96) 0%,
      rgba(3, 20, 39, .90) 16%,
      rgba(3, 20, 39, .58) 30%,
      rgba(3, 20, 39, .10) 48%,
      rgba(3, 20, 39, .08) 60%,
      rgba(3, 20, 39, .46) 78%,
      rgba(3, 20, 39, .84) 90%,
      rgba(3, 20, 39, .96) 100%),
    url("../images/home/vision-latam-map.webp");
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, cover;
  background-position: center center, center center;
  opacity: .96;
  mix-blend-mode: screen;
}

.vision24-map-spacer {
  min-height: 290px;
  background-image: none !important;
  filter: none !important;
  z-index: 2;
}

.vision24-map-spacer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
}

.vision24-copy,
.vision24-presence,
.vision24-stats {
  z-index: 3;
}



/* v30 - Responsive vision backgrounds, generated per breakpoint */
.vision24-card::after {
  background-image: url("../images/home/vision-latam-bg-desktop.webp") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.vision24-map-spacer {
  min-height: 290px !important;
}


/* v31 - Final CTA section */
.cta-final-v31 {
  padding: 18px 0px 72px 0px;
}

.cta31-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 28px 44px;
  align-items: center;
  padding: 34px 38px 26px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 50%, rgba(25, 209, 209, .22), transparent 30%),
    radial-gradient(circle at 78% 32%, rgba(255, 139, 42, .10), transparent 28%),
    linear-gradient(115deg, #078984 0%, #087875 35%, #073047 72%, #061a30 100%);
  border: 1px solid rgba(159, 230, 239, .18);
  box-shadow: 0 22px 64px rgba(4, 23, 42, .16);
}

.cta31-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .16;
  pointer-events: none;
}

.cta31-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 430px;
  height: 280px;
  background:
    radial-gradient(circle at 28% 30%, rgba(25,209,209,.24), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,0));
  transform: rotate(-8deg);
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.cta31-content,
.cta31-actions,
.cta31-points {
  position: relative;
  z-index: 2;
}

.cta31-content {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.cta31-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 16px 34px rgba(0,0,0,.16);
}

.cta31-icon svg,
.cta31-btn svg,
.cta31-points svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta31-icon svg {
  width: 34px;
  height: 34px;
}

.cta31-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cta31-copy h2 {
  max-width: 760px;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(2rem, 3.9vw, 3.45rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.cta31-copy p {
  max-width: 780px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 1.06rem;
}

.cta31-actions {
  display: grid;
  gap: 12px;
  justify-self: end;
  width: min(100%, 330px);
}

.cta31-btn {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  border-radius: 14px;
  font-size: 1rem;
}

.cta31-btn svg {
  width: 20px;
  height: 20px;
}

.cta31-btn-primary {
  color: var(--color-teal-700);
  background: #fff;
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}

.cta31-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0,0,0,.22);
}

.cta31-btn-secondary {
  color: #fff;
  background: rgba(6, 26, 48, .24);
  border: 1px solid rgba(255,255,255,.42);
  backdrop-filter: blur(8px);
}

.cta31-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.62);
  background: rgba(6, 26, 48, .36);
}

.cta31-points {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.cta31-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.80);
  font-size: .9rem;
  font-weight: 800;
}

.cta31-points svg {
  width: 18px;
  height: 18px;
  color: var(--color-teal-300);
}


/* v32 - CTA final polish */
.cta31-card {
  width: min(100% - 48px, 1480px);
  max-width: none;
  margin-inline: auto;
}

.cta31-icon {
  border-radius: 50%;
}

.cta31-btn-primary {
  color: var(--color-teal-600);
}

.cta31-btn-primary span,
.cta31-btn-primary svg {
  color: var(--color-teal-600);
}


/* v34 - Footer redesign */
.footer-v34 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(25,209,209,.13), transparent 26%),
    radial-gradient(circle at 85% 5%, rgba(255,122,26,.08), transparent 22%),
    linear-gradient(180deg, #05172a 0%, #03111f 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-v34::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: .22;
  pointer-events: none;
}

.footer34-grid,
.footer34-contact-strip,
.footer34-bottom {
  position: relative;
  z-index: 2;
}

.footer34-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.05fr) minmax(0, 2.95fr);
  gap: 52px;
  padding: 54px 0 28px;
}

.footer34-brand-col p {
  max-width: 300px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .96rem;
}

.footer34-socials {
  margin-top: 20px;
}

.footer34-socials a {
  width: 34px;
  height: 34px;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.16);
}

.footer34-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer34-socials a:hover {
  color: var(--color-teal-400);
  border-color: rgba(25,209,209,.38);
  background: rgba(25,209,209,.10);
}

.footer34-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
}

.footer34-nav h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
}

.footer34-nav a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: rgba(255,255,255,.62);
  font-size: .88rem;
  line-height: 1.3;
}

.footer34-nav a:hover {
  color: var(--color-teal-400);
}

.footer34-contact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.footer34-contact-strip div {
  min-width: 0;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,.10);
}

.footer34-contact-strip div:last-child {
  border-right: 0;
}

.footer34-contact-strip span,
.footer34-lang label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.48);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer34-contact-strip strong {
  display: block;
  color: rgba(255,255,255,.86);
  font-size: .92rem;
  overflow-wrap: anywhere;
}

.footer34-lang select {
  width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  color: #fff;
  background: rgba(3,17,31,.38);
  border: 1px solid rgba(255,255,255,.16);
  outline: none;
}

.footer34-bottom {
  align-items: center;
}

.footer34-bottom p {
  margin: 0;
}

.footer34-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer34-bottom a {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: .86rem;
}


/* v35 - Multicurrency controls */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.currency-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 6px 8px 6px 12px;
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.currency-switcher label {
  color: rgba(255,255,255,.64);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.currency-switcher select {
  min-height: 32px;
  max-width: 128px;
  padding: 6px 30px 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  outline: none;
  color: #fff;
  background-color: rgba(3,17,31,.72);
  font-weight: 900;
  cursor: pointer;
}

.currency-switcher select:focus {
  border-color: rgba(25,209,209,.62);
  box-shadow: 0 0 0 3px rgba(25,209,209,.14);
}

.currency-switcher-mobile {
  display: none;
}

.currency-note {
  display: block;
  margin-top: 4px;
  color: var(--color-slate-500);
  font-size: .78rem;
  font-weight: 700;
}


/* v36 - Región y moneda footer/results */
.footer-region-currency select,
.filters-card [data-region-currency-select] {
  width: 100%;
}

.footer-region-currency select {
  min-width: 220px;
}

.filters-card [data-region-currency-select] {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7e6eb;
  background: #fff;
  color: var(--color-navy);
  font-weight: 900;
}

/* Header currency removed in v36; keep header focused on conversion CTA. */
.header-actions {
  display: none !important;
}
