/* Landings marketing — vanilla, sin fuentes externas */
:root {
  --bg-cream: #FAF6EF;
  --bg-mint: #C9E4D2;
  --bg-mint-light: #E5F1EA;
  --coral: #F4A28C;
  --coral-soft: #F8C2B0;
  --yellow-soft: #F5D982;
  --ink: #1F2937;
  --ink-soft: #4B5563;
  --orange-brand: #F25C2B;
  --navy: #1B2640;
  --white: #FFFFFF;
  --line: #E5E7EB;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

.lp-body {
  --lp-nav-height: 66px;
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg-cream);
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

.lp-skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.lp-skip:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  z-index: 100;
}

.lp-container { width: min(1160px, 100% - 32px); margin-inline: auto; }
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}
.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  max-width: 1160px;
  height: var(--lp-nav-height);
  padding: 0 2rem;
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 10px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.lp-brand .brand-wordmark-img {
  display: block;
  width: 173px;
  height: auto;
  max-width: none;
  object-fit: contain;
}
.lp-nav-links {
  display: flex;
  gap: 2.25rem;
}
.lp-nav-link {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.lp-nav-link:hover { color: var(--ink); }
.lp-nav-right,
.lp-nav-actions {
  display: flex;
  align-items: center;
}
.lp-nav-right { gap: 1.25rem; }
.lp-nav-actions { gap: 1.25rem; }
.lp-btn-login {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.lp-btn-login:hover { color: var(--orange-brand); }
.lp-btn-cta {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--orange-brand);
  border-radius: 8px;
  background: var(--orange-brand);
  color: #FFFFFF !important;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.lp-btn-cta:hover {
  background: #D94A2E;
  border-color: #D94A2E;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .lp-nav-links,
  .lp-nav-link--support {
    display: none;
  }
}

@media (max-width: 768px) {
  .lp-body {
    --lp-nav-height: 58px;
  }

  .lp-nav-right {
    gap: 0.75rem;
    margin-left: auto;
  }

  .lp-nav-actions {
    gap: 0.75rem;
  }
}

@media (max-width: 560px) {
  .lp-body {
    --lp-nav-height: 54px;
  }

  .lp-header__inner {
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .lp-brand .brand-wordmark-img {
    width: 154px;
  }

  .lp-btn-login {
    font-size: 0.82rem;
  }

  .lp-btn-cta {
    padding: 0.52rem 0.85rem;
    font-size: 0.82rem;
  }
}

.lp-main { padding: calc(var(--lp-nav-height) + 32px) 0 64px; }

.lp-kicker { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); margin: 0 0 8px; }
.lp-h1 { font-size: clamp(1.75rem, 4vw, 2.35rem); line-height: 1.15; margin: 0 0 12px; color: var(--navy); }
.lp-h2 { font-size: 1.35rem; margin: 0 0 16px; color: var(--navy); }
.lp-h3 { font-size: 1.05rem; margin: 0 0 6px; }
.lp-lead { font-size: 1.1rem; color: var(--ink-soft); margin: 0 0 16px; max-width: 62ch; }
.lp-strong { margin: 0 0 20px; max-width: 65ch; }

.lp-hero__grid {
  display: grid;
  gap: 28px;
  align-items: start;
}
@media (min-width: 900px) {
  .lp-hero__grid { grid-template-columns: 1fr 280px; }
}
.lp-hero__art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lp-hero__doodle--cat { opacity: 0.95; }

.lp-doodle { max-width: 100%; height: auto; }
.lp-doodle--sm { width: 56px; height: auto; }

.lp-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(31, 41, 55, 0.06);
}
.lp-form__row { margin-bottom: 12px; }
.lp-form__row--split {
  display: grid;
  gap: 12px;
}
@media (min-width: 560px) {
  .lp-form__row--split { grid-template-columns: 1fr 1fr; }
}
.lp-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.lp-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: var(--white);
}
.lp-input:focus { outline: 2px solid var(--coral-soft); border-color: var(--coral); }
.lp-input--area { resize: vertical; min-height: 72px; }
.lp-honey {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
}
.lp-form__err { color: var(--orange-brand); font-size: 0.9rem; margin: 0 0 8px; }

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  background: var(--coral);
  color: var(--ink);
  font-weight: 700;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.12s ease;
}
.lp-btn:hover { transform: translateY(-1px); background: var(--coral-soft); }
.lp-btn--ghost {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.lp-btn--ghost:hover { background: var(--navy); color: var(--white); }

.lp-section { margin-top: 48px; }
.lp-section--muted {
  background: var(--bg-mint-light);
  border: 1px solid var(--bg-mint);
  border-radius: 16px;
  padding: 28px 22px;
}
.lp-section--mint {
  background: var(--bg-mint-light);
  border-radius: 16px;
  padding: 28px 22px;
  border: 1px solid var(--bg-mint);
}

.lp-prose { margin-top: 8px; }

.lp-steps, .lp-how {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.lp-steps li, .lp-how li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.lp-steps__icon, .lp-how__icon { flex: 0 0 auto; }

.lp-how { counter-reset: step; }
.lp-how li { flex-direction: row; }

.lp-quick-facts-wrap { margin-top: 40px; }
.lp-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.lp-quick-facts {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 6px 16px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}
.lp-quick-facts dt { font-weight: 600; color: var(--ink); margin: 0; }
.lp-quick-facts dd { margin: 0; }

.lp-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .lp-cards { grid-template-columns: repeat(3, 1fr); }
}
.lp-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: 0 4px 20px rgba(31, 41, 55, 0.06);
}
.lp-card__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--orange-brand);
}

