/* ============================================================
   seguro-de-vida-online — traduccion 1:1 a CSS puro del funnel
   /iul-v4-identity de best-life (Tailwind -> CSS).
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap");

@font-face {
  font-family: "HurmeGeo";
  src: url("https://umbrella.data.naturalint.com/production/fonts/hgs/v2/regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HurmeGeo";
  src: url("https://umbrella.data.naturalint.com/production/fonts/hgs/v2/semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HurmeGeo";
  src: url("https://umbrella.data.naturalint.com/production/fonts/hgs/v2/bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HurmeGeo";
  src: url("https://umbrella.data.naturalint.com/production/fonts/hgs/v2/bold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HurmeGeo";
  src: url("https://umbrella.data.naturalint.com/production/fonts/hgs/v2/bold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --page-bg: #ffffff;
  --surface: #85a9ec;
  --brand: #2d6cdf;
  --brand-dark: #1e3a8a;
  --ink: #101820;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "HurmeGeo", Gilroy, Almarai, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: inline-block;
}

[hidden] {
  display: none !important;
}

/* ---------- keyframes (identicos a globals.css) ---------- */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes survey-question-in {
  from {
    opacity: 0;
    transform: translateX(5px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes survey-question-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-5px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.anim-in {
  animation: survey-question-in 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.anim-out {
  animation: survey-question-out 0.18s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.spin {
  animation: spin 1s linear infinite;
}

/* ---------- header ---------- */

.site-header {
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(18, 31, 53, 0.08);
  backdrop-filter: blur(4px);
}

.site-header .header-inner {
  margin: 0 auto;
  display: flex;
  height: 60px;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.site-header .logo {
  height: 36px;
  width: 148px;
  object-fit: contain;
}

.site-header .secure-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #191919;
}

.site-header .secure-badge img {
  height: auto;
  width: 128px;
}

@media (min-width: 768px) {
  .site-header .header-inner {
    position: relative;
    justify-content: center;
  }

  .site-header .logo {
    height: 40px;
    width: 190px;
  }

  .site-header .secure-badge {
    position: absolute;
    right: 16px;
  }

  .site-header .secure-badge img {
    width: 136px;
  }
}

/* ---------- layout ---------- */

.page-main {
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--ink);
}

.funnel-wrap {
  margin: 0 auto;
  display: flex;
  min-height: calc(100vh - 60px);
  width: 100%;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
  padding: 32px 12px 24px;
}

@media (min-width: 768px) {
  .funnel-wrap {
    padding: 16px 16px 40px;
  }
}

.funnel-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.funnel-panel {
  width: 100%;
  font-family: "Montserrat", "HurmeGeo", Arial, sans-serif;
}

.q-wrap {
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 760px;
  flex-direction: column;
  align-items: center;
}

/* ---------- barra de progreso ---------- */

.q-topbar {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (min-width: 768px) {
  .q-topbar {
    gap: 16px;
  }
}

.back-btn {
  display: inline-flex;
  height: 36px;
  width: 36px;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0;
  transition: color 0.15s;
}

.back-btn:hover {
  color: #101820;
}

.back-btn svg {
  height: 18px;
  width: 18px;
}

.progress-track {
  position: relative;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  border-radius: 9999px;
  background: #d9d9d9;
}

.progress-fill {
  height: 8px;
  border-radius: 9999px;
  background: var(--brand);
  transition: width 0.3s;
}

.progress-divider {
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.progress-label-box {
  display: flex;
  width: 58px;
  flex-shrink: 0;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .progress-label-box {
    width: 70px;
  }
}

.progress-label {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}

@media (min-width: 768px) {
  .progress-label {
    font-size: 13px;
  }
}

/* ---------- titulo de pregunta ---------- */

.q-head {
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .q-head {
    margin-top: 24px;
  }
}

.q-eyebrow {
  margin: 0 auto 4px;
  max-width: 520px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand);
}

@media (min-width: 768px) {
  .q-eyebrow {
    margin-bottom: 6px;
    font-size: 16px;
  }
}

.q-title {
  margin: 0 auto;
  max-width: 720px;
  font-size: 30px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #101820;
}

@media (min-width: 768px) {
  .q-title {
    font-size: 46px;
  }
}

/* ---------- opciones ---------- */

.options-grid {
  margin-top: 32px;
  display: grid;
  width: 100%;
  gap: 16px;
}

@media (min-width: 768px) {
  .options-grid {
    margin-top: 40px;
  }
}

.options-grid.w-420 {
  max-width: 420px;
}

.options-grid.w-460 {
  max-width: 460px;
}

.option-btn {
  display: flex;
  min-height: 62px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid #9c9c9c;
  background: #ffffff;
  padding: 0 20px;
  text-align: center;
  font-size: 17px;
  letter-spacing: -0.03em;
  color: #101820;
  box-shadow: 0 4px 10px rgba(16, 24, 32, 0.08);
  transition: border-color 0.15s, background-color 0.15s, box-shadow 0.15s;
}

.option-btn:hover {
  border-color: #6f6f6f;
}

.option-btn.is-recommended {
  border-color: #9ec5ff;
  background: #f7fbff;
  box-shadow: 0 0 0 1px rgba(26, 115, 232, 0.18), 0 4px 10px rgba(16, 24, 32, 0.08);
}

.option-btn.is-recommended:hover {
  border-color: #78adff;
}

.option-btn.is-selected {
  border-color: var(--brand);
  background: #f3f8ff;
  box-shadow: 0 0 0 1px var(--brand), 0 8px 18px rgba(26, 115, 232, 0.12);
}

.option-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.option-inner.age {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.option-inner svg {
  color: #5d6674;
  flex-shrink: 0;
}

/* ---------- formularios (zip / nombre / telefono) ---------- */

.form-col {
  margin-top: 32px;
  display: flex;
  width: 100%;
  max-width: 460px;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .form-col {
    margin-top: 40px;
  }
}

.text-input {
  height: 58px;
  border-radius: 16px;
  border: 1px solid #9c9c9c;
  background: #ffffff;
  padding: 0 20px;
  font-size: 17px;
  color: #101820;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.text-input:focus {
  border-color: var(--brand);
}

.text-input.border-valid {
  border-color: #16a34a;
}

.text-input.border-valid:focus {
  border-color: #16a34a;
}

.text-input.border-invalid {
  border-color: #e11d48;
}

.text-input.border-invalid:focus {
  border-color: #e11d48;
}

.field-hint {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

.field-error {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
  color: #d14c4c;
}

.cta-btn {
  display: inline-flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  background: var(--brand);
  padding: 0 24px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  transition: background-color 0.15s, opacity 0.15s;
}

.cta-btn:hover {
  background: var(--brand-dark);
}

.cta-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.cta-btn.submit-wait:disabled {
  cursor: wait;
  opacity: 0.7;
}

.cta-btn svg {
  height: 18px;
  width: 18px;
}

.btn-spinner {
  height: 16px;
  width: 16px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  animation: spin 1s linear infinite;
}

/* telefono */

.phone-row {
  display: flex;
  gap: 12px;
}

.phone-country {
  height: 58px;
  min-width: 106px;
  border-radius: 16px;
  border: 1px solid #9c9c9c;
  background: #ffffff;
  padding: 0 16px;
  font-size: 17px;
  color: #101820;
  outline: none;
  transition: border-color 0.15s;
}

.phone-country:focus {
  border-color: var(--brand);
}

.phone-field {
  position: relative;
  min-width: 0;
  flex: 1;
}

.phone-field .text-input {
  padding-right: 48px;
}

.phone-status {
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
}

.email-field {
  position: relative;
}

.email-icon {
  pointer-events: none;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  display: inline-flex;
}

.email-field .text-input {
  padding-left: 48px;
}

.consent-text {
  margin: -4px 0 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
  color: #6b7280;
}

.consent-text a {
  font-weight: 700;
  color: #4b5563;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- sellos de seguridad ---------- */

.seals-row {
  margin-top: 48px;
  display: flex;
  width: 100%;
  max-width: 420px;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .seals-row {
    margin-top: 56px;
  }
}

.seal {
  display: flex;
  height: 28px;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  filter: grayscale(0.08);
}

.seal img {
  height: auto;
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

/* ---------- intro (codigo muerto en el original, se conserva) ---------- */

.intro-panel {
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 980px;
  animation: fade-up 0.55s ease-out;
  flex-direction: column;
  align-items: center;
  font-family: "Montserrat", "HurmeGeo", Arial, sans-serif;
}

.intro-inner {
  width: 100%;
  max-width: 800px;
  padding: 10px;
}

.intro-title {
  margin: 0 auto;
  max-width: 330px;
  font-size: 31px;
  line-height: 1.34;
  font-weight: 600;
  color: #0d2b5b;
  text-align: center;
}

.intro-title .underlined {
  position: relative;
  margin-top: 4px;
  display: inline-block;
  font-size: 0.86em;
  line-height: 1.12;
}

.intro-title .underlined .z {
  position: relative;
  z-index: 10;
}

.intro-title .underlined svg {
  position: absolute;
  right: -2%;
  bottom: -0.2em;
  left: -2%;
  height: 0.5em;
  width: 104%;
}

.intro-sub {
  margin: 16px auto 0;
  max-width: 340px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 15px;
  font-size: 13px;
  line-height: 1.2;
  color: #64748b;
  text-align: center;
}

@media (min-width: 768px) {
  .intro-title {
    max-width: none;
    font-size: 52px;
    line-height: 1.14;
    font-weight: 800;
  }

  .intro-title .underlined {
    font-size: 1em;
  }

  .intro-sub {
    max-width: none;
    font-size: 18px;
  }
}

.intro-benefits {
  margin-top: 15px;
  display: grid;
  gap: 15px;
}

.intro-benefit {
  display: flex;
  cursor: pointer;
  align-items: stretch;
  overflow: hidden;
  border-radius: 15px;
  background: #f8fafc;
  text-align: left;
  box-shadow: 0 0 0 1px #f0f4f8;
  transition: all 0.3s ease-out;
}

.intro-benefit:hover {
  transform: translateY(-3px) scale(1.02);
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.intro-benefit .bar {
  width: 8px;
  flex-shrink: 0;
  background: #1a73e8;
}

.intro-benefit .content {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.intro-benefit .icon {
  display: flex;
  min-width: 50px;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
}

.intro-benefit h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #1e40af;
}

.intro-benefit p {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: #475569;
}

@media (min-width: 768px) {
  .intro-benefit h2 {
    font-size: 19px;
  }

  .intro-benefit p {
    font-size: 16px;
  }
}

.intro-cta-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.intro-cta {
  display: inline-flex;
  width: 100%;
  max-width: 500px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #1a73e8;
  padding: 22px 32px;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
  transition: all 0.3s ease-out;
}

.intro-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(26, 115, 232, 0.38);
}

.intro-cta .big {
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
}

.intro-cta .small {
  margin-top: 4px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #e0f2fe;
}

@media (min-width: 768px) {
  .intro-cta .big {
    font-size: 24px;
  }

  .intro-cta .small {
    font-size: 14px;
  }
}

/* ---------- pagina de rechazo (en pagina y /rechazo) ---------- */

.rejected-section {
  margin: 0 auto;
  display: flex;
  min-height: calc(100vh - 120px);
  width: 100%;
  max-width: 760px;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  text-align: center;
  font-family: "Montserrat", "HurmeGeo", Arial, sans-serif;
}

.rejected-card {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #dbe7f5;
  background: #ffffff;
  padding: 40px 24px;
  box-shadow: 0 18px 45px rgba(18, 31, 53, 0.12);
}

@media (min-width: 768px) {
  .rejected-card {
    padding: 48px 40px;
  }
}

.rejected-icon {
  margin: 0 auto;
  display: flex;
  height: 58px;
  width: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #eef6ff;
  color: var(--brand);
}

.rejected-icon svg {
  height: 28px;
  width: 28px;
}

.rejected-title {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.04em;
  color: #101820;
}

.rejected-text {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.55;
  color: #5d6674;
}

@media (min-width: 768px) {
  .rejected-title {
    font-size: 40px;
  }

  .rejected-text {
    font-size: 19px;
  }
}

/* ---------- pagina de gracias (seccion #gracias y /thanks/lead) ---------- */

.ty-main {
  min-height: 100vh;
  background: #f6f8fb;
  color: #13213c;
  padding: 0;
}

@media (min-width: 768px) {
  .ty-main {
    padding: 24px 16px;
  }
}

.ty-card {
  margin: 0 auto;
  width: 100%;
  max-width: 490px;
  overflow: hidden;
  background: #ffffff;
}

.ty-section {
  padding: 16px;
}

@media (min-width: 768px) {
  .ty-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.ty-hero {
  border-top: 1px solid #f2d7d7;
  padding: 20px 16px 24px;
  text-align: center;
}

.ty-hero-check {
  margin: 0 auto;
  display: flex;
  height: 56px;
  width: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #18bf79;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(24, 191, 121, 0.25);
}

.ty-hero-check svg {
  height: 28px;
  width: 28px;
}

.ty-hero h1,
.ty-hero .h1 {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #13213c;
}

.ty-hero .received {
  margin: 8px 0 0;
  font-size: 19px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #13213c;
}

.ty-hero .received .green {
  color: #16c96f;
}

.ty-hero .received svg {
  height: 20px;
  width: 20px;
  transform: translateY(2px);
  color: #64d98d;
}

.ty-hero .sub {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #5e6781;
}

.ty-hero .sub .green {
  font-weight: 900;
  color: #16c96f;
}

.ty-alert {
  border-top: 3px solid #20d47a;
  background: #ef3131;
  padding: 16px;
  text-align: center;
}

.ty-alert .row1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #151515;
}

.ty-alert .row1 svg {
  height: 16px;
  width: 16px;
  color: #9a52ff;
}

.ty-alert .row2 {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.ty-alert .row2 svg {
  height: 20px;
  width: 20px;
  color: #ffdf59;
}

.ty-alert .big-box {
  margin-top: 12px;
  border-radius: 18px;
  border: 2px solid #ffb8b8;
  background: #f35f5f;
  padding: 12px 16px;
}

.ty-alert .big-box p {
  margin: 0;
  font-size: 27px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #ffffff;
}

@media (min-width: 768px) {
  .ty-alert .big-box p {
    font-size: 34px;
  }
}

.ty-alert .note {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #141414;
}

.ty-alert .note b {
  font-weight: 900;
}

.ty-watch {
  border-top: 3px solid #ffbe2e;
  background: #fff1b8;
}

.ty-watch .head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ty-watch .pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 9999px;
  background: #f94848;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.ty-watch .pill svg {
  height: 12px;
  width: 12px;
}

.ty-watch h2,
.ty-watch h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #7b4a10;
}

.ty-watch .desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #7b4a10;
}

.ty-highlight {
  border-radius: 12px;
  border-left: 3px solid #15c978;
  background: #ffffff;
  padding: 12px 16px;
  box-shadow: 0 8px 20px rgba(16, 24, 32, 0.05);
}

.ty-highlight .t {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #13213c;
}

.ty-highlight .d {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.35;
  color: #5d6782;
}

.ty-grid {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.ty-call-steps {
  border-top: 3px solid #f7a61f;
  background: #fffaf2;
}

.ty-sec-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a2740;
}

.ty-sec-head h2,
.ty-sec-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ty-sec-head svg {
  height: 20px;
  width: 20px;
}

.ty-step {
  border-radius: 14px;
  border-left: 3px solid #4a80f0;
  background: #f8fafc;
  padding: 16px;
}

.ty-step .head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1a2740;
}

.ty-step .head svg {
  height: 16px;
  width: 16px;
}

.ty-step p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #5d6782;
}

.ty-info {
  border-top: 3px solid #4a80f0;
  background: #eef5ff;
}

.ty-info .ty-sec-head {
  color: #2450c5;
}

.ty-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px 16px;
  box-shadow: 0 8px 20px rgba(16, 24, 32, 0.04);
}

.ty-info-item svg {
  margin-top: 2px;
  height: 20px;
  width: 20px;
  color: #7dd8a1;
  flex-shrink: 0;
}

.ty-info-item .t {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #13213c;
}

.ty-info-item .d {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: #5d6782;
}

.ty-faq {
  border-top: 3px solid #f08fd0;
  background: #ffffff;
}

.ty-faq-item {
  border-radius: 14px;
  border-left: 3px solid #8d5bff;
  background: #fcfcfe;
  padding: 16px;
}

.ty-faq-item .t {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1a2740;
}

.ty-faq-item .d {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #5d6782;
}

.ty-footer {
  border-top: 3px solid #ffbe2e;
  background: #1e2639;
  padding: 32px 20px;
  text-align: center;
  color: #ffffff;
}

@media (min-width: 768px) {
  .ty-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.ty-footer .phone-icon {
  display: flex;
  justify-content: center;
}

.ty-footer .phone-icon svg {
  height: 40px;
  width: 40px;
}

.ty-footer h2,
.ty-footer h3 {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.ty-footer .gold {
  font-weight: 900;
  color: #ffbe2e;
}

.ty-footer .italic {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.ty-footer .legal {
  margin: 24px auto 0;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- footer del funnel ---------- */

.site-footer {
  padding: 12px 16px 20px;
  text-align: center;
  font-size: 9px;
  line-height: 1.45;
  color: #b8bec8;
}

@media (min-width: 768px) {
  .site-footer {
    font-size: 10px;
  }
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin: 8px auto 0;
  max-width: 920px;
}

/* ---------- popup (PopUp1) ---------- */

@keyframes popup1-call-wave {
  0%,
  18% {
    opacity: 0;
  }
  28%,
  70% {
    opacity: 1;
  }
  82%,
  100% {
    opacity: 0;
  }
}

.popup1-call-wave {
  animation: popup1-call-wave 3.2s ease-in-out infinite;
  stroke-width: 3;
}

.popup1-call-wave-2 {
  animation-delay: 0.4s;
}

.popup1-call-wave-3 {
  animation-delay: 0.8s;
}

@media (prefers-reduced-motion: reduce) {
  .popup1-call-wave {
    animation: none;
    opacity: 1;
  }
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 0 16px;
}

.popup-hidden-phone {
  pointer-events: none;
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  opacity: 0;
}

.popup-card {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  background: #ffffff;
  background-image: radial-gradient(circle at center, #ffffff 42%, #ffffff 62%, rgba(254, 226, 226, 0.52) 100%);
  padding: 24px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.popup-x {
  margin: 0 auto 20px;
  display: flex;
  height: 64px;
  width: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #fee2e2;
  color: #ef4444;
}

.popup-x svg {
  height: 32px;
  width: 32px;
}

.popup-title {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #101820;
}

.popup-title .dots {
  display: inline-block;
  width: 0.9em;
  text-align: left;
}

.popup-warning {
  margin: 16px auto 0;
  display: flex;
  max-width: 300px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #273449;
}

.popup-warning .tri {
  position: relative;
  display: flex;
  height: 28px;
  width: 32px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: #f5b800;
}

.popup-warning .tri svg {
  position: absolute;
  height: 28px;
  width: 32px;
}

.popup-warning .tri .bang {
  position: relative;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

.popup-warning .msg {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.popup-checks {
  margin-top: 20px;
  display: grid;
  gap: 8px;
  text-align: left;
}

.popup-check {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid #e4eaf1;
  background: rgba(255, 255, 255, 0.75);
  padding: 8px 12px;
}

.popup-check .label {
  font-size: 13px;
  font-weight: 700;
  color: #273449;
}

.popup-check .mark {
  display: flex;
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #ffffff;
}

.popup-check .mark.ok {
  background: #16a34a;
}

.popup-check .mark.missing {
  background: #ef4444;
}

.popup-check .mark svg {
  height: 14px;
  width: 14px;
}

.popup-check .mark.missing svg {
  height: 12px;
  width: 12px;
}

.popup-note {
  margin: 16px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.375;
  color: #5d6674;
}

.popup-actions {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.popup-call-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  background: #16a34a;
  padding: 0 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(22, 163, 74, 0.24);
  transition: background-color 0.15s;
}

.popup-call-btn:hover {
  background: #12813c;
}

.popup-call-btn svg {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
}

.popup-continue-btn {
  margin: 0 auto;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #5d6674;
  transition: color 0.15s;
}

.popup-continue-btn:hover {
  color: #273449;
}

.popup-continue-btn img {
  height: 18px;
  width: 14px;
  flex-shrink: 0;
  object-fit: contain;
}

.popup-continue-btn .underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* ---------- /thanks/call2 (bench-call2-page) ---------- */

@keyframes call2-soft-pulse {
  0% {
    opacity: 0.52;
    transform: scale(1);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.09, 1.34);
  }
}

.call2-soft-pulse::before {
  animation: call2-soft-pulse 2.4s ease-out infinite;
}

@keyframes call2-phone-ring {
  0%,
  72%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  76% {
    transform: rotate(-13deg) scale(1.08);
  }
  80% {
    transform: rotate(12deg) scale(1.08);
  }
  84% {
    transform: rotate(-9deg) scale(1.06);
  }
  88% {
    transform: rotate(7deg) scale(1.04);
  }
  92% {
    transform: rotate(0deg) scale(1);
  }
}

.call2-phone-ring {
  animation: call2-phone-ring 2.4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes call2-call-wave {
  0%,
  18% {
    opacity: 0;
  }
  28%,
  70% {
    opacity: 1;
  }
  82%,
  100% {
    opacity: 0;
  }
}

.call2-call-wave {
  animation: call2-call-wave 3.2s ease-in-out infinite;
  stroke-width: 3;
}

.call2-call-wave-2 {
  animation-delay: 0.4s;
}

.call2-call-wave-3 {
  animation-delay: 0.8s;
}

@media (prefers-reduced-motion: reduce) {
  .call2-soft-pulse::before,
  .call2-phone-ring,
  .call2-call-wave {
    animation: none;
  }

  .call2-call-wave {
    opacity: 1;
  }
}

.c2-main {
  min-height: 100vh;
  background: #ffffff;
  color: #101820;
}

.c2-header {
  border-bottom: 1px solid #eef2f7;
  background: #ffffff;
}

.c2-header-inner {
  margin: 0 auto;
  display: flex;
  height: 64px;
  max-width: 980px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
}

.c2-header-inner .logo {
  height: auto;
  width: 132px;
}

@media (min-width: 640px) {
  .c2-header-inner .logo {
    width: 150px;
  }
}

.c2-header-call {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  background: #16a34a;
  padding: 0 12px;
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(22, 163, 74, 0.28);
  transition: background-color 0.15s, transform 0.1s;
}

.c2-header-call:hover {
  background: #12813c;
  color: #ffffff;
}

.c2-header-call:active {
  transform: scale(0.98);
}

.c2-header-call svg {
  height: 20px;
  width: 20px;
  flex-shrink: 0;
}

.c2-header-call span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

@media (min-width: 640px) {
  .c2-header-call span {
    font-size: 13px;
  }
}

.c2-section {
  margin: 0 auto;
  display: flex;
  min-height: calc(100vh - 64px);
  width: 100%;
  max-width: 560px;
  flex-direction: column;
  padding: 28px 20px;
  text-align: center;
}

.c2-gif {
  margin: 0 auto;
  height: 64px;
  width: 64px;
}

.c2-eyebrow {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.c2-title {
  margin: 8px 0 0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.12;
}

@media (min-width: 768px) {
  .c2-title {
    font-size: 34px;
  }
}

.c2-benefits-wrap {
  margin: 16px auto 0;
  width: 100%;
  max-width: 440px;
}

.c2-benefits-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #5d6674;
}

.c2-benefits {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  text-align: left;
}

.c2-benefit {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid #e1e8f0;
  background: #f8fafc;
  padding: 10px 14px;
  animation: fade-up 0.35s ease-out;
}

.c2-benefit .left {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.c2-benefit .icon {
  display: flex;
  height: 36px;
  width: 36px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eaf2ff;
  color: #2d6cdf;
}

.c2-benefit .label {
  font-size: 14px;
  font-weight: 700;
  color: #273449;
}

.c2-benefit .status {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
}

.c2-benefit .status.applies {
  color: #16a34a;
}

.c2-benefit .status.calculating {
  color: #7b8494;
}

.c2-benefit .status .check {
  display: flex;
  height: 20px;
  width: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #16a34a;
  color: #ffffff;
}

.c2-benefit .status .check svg {
  height: 14px;
  width: 14px;
}

.c2-benefit .status .loader {
  height: 20px;
  width: 20px;
  border-radius: 9999px;
  border: 2px solid #cbd5e1;
  border-top-color: #2d6cdf;
  animation: spin 1s linear infinite;
}

.c2-phone-card {
  margin-top: 24px;
  border-radius: 18px;
  background: #10203a;
  padding: 20px 16px;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(16, 32, 58, 0.18);
}

.c2-phone-card .waiting {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

.c2-phone-card .number {
  margin-top: 8px;
  display: block;
  font-size: clamp(2rem, 8vw, 2.7rem);
  font-weight: 900;
}

.c2-call-btn {
  position: relative;
  isolation: isolate;
  margin-top: 16px;
  display: inline-flex;
  min-height: 54px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  background: #16a34a;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(22, 163, 74, 0.25);
  transition: background-color 0.15s;
}

.c2-call-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -10;
  border-radius: 9999px;
  background: #16a34a;
}

.c2-call-btn:hover {
  background: #12813c;
}

.c2-call-btn svg {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
}

.c2-countdown {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 900;
  color: #273449;
}

.c2-countdown.expired {
  color: #e05b24;
}

.c2-app-id {
  margin-top: 20px;
  border-top: 1px solid #dde7f4;
  border-bottom: 1px solid #dde7f4;
  padding: 20px 0;
}

.c2-app-id .label {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.c2-app-id .value {
  margin: 4px 0 0;
  font-size: 24px;
  font-weight: 900;
  color: #f2382e;
}

.c2-app-id .hint {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #e05b24;
}

.c2-extra {
  margin-top: 20px;
  border-radius: 16px;
  border: 1px solid #d9e6fb;
  background: #f7fbff;
  padding: 16px;
  text-align: left;
}

.c2-extra .title {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: #101820;
}

.c2-extra .list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.c2-extra .item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #273449;
}

.c2-extra .item .tick {
  color: #18bf79;
}

.c2-legal {
  margin: 20px auto 0;
  max-width: 420px;
  font-size: 12px;
  line-height: 1.45;
  color: #7b8494;
}

/* ---------- paginas legales (/socios, /privacy, /terms) ---------- */

.legal-main {
  min-height: 100vh;
  background: #ffffff;
  color: #101820;
  padding: 40px 20px;
}

.legal-wrap {
  margin: 0 auto;
}

.legal-wrap.w-760 {
  max-width: 760px;
}

.legal-wrap.w-860 {
  max-width: 860px;
}

.legal-wrap.w-900 {
  max-width: 900px;
}

.legal-updated {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.legal-title {
  margin: 12px 0 0;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

@media (min-width: 768px) {
  .legal-title {
    font-size: 44px;
  }
}

.legal-title.plain {
  margin: 0;
  font-size: 32px;
}

.legal-body {
  margin-top: 32px;
  font-size: 16px;
  line-height: 28px;
  color: #4b5563;
}

.legal-body > * + * {
  margin-top: 28px;
}

.legal-body p {
  margin: 0;
}

.legal-body section h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #101820;
}

.legal-body section p,
.legal-body section ul {
  margin-top: 12px;
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
}

.legal-body li + li {
  margin-top: 8px;
}

.legal-simple {
  margin-top: 20px;
  font-size: 16px;
  line-height: 28px;
  color: #4b5563;
}

.legal-simple + .legal-simple {
  margin-top: 16px;
}
