/* Clic2Leads Meta Lead Form - Mobile First Tentudepto.cl */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Bebas+Neue&family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

.c2l-meta-lead-wrap {
  --c2l-teal: #4ec3c4;
  --c2l-teal-dark: #35a8a9;
  --c2l-teal-glow: rgba(78, 195, 196, 0.22);
  --c2l-teal-mid: rgba(78, 195, 196, 0.08);
  --c2l-black: #0a0a0a;
  --c2l-dark: #111213;
  --c2l-card: #161819;
  --c2l-card2: #1c1e1f;
  --c2l-border: rgba(78, 195, 196, 0.18);
  --c2l-border-strong: rgba(78, 195, 196, 0.42);
  --c2l-border-subtle: rgba(255, 255, 255, 0.09);
  --c2l-white: #f5f5f3;
  --c2l-muted: #9ba1a6;
  --c2l-muted-2: #6f777d;
  --c2l-danger: #ff6b6b;
  --c2l-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(18px, env(safe-area-inset-top)) 14px max(18px, env(safe-area-inset-bottom));
  color: var(--c2l-white);
  font-family: var(--c2l-font);
  background:
    radial-gradient(circle at top right, rgba(78, 195, 196, 0.12), transparent 34%),
    linear-gradient(135deg, #111213 0%, #0a0a0a 100%);
}

.c2l-meta-lead-wrap .c2l-meta-lead-form {
  width: 100%;
  max-width: 920px;
}

body.elementor-page .c2l-meta-lead-wrap,
body.elementor-default .c2l-meta-lead-wrap {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.elementor-page .elementor-widget-shortcode,
.elementor-page .elementor-shortcode,
.elementor-page .elementor-widget-container {
  width: 100%;
}

.c2l-meta-lead-form,
.c2l-meta-lead-form * {
  box-sizing: border-box;
}

.c2l-card {
  width: 100%;
  max-width: 920px;
  min-height: min(760px, calc(100vh - 36px));
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(28, 30, 31, 0.985), rgba(14, 16, 17, 0.985));
  border: 1px solid var(--c2l-border);
  border-radius: 24px;
  padding: 22px 18px 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.c2l-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c2l-teal), #8debec, var(--c2l-teal-dark));
  z-index: 1;
}

.c2l-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -125px;
  top: -110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(78, 195, 196, 0.14), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.c2l-form-head,
.c2l-progress,
.c2l-alert,
.c2l-step {
  position: relative;
  z-index: 2;
}

.c2l-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.c2l-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--c2l-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  line-height: 1;
}

.c2l-brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--c2l-teal);
  box-shadow: 0 0 0 6px var(--c2l-teal-mid);
}

.c2l-step-pill {
  color: var(--c2l-muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.c2l-progress {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  overflow: hidden;
  margin-bottom: 24px;
}

.c2l-progress-bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--c2l-teal), #8debec);
  box-shadow: 0 0 26px rgba(78,195,196,.45);
  transition: width .28s ease;
}

.c2l-alert {
  margin: 0 0 14px;
  padding: 11px 12px;
  border-radius: 13px;
  background: rgba(255,107,107,.10);
  border: 1px solid rgba(255,107,107,.24);
  color: #ffd1d1;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.c2l-alert[hidden] {
  display: none !important;
}

.c2l-step {
  display: none;
  animation: c2lFade .22s ease;
}

.c2l-step.is-active {
  display: flex;
  flex-direction: column;
  flex: 1;
}

@keyframes c2lFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.c2l-question-block {
  margin-bottom: 22px;
}

.c2l-mini-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 7px;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--c2l-teal-mid);
  border: 1px solid rgba(78,195,196,.16);
  color: var(--c2l-teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}