.lp-quotes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
@media (min-width: 900px) {
  .lp-quotes { grid-template-columns: repeat(3, 1fr); }
}
.lp-quote blockquote {
  margin: 0;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 14px;
  font-size: 0.95rem;
}
.lp-quote footer { margin-top: 8px; font-size: 0.85rem; color: var(--ink-soft); }

.lp-logos-label { font-size: 0.85rem; color: var(--ink-soft); margin: 20px 0 8px; }
.lp-logos {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}

.lp-faq { margin: 0; }
.lp-faq__q {
  font-weight: 700;
  margin: 16px 0 6px;
  color: var(--navy);
}
.lp-faq__a { margin: 0 0 8px; color: var(--ink-soft); }

.lp-cta-final { text-align: left; }
@media (min-width: 640px) {
  .lp-cta-final { text-align: center; }
  .lp-cta-final .lp-lead { margin-inline: auto; }
}

.lp-footer {
  background: var(--navy);
  color: rgba(250, 246, 239, 0.75);
  padding: 32px 16px 40px;
  margin-top: 48px;
}
.lp-footer__grid {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.lp-footer a { color: rgba(250, 246, 239, 0.9); }
.lp-footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.lp-footer-logo .brand-wordmark-img {
  display: block;
  width: 203px;
  height: auto;
  object-fit: contain;
  margin-top: 0;
}
.lp-footer__legal { font-size: 0.85rem; opacity: 0.75; margin: 8px 0 0; }

.lp-gracias .lp-lead { max-width: 48ch; }
.lp-muted-link { color: var(--ink-soft); }

/* ============================================================
   CX LATAM flagship landing
   ============================================================ */
.lp-body--cx-latam {
  --coral: #F05638;
  --coral-soft: #FFF1EE;
  --ink: #1B1F2E;
  --ink-soft: #4A4F6B;
  --navy: #1B2640;
  --line: #E8EAF0;
  background:
    radial-gradient(circle at 8% 10%, rgba(240, 86, 56, 0.10), transparent 24rem),
    radial-gradient(circle at 92% 4%, rgba(201, 228, 210, 0.45), transparent 22rem),
    #FFFFFF;
}

.lp-body--cx-latam .lp-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(232, 234, 240, 0.82);
  box-shadow: 0 2px 24px rgba(27, 31, 46, 0.05);
}

.lp-body--cx-latam .lp-main {
  width: min(1160px, 100% - 32px);
  padding-top: calc(var(--lp-nav-height) + 32px);
}

.lp-body--cx-latam .lp-brand {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
}

.lp-cx {
  color: var(--ink);
}

.lp-cx-hero {
  display: grid;
  gap: 34px;
  align-items: center;
  min-height: 0;
  padding: 4px 0 12px;
}

@media (min-width: 980px) {
  .lp-cx-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  }
}

.lp-cx-kicker,
.lp-cx-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 14px;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(240, 86, 56, 0.18);
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-cx-title {
  max-width: 18ch;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.61rem, 3.45vw, 3.39rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.010em;
}

