:root {
  --bg: #050a12;
  --bg-soft: #0a1322;
  --panel: #0d192b;
  --panel-strong: #111f34;
  --text: #f5f1e8;
  --muted: #aab5c4;
  --faint: #6f7c8e;
  --gold: #d8ae4d;
  --gold-light: #f6d98a;
  --gold-soft: rgba(216, 174, 77, .14);
  --line: rgba(218, 185, 105, .17);
  --line-strong: rgba(218, 185, 105, .36);
  --green: #8bdbac;
  --danger: #ff9292;
  --ink: #161108;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
  --type-display: clamp(2.55rem, 5vw, 4rem);
  --type-h2: clamp(1.8rem, 3.2vw, 2.65rem);
  --type-h3: 1rem;
  --type-body-lg: clamp(.9rem, 1.25vw, 1.05rem);
  --type-body: .82rem;
  --type-small: .68rem;
  --type-label: .6rem;
  --shadow: 0 28px 70px rgba(0, 0, 0, .34);
  --focus-ring: 3px solid rgba(246, 217, 138, .72);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: var(--gold) var(--bg); scrollbar-width: thin; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(800px 500px at 84% -12%, rgba(74, 109, 163, .22), transparent 68%),
    radial-gradient(700px 500px at 10% 20%, rgba(216, 174, 77, .08), transparent 68%),
    linear-gradient(180deg, #07111f 0%, var(--bg) 60%, #03060b 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.cf-account-open { overflow: hidden; }
body, button, a { -webkit-tap-highlight-color: transparent; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--ink); background: var(--gold-light); }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-light), var(--gold)); border: 2px solid var(--bg); border-radius: 99px; }
:focus { outline: none; }
:focus-visible { outline: var(--focus-ring); outline-offset: 3px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 10px max(18px, env(safe-area-inset-right)) 10px max(18px, env(safe-area-inset-left));
  background: #050a12;
  border-bottom: 1px solid rgba(218, 185, 105, .12);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .16);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 50%; background: linear-gradient(145deg, #172944, #09111d); box-shadow: 0 8px 20px rgba(0, 0, 0, .25); }
.brand-mark img { width: 37px; height: 37px; object-fit: contain; border-radius: 50%; }
.brand-copy { display: grid; gap: 1px; }
.brand-name { color: var(--text); font-family: Fraunces, Georgia, serif; font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.brand-caption { color: var(--faint); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 6px; margin-left: 18px; }
.site-nav a { padding: 9px 12px; border-radius: 10px; color: var(--muted); font-size: 12px; font-weight: 600; transition: color .18s ease, background .18s ease; }
.site-nav a:hover { color: var(--text); background: rgba(255, 255, 255, .06); }
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: var(--type-body);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, filter .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled { cursor: wait; opacity: .56; transform: none; }
.btn-gold { color: var(--ink); background: linear-gradient(135deg, #f4d27c 0%, var(--gold) 100%); border-color: rgba(255, 225, 144, .56); box-shadow: 0 12px 28px rgba(216, 174, 77, .16); }
.btn-gold:hover { filter: brightness(1.07); }
.btn-quiet { color: var(--text); background: #16263a; border-color: rgba(169, 190, 216, .15); }
.btn-quiet:hover { background: #1c324b; border-color: rgba(218, 185, 105, .36); }
.btn-outline { color: var(--gold-light); background: transparent; border-color: var(--line-strong); }
.btn-outline:hover { background: var(--gold-soft); border-color: var(--gold-light); }
.btn-header { min-height: 40px; padding: 0 13px; border-radius: 11px; font-size: 11px; }
.btn-header-create { color: var(--gold-light); background: rgba(216, 174, 77, .07); border-color: var(--line-strong); }
.btn-header-create:hover { background: rgba(216, 174, 77, .15); }
.cf-icon { display: block; width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.cf-icon-sm { width: 16px; height: 16px; }
.btn .cf-icon { margin-right: -2px; }
.cf-account-label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.js-crear-usuario.is-identified { max-width: 220px; }
.js-crear-usuario.is-identified::before { width: 7px; height: 7px; flex: 0 0 7px; content: ''; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(139, 219, 172, .1); }

.section { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.hero { display: grid; grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr); align-items: center; gap: clamp(30px, 5vw, 68px); min-height: auto; padding-top: clamp(36px, 5vw, 60px); padding-bottom: clamp(38px, 5vw, 60px); }
.hero-copy { min-width: 0; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 15px; color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .19em; line-height: 1.2; }
.eyebrow-dot { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(216, 174, 77, .1); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
.hero h1 { max-width: 620px; margin-bottom: 16px; color: var(--text); font-family: Fraunces, Georgia, serif; font-size: var(--type-display); font-weight: 600; letter-spacing: -.055em; line-height: .98; }
h1 em, h2 em { color: var(--gold-light); font-style: normal; }
.hero-text { max-width: 450px; margin-bottom: 0; color: var(--muted); font-size: var(--type-body-lg); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.btn-hero { min-width: 150px; min-height: 52px; padding: 0 17px; }
.hero-trust { display: flex; align-items: center; gap: 15px; margin-top: 25px; }
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-icon { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--gold-light); background: var(--gold-soft); }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { color: var(--text); font-size: var(--type-body); }
.trust-item small { margin-top: 1px; color: var(--faint); font-size: var(--type-label); letter-spacing: .05em; text-transform: uppercase; }
.trust-divider { width: 1px; height: 27px; background: var(--line); }

.hero-media-wrap { min-width: 0; padding: clamp(18px, 2.5vw, 28px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(17, 35, 58, .92), rgba(9, 17, 29, .96)); box-shadow: var(--shadow); }
.hero-media-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.hero-media-top .eyebrow { margin-bottom: 8px; font-size: 9px; }
.hero-media-top h2 { max-width: 350px; margin: 0; color: var(--text); font-family: Fraunces, Georgia, serif; font-size: var(--type-h2); font-weight: 600; letter-spacing: -.035em; line-height: 1.05; }
.video-subtitle { margin: 8px 0 18px; color: var(--muted); font-size: var(--type-small); }
.video-card { position: relative; overflow: hidden; margin: 0; border: 1px solid rgba(218, 185, 105, .24); border-radius: 18px; background: #03060b; box-shadow: 0 14px 32px rgba(0, 0, 0, .25); }
.hero-video { width: 100%; min-height: 280px; aspect-ratio: 16 / 10; object-fit: cover; background: #03060b; }
.video-cover { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 13px; width: 100%; border: 0; color: var(--text); background: linear-gradient(145deg, rgba(7, 17, 31, .76), rgba(7, 10, 17, .38)); transition: opacity .2s ease; }
.video-cover.is-hidden { pointer-events: none; opacity: 0; }
.video-cover:hover { background: linear-gradient(145deg, rgba(7, 17, 31, .66), rgba(7, 10, 17, .26)); }
.video-play { display: grid; place-items: center; width: 66px; height: 66px; border: 1px solid rgba(255, 230, 161, .7); border-radius: 50%; color: var(--ink); background: var(--gold-light); box-shadow: 0 0 0 10px rgba(216, 174, 77, .1), 0 15px 35px rgba(0, 0, 0, .28); }
.video-play svg { margin-left: 3px; }
.video-cover-text { font-size: var(--type-body); font-weight: 700; }
.media-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; color: var(--faint); font-size: var(--type-label); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.media-footer span:first-child { display: inline-flex; align-items: center; gap: 7px; color: var(--green); }
.media-footer i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(139, 219, 172, .1); }

.providers-section { padding-top: 32px; padding-bottom: 34px; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 26px; }
.section-heading h2 { max-width: 580px; margin: 0; color: var(--text); font-family: Fraunces, Georgia, serif; font-size: var(--type-h2); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; }
.section-lead { max-width: 330px; margin: 0 0 4px; color: var(--muted); font-size: var(--type-body); line-height: 1.65; }
.payment-section { padding-bottom: 30px; }
.payment-panel { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); align-items: center; gap: 26px; padding: clamp(20px, 3vw, 30px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(500px 220px at 100% 0%, rgba(216, 174, 77, .13), transparent 75%), #0b1626; }
.payment-copy h2 { margin: 0 0 7px; color: var(--text); font-family: Fraunces, Georgia, serif; font-size: var(--type-h2); font-weight: 600; letter-spacing: -.045em; line-height: 1.03; }
.payment-copy p:last-child { max-width: 310px; margin: 0; color: var(--muted); font-size: var(--type-small); }
.payment-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.payment-logo { display: grid; place-items: center; min-height: 70px; padding: 12px; border: 1px solid rgba(218, 185, 105, .14); border-radius: 13px; background: rgba(3, 8, 15, .48); transition: transform .18s ease, border-color .18s ease; }
.payment-logo:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.payment-logo img { width: 100%; height: 41px; object-fit: contain; }

.provider-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.provider-card { display: grid; place-items: center; min-height: 68px; padding: 11px 14px; border: 1px solid rgba(218, 185, 105, .13); border-radius: 14px; background: rgba(12, 24, 40, .56); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.provider-card:hover { transform: translateY(-3px); border-color: var(--line-strong); background: rgba(19, 37, 60, .75); }
.provider-card img { width: 100%; max-width: 125px; max-height: 43px; object-fit: contain; }

.support-section { padding-bottom: 34px; }
.support-panel { display: grid; grid-template-columns: minmax(0, .85fr) minmax(330px, 1.15fr); align-items: center; gap: 30px; padding: clamp(24px, 3.5vw, 36px); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(22, 39, 63, .95), rgba(9, 17, 29, .95)); box-shadow: var(--shadow); }
.support-copy h2 { margin: 0 0 9px; color: var(--text); font-family: Fraunces, Georgia, serif; font-size: var(--type-h2); font-weight: 600; letter-spacing: -.05em; line-height: .98; }
.support-copy > p:last-child { margin: 0; color: var(--muted); font-size: var(--type-body); }
.support-actions { display: grid; gap: 10px; }
.support-button { display: grid; grid-template-columns: 44px 1fr 18px; align-items: center; gap: 11px; min-height: 64px; padding: 9px 13px; border: 1px solid rgba(218, 185, 105, .18); border-radius: var(--radius-md); background: rgba(3, 9, 17, .44); transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.support-button:hover { transform: translateX(4px); border-color: var(--line-strong); background: rgba(3, 9, 17, .7); }
.support-icon { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 14px; background: rgba(255, 255, 255, .05); }
.support-icon-brand img { width: 27px; height: 27px; object-fit: contain; }
.support-whatsapp .support-icon { border-color: rgba(37, 211, 102, .25); background: rgba(37, 211, 102, .1); }
.support-telegram .support-icon { border-color: rgba(42, 171, 238, .25); background: rgba(42, 171, 238, .1); }
.support-button strong, .support-button small { display: block; }
.support-button strong { color: var(--text); font-size: var(--type-body); }
.support-button small { margin-top: 2px; color: var(--faint); font-size: var(--type-small); }
.support-arrow { width: 18px; height: 18px; color: var(--gold-light); }
.site-footer { display: flex; justify-content: space-between; gap: 18px; width: min(var(--container), calc(100% - 40px)); margin: 0 auto; padding: 22px 0 max(28px, env(safe-area-inset-bottom)); color: var(--faint); border-top: 1px solid rgba(218, 185, 105, .1); font-size: var(--type-label); line-height: 1.5; }
.site-footer span:last-child { text-align: right; }

/* Autenticación y perfil: mismo lenguaje visual que el resto del landing. */
.cf-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; overflow-y: auto; padding: 20px; background: rgba(1, 4, 9, .82); backdrop-filter: blur(12px); }
.cf-modal[hidden], .cf-welcome-widget[hidden], .cf-auth-launcher[hidden] { display: none !important; }
.cf-modal-card { position: relative; width: min(100%, 450px); max-height: calc(100dvh - 40px); overflow-y: auto; padding: 30px 26px 22px; border: 1px solid var(--line-strong); border-radius: 24px; background: linear-gradient(145deg, #102139, #091321); box-shadow: 0 30px 90px rgba(0, 0, 0, .56); }
.cf-modal-card h2 { margin: 4px 0 9px; color: var(--text); font-family: Fraunces, Georgia, serif; font-size: clamp(29px, 6vw, 38px); font-weight: 600; letter-spacing: -.045em; line-height: 1; }
.cf-modal-close { position: absolute; top: 17px; right: 17px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--muted); background: rgba(255, 255, 255, .04); }
.cf-modal-close:hover { color: var(--text); background: rgba(255, 255, 255, .09); }
.cf-auth-switch { display: flex; gap: 4px; padding: 4px; margin: 20px 0; border: 1px solid var(--line); border-radius: 13px; background: rgba(2, 7, 14, .62); }
.cf-auth-switch button { flex: 1; min-height: 40px; padding: 7px; border: 0; border-radius: 9px; color: var(--muted); background: transparent; font-size: 11px; font-weight: 700; }
.cf-auth-switch button[aria-pressed="true"] { color: var(--gold-light); background: #192d48; }
.cf-modal-card label { display: block; margin-top: 15px; color: var(--muted); font-size: 11px; font-weight: 700; }
.cf-modal-card input { width: 100%; margin-top: 6px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 11px; color: var(--text); background: rgba(2, 8, 16, .68); }
.cf-modal-card input:focus { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(216, 174, 77, .14); }
.cf-modal-card .btn { width: 100%; margin-top: 17px; }
.cf-modal-text, .cf-account-note { color: var(--muted); font-size: 12px; line-height: 1.6; }
.cf-modal-error { min-height: 1.35em; margin: 9px 0 0; color: var(--danger); font-size: 11px; }
.cf-password-field { position: relative; display: flex; align-items: center; }
.cf-password-field input { padding-right: 75px; }
.cf-password-toggle { position: absolute; right: 7px; min-height: 30px; padding: 4px 7px; border: 0; border-radius: 7px; color: var(--gold-light); background: var(--gold-soft); font-size: 10px; }
.cf-field-hint { min-height: 1.35em; margin: 6px 0 0; color: var(--muted); font-size: 10px; }
.cf-field-hint.is-valid { color: var(--green); }
.cf-field-hint.is-invalid { color: var(--danger); }
.cf-modal-card input.is-invalid { border-color: var(--danger); }
.cf-modal-card input.is-valid { border-color: var(--green); }
.cf-account-summary { display: flex; align-items: center; gap: 13px; margin: 21px 0; }
.cf-account-avatar { display: grid; place-items: center; width: 52px; height: 52px; flex: 0 0 52px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-light); background: var(--gold-soft); }
.cf-account-avatar img { width: 30px; height: 30px; object-fit: contain; }
.cf-account-avatar .cf-avatar-image { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.cf-account-summary strong { display: block; overflow-wrap: anywhere; color: var(--text); }
.cf-account-badge { display: block; margin-top: 3px; color: var(--green); font-size: 11px; }
.cf-ticket { padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(2, 8, 16, .46); }
.cf-ticket span, .cf-ticket strong { display: block; }
.cf-ticket span { color: var(--faint); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.cf-ticket strong { margin-top: 4px; overflow-wrap: anywhere; color: var(--gold-light); font-size: 16px; }
.cf-modal-card #cf-copy-user, .cf-modal-card #cf-ir-chat { margin-top: 10px; }
.cf-account-note { margin: 17px 0; }
.cf-account-logout { display: block; width: 100%; padding: 13px 4px 2px; border: 0; border-top: 1px solid var(--line); color: var(--muted); background: transparent; font-size: 11px; }
.cf-account-logout:hover { color: var(--text); }
.cf-auth-launcher { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; align-items: center; gap: 10px; padding: 10px 14px 10px 10px; border: 1px solid var(--line-strong); border-radius: 17px; color: var(--text); background: #102037; box-shadow: 0 15px 38px rgba(0, 0, 0, .42); text-align: left; }
.cf-auth-launcher-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: var(--ink); background: linear-gradient(145deg, #ffe29e, var(--gold)); }
.cf-auth-launcher-icon .cf-icon { width: 22px; height: 22px; }
.cf-auth-launcher-text { display: grid; gap: 2px; line-height: 1.2; }
.cf-auth-launcher-text strong { color: var(--gold-light); font-size: 12px; }
.cf-auth-launcher-text small { color: var(--muted); font-size: 10px; }
.cf-welcome-widget { position: fixed; right: 22px; bottom: 96px; z-index: 950; width: min(370px, calc(100vw - 32px)); overflow: hidden; border: 1px solid var(--line-strong); border-radius: 22px; background: #f5f0e7; box-shadow: 0 24px 70px rgba(0, 0, 0, .55); }
.cf-welcome-header { display: flex; align-items: center; gap: 10px; min-height: 66px; padding: 11px 14px; color: var(--text); background: linear-gradient(135deg, #0c192b, #1a304b); }
.cf-welcome-brand { display: grid; place-items: center; width: 40px; height: 40px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-light); background: var(--gold-soft); }
.cf-welcome-brand img { width: 32px; height: 32px; object-fit: contain; border-radius: 50%; }
.cf-welcome-header > span:nth-child(2) { display: grid; gap: 3px; }
.cf-welcome-header strong { font-size: 13px; }
.cf-welcome-header small { color: #bfccdc; font-size: 9px; letter-spacing: .1em; }
#cf-welcome-close { display: grid; place-items: center; width: 36px; height: 36px; margin-left: auto; border: 0; border-radius: var(--radius-sm); color: var(--text); background: transparent; }
#cf-welcome-close:hover { background: rgba(255, 255, 255, .08); }
.cf-welcome-body { display: grid; justify-items: center; min-height: 340px; padding: 37px 25px 27px; color: #19202b; text-align: center; }
.cf-welcome-user { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; color: var(--gold-light); background: #14243a; font-size: 32px; }
.cf-welcome-body h2 { margin: 18px 0 8px; color: #17202d; font-family: Fraunces, Georgia, serif; font-size: 27px; }
.cf-welcome-body p { max-width: 285px; margin: 0; color: #697483; font-size: 13px; line-height: 1.55; }
.cf-welcome-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; width: 100%; margin-top: 28px; }
.cf-welcome-actions .btn { min-width: 0; min-height: 47px; padding: 0 9px; font-size: 11px; }

@media (max-width: 1000px) {
  .site-nav { margin-left: 4px; }
  .hero { grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr); gap: 32px; }
  .provider-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .site-header { gap: 12px; min-height: 64px; padding-top: 8px; padding-bottom: 8px; }
  .brand-caption, .site-nav { display: none; }
  .brand-mark { width: 40px; height: 40px; border-radius: 50%; }
  .brand-mark img { width: 34px; height: 34px; border-radius: 50%; }
  .brand-name { font-size: 17px; }
  .header-actions { gap: 6px; }
  .btn-header { min-height: 40px; padding: 0 10px; font-size: 10px; }
  .section { width: min(100% - 28px, var(--container)); }
  .hero { display: block; min-height: auto; padding-top: 48px; }
  .hero-copy { max-width: 620px; margin-bottom: 24px; }
  .hero h1 { font-size: var(--type-display); }
  .hero-media-wrap { max-width: 650px; margin: 0 auto; }
  .section-heading-row { display: block; }
  .section-lead { margin-top: 14px; }
  .payment-panel, .support-panel { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .site-header { padding-left: 12px; padding-right: 12px; }
  .brand-name { font-size: 16px; }
  .header-actions .js-fichas { max-width: 124px; overflow: hidden; padding: 0 9px; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
  .header-actions .js-crear-usuario { max-width: 108px; overflow: hidden; padding: 0 9px; }
  .section { width: calc(100% - 24px); }
  .hero { padding-top: 30px; padding-bottom: 38px; }
  .hero h1 { max-width: 360px; margin-bottom: 13px; font-size: clamp(39px, 12vw, 52px); }
  .hero-text { font-size: 13px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 22px; }
  .btn-hero { min-width: 0; min-height: 49px; padding: 0 9px; font-size: 11px; }
  .hero-trust { gap: 12px; margin-top: 26px; }
  .trust-item { gap: 7px; }
  .trust-item strong { font-size: 11px; }
  .trust-item small { font-size: 8px; }
  .hero-media-wrap { padding: 16px; border-radius: 21px; }
  .hero-media-top h2 { font-size: var(--type-h2); }
  .hero-video { min-height: 205px; }
  .providers-section { padding-top: 38px; padding-bottom: 38px; }
  .section-heading h2 { font-size: var(--type-h2); }
  .payment-panel, .support-panel { gap: 25px; padding: 22px 17px; border-radius: 22px; }
  .payment-copy h2, .support-copy h2 { font-size: var(--type-h2); }
  .payment-logos { grid-template-columns: repeat(2, 1fr); }
  .provider-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .provider-card { min-height: 75px; padding: 10px; }
  .support-button { min-height: 64px; padding: 9px 12px; }
  .site-footer { display: grid; width: calc(100% - 24px); gap: 7px; padding-top: 18px; font-size: 9px; }
  .site-footer span:last-child { text-align: left; }
  .cf-modal { padding: 10px; }
  .cf-modal-card { max-height: calc(100dvh - 20px); padding: 27px 17px 18px; border-radius: 20px; }
  .cf-auth-launcher { right: 14px; bottom: 15px; width: 54px; height: 54px; padding: 5px; border-radius: 16px; }
  .cf-auth-launcher-icon { width: 44px; height: 44px; }
  .cf-auth-launcher-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .cf-welcome-widget { right: 12px; bottom: 79px; width: calc(100vw - 24px); }
  .cf-welcome-body { min-height: 300px; padding: 28px 17px 22px; }
}
@media (max-width: 360px) {
  .brand-name { font-size: 15px; }
  .header-actions .js-fichas { max-width: 101px; }
  .header-actions .js-crear-usuario { max-width: 92px; }
  .header-actions .js-fichas, .header-actions .js-crear-usuario { padding: 0 7px; font-size: 9px; }
  .hero-actions { grid-template-columns: 1fr; }
  .btn-hero { width: 100%; }
  .hero-trust { flex-wrap: wrap; }
  .trust-divider { display: none; }
  .hero-media-top h2 { font-size: var(--type-h2); }
  .payment-copy h2, .support-copy h2 { font-size: var(--type-h2); }
  .cf-modal-card h2 { font-size: 31px; }
}