.c2l-question-block h3 {
  margin: 0 0 10px;
  color: var(--c2l-white);
  font-size: clamp(25px, 7vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.c2l-question-help {
  margin: 0 0 22px;
  color: var(--c2l-muted);
  font-size: 15px;
  line-height: 1.5;
}

.c2l-radio-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.c2l-radio-grid:not(.c2l-radio-grid-vertical) {
  grid-template-columns: 1fr;
}

.c2l-radio-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  padding: 16px 15px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--c2l-border-subtle);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.c2l-radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.c2l-radio-card > span {
  display: grid;
  gap: 4px;
  padding-right: 38px;
}

.c2l-radio-card strong {
  color: var(--c2l-white);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.c2l-radio-card small {
  color: var(--c2l-muted-2);
  font-size: 13px;
  line-height: 1.35;
}

.c2l-radio-card::after {
  content: "✓";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 13px;
  font-weight: 900;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.c2l-radio-card.is-selected {
  border-color: var(--c2l-border-strong);
  background: rgba(78,195,196,.11);
  box-shadow: 0 0 0 4px rgba(78,195,196,.08), 0 12px 38px rgba(0,0,0,.22);
}

.c2l-radio-card.is-selected::after {
  background: var(--c2l-teal);
  border-color: var(--c2l-teal);
  color: var(--c2l-black);
}

.c2l-field {
  margin-bottom: 14px;
}

.c2l-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--c2l-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.c2l-field input,
.c2l-field select,
.c2l-field textarea {
  width: 100%;
  min-height: 56px;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--c2l-border-subtle);
  border-radius: 15px;
  padding: 14px 15px;
  color: var(--c2l-white);
  font-family: var(--c2l-font);
  font-size: 16px;
  font-weight: 600;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.c2l-field textarea {
  min-height: 110px;
  resize: vertical;
}

.c2l-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.c2l-field select option {
  background: var(--c2l-card);
  color: var(--c2l-white);
}

.c2l-field input::placeholder,
.c2l-field textarea::placeholder {
  color: rgba(245,245,243,.38);
  font-weight: 500;
}

.c2l-field input:focus,
.c2l-field select:focus,
.c2l-field textarea:focus {
  border-color: var(--c2l-teal);
  background: rgba(255,255,255,.075);
  box-shadow: 0 0 0 4px var(--c2l-teal-glow);
}

.c2l-field small {
  display: block;
  margin-top: 8px;
  color: var(--c2l-muted-2);
  font-size: 12px;
  line-height: 1.4;
}

.c2l-review-box {
  margin: 20px 0 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(78,195,196,.09);
  border: 1px solid rgba(78,195,196,.22);
}

.c2l-review-label {
  display: block;
  margin: 0 0 6px;
  color: var(--c2l-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.c2l-phone-preview {
  display: block;
  margin: 0;
  color: var(--c2l-white);
  font-size: 25px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.c2l-review-box p {
  margin: 10px 0 0;
  color: var(--c2l-muted);
  font-size: 13px;
  line-height: 1.45;
}

.c2l-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 16px 0 22px;
  cursor: pointer;
}

.c2l-check input {
  width: 21px;
  height: 21px;
  accent-color: var(--c2l-teal);
  margin-top: 1px;
  flex: 0 0 auto;
}

.c2l-check span {
  color: #d9dee0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.c2l-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.c2l-btn {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 15px 18px;
  border: 0;
  font-family: var(--c2l-font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease;
}

.c2l-btn-primary {
  background: linear-gradient(135deg, var(--c2l-teal), #8debec);
  color: var(--c2l-black) !important;
  box-shadow: 0 16px 36px rgba(78,195,196,.24);
}

.c2l-btn-secondary {
  background: rgba(255,255,255,.055);
  color: var(--c2l-white) !important;
  border: 1px solid var(--c2l-border-subtle);
  order: 2;
}

.c2l-btn:active {
  transform: scale(.99);
}

.c2l-btn[disabled] {
  opacity: .44;
  cursor: not-allowed;
  box-shadow: none;
}

@media (min-width: 680px) {
  .c2l-meta-lead-wrap {
    padding: 28px;
  }

  .c2l-card {
    min-height: 760px;
  }
}

@media (max-width: 380px) {
  .c2l-card { padding: 20px 15px 16px; border-radius: 21px; }
  .c2l-question-block h3 { font-size: 25px; }
  .c2l-radio-card { min-height: 64px; padding: 14px; }
  .c2l-btn { min-height: 54px; }
}

/* =========================================================
   FORMULARIO — VERSIÓN ESCRITORIO
   Mantiene mobile-first y expande experiencia en desktop.
========================================================= */

@media (min-width: 900px) {
  .c2l-meta-lead-wrap {
    max-width: 980px;
    padding: 46px 28px;
  }

  .c2l-card {
    min-height: 560px;
    padding: 34px;
    border-radius: 30px;
    background:
      radial-gradient(circle at 88% 0%, rgba(78,195,196,.16), transparent 33%),
      radial-gradient(circle at 0% 100%, rgba(78,195,196,.08), transparent 35%),
      linear-gradient(180deg, rgba(28, 30, 31, 0.985), rgba(12, 14, 15, 0.985));
  }

  .c2l-card::after {
    width: 360px;
    height: 360px;
    right: -150px;
    top: -150px;
  }

  .c2l-form-head {
    margin-bottom: 22px;
  }

  .c2l-brand {
    font-size: 13px;
  }

  .c2l-step-pill {
    font-size: 13px;
  }

  .c2l-progress {
    height: 8px;
    margin-bottom: 32px;
  }

  .c2l-step.is-active {
    min-height: 405px;
  }

  .c2l-question-block h3 {
    max-width: 760px;
    font-size: clamp(34px, 4.8vw, 52px);
    line-height: .98;
    letter-spacing: -0.06em;
  }

  .c2l-question-help {
    max-width: 620px;
    font-size: 16px;
  }

  .c2l-mini-label {
    margin-bottom: 18px;
  }

  .c2l-radio-grid,
  .c2l-radio-grid.c2l-radio-grid-vertical,
  .c2l-radio-grid:not(.c2l-radio-grid-vertical) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .c2l-radio-card {
    min-height: 118px;
    align-items: flex-start;
    padding: 22px 20px;
    border-radius: 20px;
  }

  .c2l-radio-card strong {
    font-size: 19px;
  }

  .c2l-radio-card small {
    font-size: 14px;
  }

  .c2l-field input,
  .c2l-field select,
  .c2l-field textarea {
    min-height: 58px;
  }

  .c2l-actions {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    padding-top: 18px;
  }

  .c2l-actions .c2l-btn-secondary {
    order: 1;
  }

  .c2l-actions .c2l-btn-primary,
  .c2l-actions .c2l-submit-btn {
    order: 2;
  }

  .c2l-actions .c2l-btn-primary:only-child {
    grid-column: 2;
  }

  .c2l-step-contact.is-active {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(390px, 1fr);
    gap: 0 34px;
    align-items: start;
  }

  .c2l-step-contact .c2l-contact-intro {
    grid-column: 1;
    grid-row: 1 / 5;
    align-self: stretch;
    margin: 0;
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(78,195,196,.16);
    background:
      radial-gradient(circle at 100% 0%, rgba(78,195,196,.12), transparent 38%),
      rgba(255,255,255,.045);
  }

  .c2l-step-contact .c2l-field,
  .c2l-step-contact .c2l-actions {
    grid-column: 2;
  }

  .c2l-step-contact .c2l-actions {
    max-width: none;
  }

  .c2l-step-verification.is-active {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(390px, 1fr);
    gap: 0 34px;
    align-items: start;
  }

  .c2l-step-verification .c2l-verify-intro {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: stretch;
    margin: 0;
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(78,195,196,.16);
    background:
      radial-gradient(circle at 100% 0%, rgba(78,195,196,.12), transparent 38%),
      rgba(255,255,255,.045);
  }

  .c2l-step-verification .c2l-review-box,
  .c2l-step-verification .c2l-check,
  .c2l-step-verification .c2l-actions {
    grid-column: 2;
  }

  .c2l-step-verification .c2l-review-box {
    margin-top: 0;
  }

  .c2l-step-verification .c2l-actions {
    max-width: none;
  }

  .c2l-step-custom.is-active .c2l-field {
    max-width: 680px;
  }
}



/* =========================================================
   PÁGINA DE GRACIAS PERFORMANCE — TENTUDEPTO.CL
   Inspirada en la estética del sitio y del CSS de referencia.
========================================================= */

.c2l-ty-wrap,
.c2l-ty-wrap * {
  box-sizing: border-box;
}

.c2l-ty-wrap {
  --ty-teal: #4ec3c4;
  --ty-teal-dark: #35a8a9;
  --ty-teal-glow: rgba(78, 195, 196, 0.22);
  --ty-black: #0a0a0a;
  --ty-dark: #111213;
  --ty-card: #161819;
  --ty-card2: #1c1e1f;
  --ty-border: rgba(78, 195, 196, 0.18);
  --ty-border-subtle: rgba(255, 255, 255, 0.08);
  --ty-white: #f5f5f3;
  --ty-muted: #b5bfc4;
  width: 100%;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 28px);
  color: var(--ty-white);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(78, 195, 196, 0.12), transparent 34%),
    linear-gradient(135deg, #111213 0%, #0a0a0a 100%);
}

.c2l-ty-card {
  position: relative;
  width: min(100%, 1240px);
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--ty-border);
  background:
    linear-gradient(rgba(7, 14, 24, 0.48), rgba(7, 14, 24, 0.72)),
    radial-gradient(circle at 86% 0%, rgba(47, 89, 175, 0.24), transparent 28%),
    radial-gradient(circle at 15% 0%, rgba(78, 195, 196, 0.08), transparent 24%),
    linear-gradient(125deg, rgba(17,18,19,.98), rgba(9,10,12,.98));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  isolation: isolate;
}

.c2l-ty-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .22;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.25));
  z-index: 0;
}

.c2l-ty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 0%, rgba(78,195,196,.10), transparent 16%),
    radial-gradient(circle at 100% 0%, rgba(26,74,170,.16), transparent 20%),
    linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.22));
  z-index: 0;
}