.lp-cx-subtitle {
  max-width: 58ch;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.lp-cx-proof {
  max-width: 62ch;
  margin: 0 0 24px;
  color: var(--ink);
  line-height: 1.7;
}

.lp-cx-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.lp-cx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.45rem;
  border: 2px solid var(--coral);
  border-radius: 10px;
  background: var(--coral);
  color: #FFFFFF;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(240, 86, 56, 0.22);
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.lp-cx-btn:hover {
  background: #D94A2E;
  border-color: #D94A2E;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(240, 86, 56, 0.26);
}

.lp-cx-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.lp-cx-link:hover {
  color: var(--coral);
}

.lp-cx-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-cx-metrics li {
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(27, 31, 46, 0.04);
}

.lp-cx-metrics strong,
.lp-cx-metrics span {
  display: block;
}

.lp-cx-metrics strong {
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: -0.010em;
}

.lp-cx-metrics span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.lp-cx-hero__visual {
  position: relative;
}

.lp-cx-hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 4% 0 4%;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 241, 238, 0.92), rgba(229, 241, 234, 0.92));
  transform: rotate(-2deg);
}

.lp-cx-hero__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 24px 48px rgba(27, 31, 46, 0.12));
}

.lp-cx-lead-grid {
  display: grid;
  gap: 26px;
  align-items: start;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, #FFFFFF, #F7F8FC);
  box-shadow: 0 24px 60px rgba(27, 31, 46, 0.08);
}

@media (min-width: 920px) {
  .lp-cx-lead-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(420px, 0.62fr);
    padding: 36px;
  }
}

.lp-cx-form-copy h2 {
  max-width: 13ch;
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.010em;
}

.lp-cx-form-copy p {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.lp-cx-form-card .lp-form {
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(27, 31, 46, 0.10);
}

.lp-cx-form-card .lp-btn {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  background: var(--coral);
  color: #FFFFFF;
}

.lp-cx-section {
  margin-top: 74px;
}

.lp-cx-section__head {
  max-width: 720px;
  margin-bottom: 28px;
}

.lp-cx-section__head h2,
.lp-cx-section--split h2,
.lp-cx-final h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.010em;
}

#lp-cx-flow-title {
  font-size: clamp(1.7rem, 3.4vw, 3.57rem);
  font-weight: 525;
}

#lp-cx-problem-title {
  font-size: clamp(1.7rem, 3.4vw, 3.57rem);
  font-weight: 600;
}

.lp-cx-section__head p,
.lp-cx-final p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.lp-cx-channel-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .lp-cx-channel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-cx-channel-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 18px 42px rgba(27, 31, 46, 0.06);
}

.lp-cx-channel-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #FFFFFF;
}

.lp-cx-channel-card div {
  padding: 18px 18px 20px;
}

.lp-cx-channel-card span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lp-cx-channel-card h3 {
  margin: 4px 0 8px;
  color: var(--ink);
  font-size: 1.2rem;
  letter-spacing: -0.010em;
}

.lp-cx-channel-card p {
  margin: 0;
  color: var(--ink-soft);
}

.lp-cx-section--split {
  display: grid;
  gap: 24px;
  align-items: start;
  padding: 34px;
  border-radius: 28px;
  background: var(--navy);
  color: #FFFFFF;
}

@media (min-width: 900px) {
  .lp-cx-section--split {
    grid-template-columns: 0.95fr 1fr;
    padding: 46px;
  }
}

.lp-cx-section--split h2 {
  color: #FFFFFF;
}

.lp-cx-problem-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-cx-problem-list li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
}

.lp-cx-problem-list strong {
  color: #FFFFFF;
}

.lp-cx-facts {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #FFFFFF;
}

.lp-cx .lp-faq {
  display: grid;
  gap: 12px;
}

.lp-cx .lp-faq__q {
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.lp-cx-final {
  margin-top: 76px;
  padding: 42px 28px;
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(240, 86, 56, 0.18), transparent 18rem),
    linear-gradient(135deg, #FFF1EE, #E5F1EA);
}

.lp-cx-final h2,
.lp-cx-final p {
  margin-left: auto;
  margin-right: auto;
}

.lp-cx-final h2 {
  max-width: 720px;
}

.lp-cx-final p {
  max-width: 560px;
  margin-bottom: 24px;
}

.lp-cx-cocreator {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: center;
  margin-top: 72px;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 4% 100%, rgba(201, 228, 210, 0.12), transparent 12rem),
    linear-gradient(135deg, #121212 0%, #171717 58%, #101010 100%);
  color: #F8F3EA;
  box-shadow: 0 30px 90px rgba(18, 18, 18, 0.18);
}

.lp-cx-cocreator::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -20px;
  width: 104px;
  height: 86px;
  opacity: 0.18;
  border: 4px solid #C9E4D2;
  border-radius: 52% 48% 45% 55%;
  transform: rotate(-8deg);
}

