/* ── Tracklink Cotizar Landing ── */

.tlcl-landing {
  position: relative;
  font-family: 'Montserrat', 'Arial', sans-serif;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.tlcl-hero {
  display: flex;
  min-height: 720px;
}

.tlcl-hero-left {
  flex: 0 0 60%;
  max-width: 60%;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tlcl-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.tlcl-bg-layer.is-visible {
  opacity: 1;
}

.tlcl-bullets-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.tlcl-bullets-layer.is-visible {
  opacity: 1;
}
.tlcl-bullets-card {
  background: rgba(30, 47, 65, 0.78);
  border-radius: 16px;
  padding: 24px 30px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 90%;
}
.tlcl-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 130px;
  text-align: center;
}
.tlcl-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.tlcl-feature-icon svg {
  width: 22px;
  height: 22px;
}
.tlcl-feature-text {
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
}

.tlcl-hero-right {
  flex: 0 0 40%;
  max-width: 40%;
  background: #1e2f41;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 40px;
}
.tlcl-titulo {
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 24px;
}

.tlcl-plan-cta {
  color: #40c0f0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.tlcl-planes {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: nowrap;
}
.tlcl-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 70px;
  cursor: pointer;
  background: none;
  border: none;
}
.tlcl-plan-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.tlcl-plan.is-active .tlcl-plan-icon {
  background: #40c0f0;
  border-color: #40c0f0;
  box-shadow: 0 0 0 4px rgba(64, 192, 240, 0.3);
}
.tlcl-plan-icon svg {
  width: 21px;
  height: 21px;
  stroke: #fff;
}
.tlcl-plan.is-active .tlcl-plan-icon svg {
  stroke: #1e2f41;
}
.tlcl-plan-label {
  color: #d7deea;
  font-size: 9.5px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}
.tlcl-plan.is-active .tlcl-plan-label {
  color: #fff;
}
.tlcl-plan:focus-visible {
  outline: 2px solid #40c0f0;
  outline-offset: 3px;
  border-radius: 8px;
}

.tlcl-form-wrap {
  width: 100%;
}
.tlcl-form-wrap .tracklink-cotizar-container {
  max-width: 100% !important;
  padding: 0 !important;
}

.tlcl-form-wrap .tracklink-form-group:has(#tlc-producto-select) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  margin: 0;
}
.tlcl-hide-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  .tlcl-hero {
    flex-direction: column;
    min-height: 0;
  }
  .tlcl-hero-left {
    position: sticky;
    top: 0;
    height: 230px;
    width: 100%;
    max-width: 100%;
    flex: none;
    z-index: 1;
  }
  .tlcl-hero-right {
    position: relative;
    z-index: 2;
    flex: none;
    max-width: 100%;
    padding: 28px 20px 36px;
  }
  .tlcl-bullets-layer {
    padding-top: 20px;
  }
  .tlcl-bullets-card {
    padding: 14px 16px;
    gap: 12px;
    max-width: 95%;
  }
  .tlcl-feature-item {
    width: 74px;
    gap: 6px;
  }
  .tlcl-feature-icon {
    width: 34px;
    height: 34px;
  }
  .tlcl-feature-icon svg {
    width: 16px;
    height: 16px;
  }
  .tlcl-feature-text {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .tlcl-hero-left {
    height: 190px;
  }
  .tlcl-planes {
    gap: 8px;
  }
  .tlcl-plan {
    max-width: 60px;
  }
  .tlcl-plan-icon {
    width: 40px;
    height: 40px;
  }
}