.c2l-ty-hero,
.c2l-ty-steps,
.c2l-ty-note {
  position: relative;
  z-index: 1;
}

.c2l-ty-hero {
  padding: clamp(36px, 5vw, 64px) clamp(20px, 4.5vw, 56px) clamp(22px, 2vw, 24px);
  text-align: left;
}

.c2l-ty-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 28px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(78, 195, 196, 0.16);
  background: rgba(78, 195, 196, 0.08);
  color: var(--ty-teal);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

.c2l-ty-badge::before {
  content: "•";
  font-size: 16px;
  line-height: 1;
}

.c2l-ty-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--ty-white);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.c2l-ty-hero p {
  max-width: 760px;
  margin: 0;
  color: #d7dcde;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
}

.c2l-ty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.c2l-ty-btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 16px 26px;
  text-decoration: none !important;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .16s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
}

.c2l-ty-btn:hover {
  transform: translateY(-1px);
}

.c2l-ty-btn-primary {
  color: var(--ty-black) !important;
  background: linear-gradient(135deg, var(--ty-teal), #76dfe0);
  box-shadow: 0 16px 36px rgba(78,195,196,.22);
}

.c2l-ty-btn-secondary {
  color: var(--ty-white) !important;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--ty-border-subtle);
}

.c2l-ty-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 4.5vw, 56px) 18px;
}