.lp-cx-cocreator::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 28px;
  width: 62px;
  height: 34px;
  opacity: 0.18;
  border-top: 4px solid #C9E4D2;
  border-radius: 50%;
}

@media (min-width: 940px) {
  .lp-cx-cocreator {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
  }
}

.lp-cx-cocreator__copy,
.lp-cx-cocreator__form-card {
  position: relative;
  z-index: 1;
}

.lp-cx-cocreator__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #9FD8BE;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lp-cx-cocreator__kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.lp-cx-cocreator h2 {
  max-width: 700px;
  margin: 0 0 18px;
  color: #FFFFFF;
  font-size: clamp(1.87rem, 4.37vw, 3.83rem);
  line-height: 0.98;
  letter-spacing: -0.010em;
}

.lp-cx-cocreator mark {
  display: inline-block;
  padding: 0.02em 0.14em 0.08em;
  border-radius: 8px;
  background: #A7E4C5;
  color: #121212;
  font-size: 0.8em;
  white-space: nowrap;
}

.lp-cx-cocreator__copy p {
  max-width: 58ch;
  margin: 0 0 30px;
  color: rgba(248, 243, 234, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.lp-cx-cocreator__meter {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 500px);
  padding: 14px 18px;
  border: 1px solid rgba(248, 243, 234, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lp-cx-cocreator__bar {
  flex: 1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(248, 243, 234, 0.14);
}

.lp-cx-cocreator__bar i {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: #F05638;
  box-shadow: 0 0 20px rgba(240, 86, 56, 0.48);
}

.lp-cx-cocreator__meter strong {
  color: rgba(248, 243, 234, 0.82);
  font-size: 0.86rem;
  white-space: nowrap;
}

.lp-cx-cocreator__meter em {
  color: #FF7A55;
  font-style: normal;
}

.lp-cx-cocreator__form-card {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 24px;
  background: #FAF6EF;
  color: #121212;
  box-shadow: 0 18px 0 rgba(0, 0, 0, 0.28), 0 30px 70px rgba(0, 0, 0, 0.22);
}

.lp-cx-cocreator__spark {
  position: absolute;
  top: -18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #F05638;
  font-size: 1.35rem;
  filter: drop-shadow(0 2px 0 #FFFFFF);
}

.lp-cx-cocreator__form-card h3 {
  margin: 0 0 8px;
  color: #121212;
  font-size: 1.55rem;
  letter-spacing: -0.010em;
}

.lp-cx-cocreator__form-card > p {
  margin: 0 0 22px;
  color: rgba(18, 18, 18, 0.56);
  font-size: 0.95rem;
}

.lp-cx-cocreator__form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lp-cx-cocreator__form .lp-label {
  color: rgba(18, 18, 18, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
}

.lp-cx-cocreator__form .lp-input {
  min-height: 48px;
  border: 1.5px solid rgba(18, 18, 18, 0.76);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.36);
  color: #121212;
}

.lp-cx-cocreator__form .lp-input:focus {
  outline: 3px solid rgba(240, 86, 56, 0.18);
  border-color: #F05638;
}

.lp-cx-cocreator__submit {
  width: 100%;
  min-height: 54px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: #F05638;
  color: #FFFFFF;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(240, 86, 56, 0.28);
  transition: transform 0.16s ease, background 0.16s ease;
}

.lp-cx-cocreator__submit:hover {
  background: #D94A2E;
  transform: translateY(-1px);
}

.lp-cx-cocreator__privacy {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  color: rgba(18, 18, 18, 0.64);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 720px) {
  .lp-body--cx-latam .lp-main {
    width: min(100% - 24px, 1160px);
    padding-top: calc(var(--lp-nav-height) + 32px);
  }

  .lp-cx-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 8vw, 2.65rem);
    line-height: 1.05;
  }

  .lp-cx-metrics {
    grid-template-columns: 1fr;
  }

  .lp-cx-lead-grid,
  .lp-cx-section--split {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .lp-cx-cocreator {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .lp-cx-cocreator h2 {
    font-size: clamp(1.68rem, 9.95vw, 2.6rem);
  }

  .lp-cx-cocreator__meter {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .lp-cx-cocreator__meter strong {
    white-space: normal;
  }
}