.c2l-ty-steps article {
  min-height: 198px;
  border-radius: 22px;
  border: 1px solid var(--ty-border-subtle);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  padding: 24px 24px 22px;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
}

.c2l-ty-steps strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ty-black);
  background: linear-gradient(135deg, var(--ty-teal), #76dfe0);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}

.c2l-ty-steps h2,
.c2l-ty-note h2 {
  margin: 0 0 10px;
  color: var(--ty-white);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.c2l-ty-steps p,
.c2l-ty-note p {
  color: #d7dcde;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.c2l-ty-note {
  margin: 0 clamp(20px, 4.5vw, 56px) clamp(20px, 4vw, 42px);
  padding: 26px 24px;
  border-radius: 22px;
  border: 1px solid var(--ty-border);
  background: linear-gradient(180deg, rgba(78,195,196,.06), rgba(255,255,255,.03));
}

@media (max-width: 900px) {
  .c2l-ty-steps {
    grid-template-columns: 1fr;
  }

  .c2l-ty-steps article {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .c2l-ty-wrap {
    align-items: start;
    padding: 10px;
  }

  .c2l-ty-card {
    border-radius: 24px;
  }

  .c2l-ty-card::before {
    background-size: 32px 32px;
    opacity: .18;
  }

  .c2l-ty-hero {
    padding: 26px 16px 18px;
  }

  .c2l-ty-badge {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.10em;
    padding: 10px 14px;
  }

  .c2l-ty-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.5vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    margin-bottom: 14px;
  }

  .c2l-ty-hero p {
    font-size: 15px;
  }

  .c2l-ty-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }

  .c2l-ty-btn {
    width: 100%;
    min-height: 54px;
    font-size: 13px;
  }

  .c2l-ty-steps {
    padding: 0 16px 16px;
    gap: 12px;
  }

  .c2l-ty-steps article {
    padding: 18px;
    border-radius: 18px;
  }

  .c2l-ty-note {
    margin: 0 16px 16px;
    padding: 20px 18px;
    border-radius: 18px;
  }
}



@media (min-width: 1024px) {
  .c2l-meta-lead-wrap {
    padding: 24px;
  }

  .c2l-card {
    min-height: 640px;
  }
}


.c2l-autofill-trap {
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.c2l-autofill-trap input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
}

.c2l-hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* =========================================================
   C2L FULL-BLEED LANDING MODE — SUBDOMINIO / ELEMENTOR CANVAS
   Elimina bordes blancos del theme y deja el formulario a pantalla completa.
========================================================= */

html:has(.c2l-meta-lead-wrap),
body:has(.c2l-meta-lead-wrap) {
  margin: 0 !important;
  padding: 0 !important;
  background: #05070a !important;
  min-height: 100%;
}

body:has(.c2l-meta-lead-wrap) {
  overflow-x: hidden !important;
}

body:has(.c2l-meta-lead-wrap) .site,
body:has(.c2l-meta-lead-wrap) .site-content,
body:has(.c2l-meta-lead-wrap) .content-area,
body:has(.c2l-meta-lead-wrap) .entry-content,
body:has(.c2l-meta-lead-wrap) main,
body:has(.c2l-meta-lead-wrap) article,
body:has(.c2l-meta-lead-wrap) .elementor,
body:has(.c2l-meta-lead-wrap) .elementor-section,
body:has(.c2l-meta-lead-wrap) .elementor-container,
body:has(.c2l-meta-lead-wrap) .elementor-column,
body:has(.c2l-meta-lead-wrap) .elementor-widget-wrap,
body:has(.c2l-meta-lead-wrap) .elementor-widget-shortcode,
body:has(.c2l-meta-lead-wrap) .elementor-widget-container {
  background: transparent !important;
  box-shadow: none !important;
}

body:has(.c2l-meta-lead-wrap) .entry-content,
body:has(.c2l-meta-lead-wrap) .elementor-widget-container,
body:has(.c2l-meta-lead-wrap) .elementor-shortcode {
  margin: 0 !important;
  padding: 0 !important;
}

.c2l-meta-lead-wrap {
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  min-height: 100svh;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: clamp(16px, 4vw, 48px) 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(123, 224, 232, 0.18), transparent 28%),
    radial-gradient(circle at 12% 12%, rgba(123, 224, 232, 0.08), transparent 20%),
    linear-gradient(135deg, #05070a 0%, #0b1116 45%, #071017 100%) !important;
  box-sizing: border-box;
  overflow: hidden;
}

.c2l-meta-lead-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123, 224, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 224, 232, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: .9;
  z-index: 0;
}

.c2l-meta-lead-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.06), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.28));
  pointer-events: none;
  z-index: 0;
}

.c2l-meta-lead-wrap .c2l-meta-lead-form,
.c2l-meta-lead-wrap .c2l-card {
  position: relative;
  z-index: 2;
}

.c2l-meta-lead-wrap .c2l-meta-lead-form {
  width: min(100%, 1180px) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

.c2l-meta-lead-wrap .c2l-card {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  border-radius: clamp(24px, 2.3vw, 34px);
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

/* Compatibilidad para browsers sin soporte :has(). Se activa si el theme no aplica el reset anterior. */
.c2l-full-bleed-page,
.c2l-full-bleed-page body {
  background: #05070a !important;
}

@media (max-width: 767px) {
  .c2l-meta-lead-wrap {
    min-height: 100svh;
    padding: 12px !important;
    align-items: stretch;
  }

  .c2l-meta-lead-wrap .c2l-card {
    border-radius: 22px;
  }
}

