/* =========================================================
   ConnectMTY public site
   Index + Planes + Registro de pago
   ========================================================= */

:root {
    --brand: #058b8c;
    --brand-dark: #003b3f;
    --brand-soft: rgba(5, 139, 140, 0.10);
    --brand-soft-2: rgba(5, 139, 140, 0.06);
    --dark: #07111f;
    --ink: #242b3a;
    --text: #344054;
    --muted: #667085;
    --line: #dbe4ee;
    --panel: #ffffff;
    --page: #edf3f7;
    --green: #149954;
    --green-soft: rgba(20, 153, 84, 0.10);
    --red: #d92d20;
    --red-soft: rgba(217, 45, 32, 0.08);
    --shadow: 0 22px 55px rgba(15, 23, 42, 0.10);
    --shadow-soft: 0 14px 32px rgba(15, 23, 42, 0.075);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 4% 0%, rgba(5, 139, 140, 0.13), transparent 26%),
        radial-gradient(circle at 96% 16%, rgba(15, 23, 42, 0.06), transparent 28%),
        linear-gradient(135deg, #f8fafc 0%, #e9f0f5 100%);
    color: var(--ink);
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    cursor: pointer;
}

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

.page-shell {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
}

/* =========================================================
   Header estilo ConnectMTY
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(219, 228, 238, 0.86);
    backdrop-filter: blur(18px);
}

.site-nav {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-block {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-logo {
    width: 76px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
}

.drawer-head {
    display: none;
}

.nav-menu a {
    color: #303746;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: 0.22s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brand);
}

.nav-menu .nav-primary {
    min-height: 38px;
    padding: 12px 20px;
    border-radius: 4px;
    background: var(--brand);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.13em;
}

.nav-menu .nav-primary:hover {
    background: var(--brand-dark);
    color: #ffffff;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 4px;
    background: var(--brand);
    color: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: 0.22s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(7, 17, 31, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
}

body.menu-open .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
}

/* =========================================================
   Shared
   ========================================================= */

.eyebrow {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
}

.btn {
    border: 0;
    border-radius: 999px;
    min-height: 44px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
    transition: 0.22s ease;
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(5, 139, 140, 0.20);
}

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

.btn-dark {
    background: var(--dark);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(7, 17, 31, 0.14);
}

.btn-dark:hover {
    background: #020617;
}

.btn-light {
    background: #ffffff;
    color: var(--brand-dark);
    border: 1px solid var(--line);
}

.btn-light:hover {
    background: var(--brand-soft);
}

/* =========================================================
   Index landing
   ========================================================= */

.landing-hero {
    position: relative;
    padding: 76px 0 58px;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(14px);
    pointer-events: none;
}

.orb-one {
    width: 420px;
    height: 420px;
    right: -130px;
    top: 70px;
    background: rgba(5, 139, 140, 0.14);
}

.orb-two {
    width: 360px;
    height: 360px;
    left: -120px;
    bottom: 0;
    background: rgba(29, 78, 216, 0.10);
}

.landing-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    align-items: center;
    gap: 58px;
}

.landing-hero-copy {
    max-width: 760px;
}

.landing-hero-copy h1 {
    max-width: 780px;
    margin-top: 18px;
    color: var(--ink);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    font-weight: 900;
}

.landing-hero-copy p {
    max-width: 650px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-proof {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(219, 228, 238, 0.86);
    color: #334155;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
    font-size: 12px;
    font-weight: 800;
}

.hero-proof i {
    color: var(--brand);
}

.landing-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-phone-glow {
    position: absolute;
    inset: 7% -12% 0;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(5, 139, 140, 0.22), transparent 58%),
        radial-gradient(circle at 80% 30%, rgba(29, 78, 216, 0.18), transparent 45%);
    filter: blur(14px);
    opacity: 0.9;
}

.hero-card-mockup {
    width: min(100%, 380px);
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.22);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.mock-cover {
    height: 150px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.mock-pattern {
    position: absolute;
    inset: -18px -18px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 15px;
    transform: rotate(-1deg);
    color: rgba(15, 23, 42, 0.42);
    font-size: 28px;
    line-height: 1.2;
}

.mock-pattern span:nth-child(2n) {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 700;
}

.mock-pattern span:nth-child(3n) {
    color: rgba(15, 23, 42, 0.24);
}

.mock-wave {
    position: absolute;
    left: -15%;
    right: -15%;
    bottom: -48px;
    height: 98px;
    background: #ffffff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow: 0 -16px 30px rgba(255, 255, 255, 0.55);
}

.mock-identity {
    text-align: center;
    padding: 0 24px 20px;
    margin-top: -54px;
    position: relative;
    z-index: 3;
}

.mock-avatar {
    width: 94px;
    height: 94px;
    border-radius: 999px;
    margin: 0 auto 17px;
    background: #e8eef5;
    color: var(--mock-color);
    border: 5px solid #ffffff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.mock-identity h2 {
    color: var(--mock-color);
    font-size: 25px;
    line-height: 1.05;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 900;
    white-space: nowrap;
}

.mock-role {
    margin-top: 12px;
    color: var(--mock-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
}

.mock-role span {
    width: 34px;
    height: 1px;
    background: rgba(29, 78, 216, 0.25);
}

.mock-role i {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--mock-color);
}

.mock-role strong {
    font-size: 11px;
    letter-spacing: 0.16em;
    font-weight: 900;
}

.mock-identity p {
    margin-top: 8px;
    color: #64748b;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mock-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.mock-actions span {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--mock-color);
    border: 1px solid rgba(29, 78, 216, 0.22);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-actions .whatsapp {
    color: #25d366;
}

.mock-actions .active {
    background: rgba(5, 139, 140, 0.08);
}

.mock-content {
    padding: 0 22px 24px;
    display: grid;
    gap: 14px;
}

.mock-website {
    min-height: 66px;
    border-radius: 20px;
    padding: 12px 14px;
    background: var(--mock-color);
    color: #ffffff;
    display: grid;
    grid-template-columns: 42px 1fr 24px;
    gap: 12px;
    align-items: center;
}

.mock-website > span {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-website small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    opacity: 0.76;
    margin-bottom: 4px;
}

.mock-website strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mock-qr {
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid rgba(29, 78, 216, 0.18);
    padding: 17px;
    text-align: center;
}

.mock-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 14px;
    color: var(--mock-color);
}

.mock-section-title span {
    width: 34px;
    height: 1px;
    background: rgba(29, 78, 216, 0.25);
}

.mock-section-title i {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--mock-color);
}

.mock-section-title strong {
    font-size: 15px;
    line-height: 1.1;
    font-weight: 900;
}

.fake-qr {
    width: 128px;
    height: 128px;
    margin: 0 auto 12px;
    padding: 9px;
    border-radius: 15px;
    background: #ffffff;
    border: 3px solid var(--mock-color);
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(9, 1fr);
    gap: 3px;
}

.fake-qr b {
    border-radius: 2px;
    background: transparent;
}

.fake-qr b.on {
    background: #111827;
}

.mock-qr p {
    max-width: 230px;
    margin: 0 auto;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.mock-share {
    min-height: 48px;
    border-radius: 18px;
    border: 1px solid rgba(29, 78, 216, 0.22);
    color: var(--mock-color);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 900;
}

.floating-stat {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-stat i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-stat strong {
    display: block;
    color: var(--ink);
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
}

.floating-stat span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.stat-one {
    top: 70px;
    left: -38px;
}

.stat-two {
    right: -32px;
    bottom: 110px;
}

.benefits-section,
.showcase-section,
.audience-section,
.final-cta-section {
    padding: 38px 0;
}

.section-heading-clean {
    max-width: 720px;
    margin-bottom: 22px;
}

.section-heading-clean h2,
.showcase-head h2,
.audience-card h2,
.final-cta-card h2 {
    margin-top: 13px;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.06;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.section-heading-clean p,
.showcase-head p,
.final-cta-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.benefit-card > span {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.benefit-card h3 {
    margin-top: 16px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.benefit-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;
}

.showcase-head {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: end;
    margin-bottom: 22px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mini-card-preview {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    padding: 0 18px 18px;
    overflow: hidden;
    text-align: center;
}

.mini-cover {
    height: 96px;
    margin: 0 -18px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.45), transparent),
        var(--mock-color);
    color: rgba(255, 255, 255, 0.74);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mini-avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    margin: -36px auto 14px;
    border: 5px solid #ffffff;
    background: #eef2f7;
    color: var(--mock-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.mini-card-preview h3 {
    color: var(--mock-color);
    font-size: 19px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mini-card-preview small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

.mini-icons {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
}

.mini-icons i {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    color: var(--mock-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.mini-site {
    min-height: 42px;
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 16px;
    background: var(--mock-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 800;
}

.audience-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    padding: 26px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 30px;
    align-items: center;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.audience-tags span {
    min-height: 40px;
    padding: 11px 14px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid var(--line);
    color: #334155;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.final-cta-card {
    background:
        radial-gradient(circle at top left, rgba(5, 139, 140, 0.26), transparent 35%),
        linear-gradient(135deg, var(--brand-dark), var(--dark));
    color: #ffffff;
    border-radius: 32px;
    padding: 34px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.final-cta-card .eyebrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.final-cta-card h2 {
    color: #ffffff;
    max-width: 640px;
}

.final-cta-card p {
    color: rgba(255, 255, 255, 0.72);
}

.final-cta-actions {
    display: grid;
    gap: 10px;
    min-width: 210px;
}

/* =========================================================
   Planes comparativa
   ========================================================= */

.compare-hero {
    padding: 62px 0 30px;
}

.compare-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: end;
}

.compare-hero-copy {
    max-width: 820px;
}

.compare-hero-copy h1 {
    max-width: 820px;
    margin-top: 15px;
    color: var(--ink);
    font-size: clamp(34px, 5.2vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.compare-hero-copy p {
    max-width: 700px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
}

.compare-hero-note {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.compare-hero-note > i {
    width: 36px;
    height: 36px;
    border-radius: 13px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.compare-hero-note strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 4px;
}

.compare-hero-note span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 500;
}

.compare-section {
    padding: 18px 0 32px;
}

.compare-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 14px;
    overflow: hidden;
}

.compare-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: 22px;
}

.compare-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
    table-layout: fixed;
    background: #ffffff;
    overflow: hidden;
}

.compare-table th,
.compare-table td {
    border: 1px solid #edf2f7;
    padding: 16px 14px;
    vertical-align: middle;
}

.compare-table thead th {
    border-top: 0;
}

.compare-table th:first-child,
.compare-table td:first-child {
    border-left: 0;
}

.compare-table th:last-child,
.compare-table td:last-child {
    border-right: 0;
}

.compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.feature-head {
    width: 30%;
    text-align: left;
    background: #f8fafc;
}

.feature-head span {
    display: block;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.feature-head small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 500;
}

.plan-head-cell {
    position: relative;
    text-align: center;
    background: #fbfdff;
}

.plan-head-cell.featured {
    background: rgba(5, 139, 140, 0.045);
}

.plan-head-cell small {
    display: block;
    color: var(--brand);
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.plan-head-cell strong {
    display: block;
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.plan-head-cell em {
    display: block;
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    font-style: normal;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 7px;
}

.plan-head-cell > span:not(.table-badge) {
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
}

.table-badge {
    width: max-content;
    margin: 0 auto 12px;
    display: block;
    background: var(--brand);
    color: #ffffff;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-name {
    background: #ffffff;
    color: #334155;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    text-align: left;
}

.compare-table td:not(.feature-name) {
    text-align: center;
    color: #334155;
}

.compare-table td.featured {
    background: rgba(5, 139, 140, 0.035);
}

.compare-check {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    margin: 0 auto;
    background: var(--green-soft);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.compare-dash {
    color: #94a3b8;
    font-weight: 700;
}

.compare-text {
    color: #334155;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
}

.cta-row td {
    background: #f8fafc;
}

.cta-row td.featured {
    background: rgba(5, 139, 140, 0.07);
}

.table-pay-button {
    width: 100%;
    min-height: 40px;
    border-radius: 999px;
    background: var(--dark);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    transition: 0.22s ease;
}

.table-pay-button:hover {
    transform: translateY(-1px);
    background: #020617;
}

.table-pay-button.primary {
    background: var(--brand);
}

.table-pay-button.primary:hover {
    background: var(--brand-dark);
}

.table-receipt-link {
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
    color: var(--brand-dark);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 900;
}

.table-receipt-link:hover {
    text-decoration: underline;
}

/* =========================================================
   Proceso
   ========================================================= */

.process-section {
    padding: 4px 0 38px;
}

.process-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.process-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.process-head h2 {
    max-width: 620px;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 900;
    text-align: right;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
    align-items: stretch;
    gap: 10px;
}

.process-step {
    min-height: 148px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 16px;
}

.process-step span {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    background: var(--brand);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.process-step strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 7px;
}

.process-step p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 500;
}

.process-arrow {
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   Registro de pago
   ========================================================= */

.payment-body {
    background:
        radial-gradient(circle at 4% 4%, rgba(5, 139, 140, 0.13), transparent 30%),
        radial-gradient(circle at 96% 96%, rgba(15, 23, 42, 0.09), transparent 30%),
        linear-gradient(135deg, #f8fafc 0%, #e6edf4 100%);
}

.payment-page {
    padding: 32px 0 40px;
}

.payment-shell {
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 20px;
    align-items: stretch;
}

.payment-summary,
.payment-form-card,
.success-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.payment-summary {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 35%),
        linear-gradient(135deg, var(--brand-dark), #07111f);
    color: #ffffff;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.payment-brand {
    color: #ffffff;
}

.summary-content {
    margin-top: auto;
    padding-top: 40px;
}

.summary-content h1 {
    margin-top: 14px;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.06em;
    color: #ffffff;
}

.summary-content p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.65;
}

.summary-pills {
    margin-top: 18px;
    display: grid;
    gap: 9px;
}

.summary-pills span {
    width: max-content;
    max-width: 100%;
    border-radius: 999px;
    padding: 8px 11px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.88);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
}

.summary-pay-btn {
    margin-top: 18px;
    width: 100%;
}

.summary-help {
    margin-top: 22px;
    padding: 13px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    gap: 10px;
    font-size: 12px;
    line-height: 1.5;
}

.payment-form-card {
    padding: 26px 32px;
}

.form-heading {
    margin-bottom: 18px;
}

.form-heading h2 {
    margin-top: 12px;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.form-heading p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.payment-form {
    display: grid;
    gap: 16px;
}

.form-block {
    display: grid;
    gap: 12px;
}

.form-block h3 {
    color: #334155;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-block h3 i {
    color: var(--brand);
}

.grid,
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    color: #334155;
    font-size: 12px;
    font-weight: 900;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8fafc;
    color: var(--ink);
    padding: 10px 13px;
    outline: none;
    transition: 0.22s ease;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--brand);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(5, 139, 140, 0.08);
}

.hint {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.hint-placeholder {
    visibility: hidden;
}

.password-wrap {
    position: relative;
}

.password-wrap input {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 9px;
    top: 50%;
    width: 34px;
    height: 34px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
}

.password-toggle:hover {
    background: var(--brand-soft);
    color: var(--brand);
}

.upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 14px;
    cursor: pointer;
    background: #f8fafc;
    transition: 0.22s ease;
}

.upload-box:hover,
.upload-box.has-file {
    border-color: var(--brand);
    background: var(--brand-soft-2);
}

.upload-box input {
    display: none;
}

.upload-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex: 0 0 auto;
}

.upload-copy {
    display: grid;
    gap: 3px;
}

.upload-copy strong {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

.upload-copy small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
}

.notice-box {
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    color: #115e59;
    border-radius: 16px;
    padding: 13px;
    display: flex;
    gap: 10px;
    font-size: 12px;
    line-height: 1.6;
}

.form-actions,
.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.errors {
    background: var(--red-soft);
    border: 1px solid rgba(217, 45, 32, 0.16);
    color: #991b1b;
    border-radius: 16px;
    padding: 13px 16px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
}

.errors ul {
    margin-left: 18px;
}

.success-card {
    grid-column: 1 / -1;
    max-width: 680px;
    margin: 0 auto;
    padding: 36px;
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 26px;
    margin: 0 auto 18px;
    background: var(--green-soft);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.success-card h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    margin: 14px 0 12px;
}

.success-card p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 20px;
}

.success-steps {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.success-steps div {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 11px;
    text-align: left;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

.success-steps i {
    color: var(--brand);
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    margin-top: 34px;
    padding: 38px 0 22px;
    background:
        radial-gradient(circle at top left, rgba(5, 139, 140, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,0.74), rgba(248,250,252,0.92));
    border-top: 1px solid rgba(219, 228, 238, 0.90);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr 0.8fr;
    gap: 26px;
    align-items: start;
}

.footer-logo {
    width: 82px;
    height: 70px;
    display: block;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand p {
    max-width: 370px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    font-weight: 500;
}

.footer-col {
    display: grid;
    gap: 9px;
}

.footer-col h3 {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 3px;
}

.footer-col a {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    transition: 0.22s ease;
}

.footer-col a:hover {
    color: var(--brand);
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.footer-bottom a {
    color: var(--brand);
    font-weight: 900;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.28);
    z-index: 60;
    font-size: 23px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1120px) {
    .landing-hero-grid {
        grid-template-columns: 1fr 390px;
        gap: 32px;
    }

    .nav-menu {
        gap: 18px;
    }

    .stat-one {
        left: -12px;
    }

    .stat-two {
        right: -10px;
    }
}

@media (max-width: 1080px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-arrow {
        transform: rotate(90deg);
        min-height: 28px;
    }
}

@media (max-width: 980px) {
    .site-nav {
        min-height: 76px;
    }

    .brand-logo {
        width: 70px;
        height: 64px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 90;
        width: min(82vw, 290px);
        height: 100dvh;
        background:
            linear-gradient(135deg, rgba(255,255,255,0.96), rgba(240, 249, 250, 0.96));
        border-right: 1px solid var(--line);
        box-shadow: 18px 0 60px rgba(15, 23, 42, 0.18);
        padding: 22px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        transform: translateX(-105%);
        opacity: 1;
        pointer-events: none;
        transition: 0.26s ease;
    }

    body.menu-open .nav-menu {
        transform: translateX(0);
        pointer-events: auto;
    }

    .drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 46px;
    }

    .drawer-logo {
        width: 66px;
        height: 58px;
        display: block;
    }

    .drawer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .drawer-close {
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 999px;
        background: transparent;
        color: var(--brand-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .nav-menu a:not(.drawer-logo) {
        min-height: 42px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #303746;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .nav-menu a:not(.drawer-logo):hover,
    .nav-menu a:not(.drawer-logo).active {
        color: var(--brand);
    }

    .nav-menu .nav-primary {
        width: max-content;
        min-height: 36px;
        margin: 12px auto 0;
        padding: 12px 18px;
        border-radius: 4px;
        color: #ffffff;
    }

    .landing-hero-grid,
    .compare-hero-grid,
    .payment-shell,
    .showcase-head,
    .audience-card {
        grid-template-columns: 1fr;
    }

    .landing-visual {
        order: -1;
    }

    .hero-card-mockup {
        width: min(100%, 360px);
    }

    .compare-hero-note {
        max-width: 520px;
    }

    .benefits-grid,
    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .payment-shell {
        max-width: 720px;
    }

    .summary-content {
        margin-top: 34px;
    }

    .final-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-cta-actions {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: min(100% - 24px, 1180px);
    }

    .site-nav {
        min-height: 70px;
    }

    .brand-logo {
        width: 64px;
        height: 58px;
    }

    .landing-hero,
    .compare-hero {
        padding-top: 30px;
    }

    .landing-hero-copy h1,
    .compare-hero-copy h1 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .landing-hero-copy p,
    .compare-hero-copy p {
        font-size: 14px;
    }

    .landing-actions .btn,
    .final-cta-actions .btn {
        width: 100%;
    }

    .hero-proof {
        display: grid;
    }

    .floating-stat {
        display: none;
    }

    .benefits-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .compare-card {
        padding: 8px;
        border-radius: 24px;
    }

    .process-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .process-head h2 {
        text-align: left;
    }

    .payment-page {
        padding: 22px 0 32px;
    }

    .payment-shell {
        width: min(100% - 24px, 1120px);
    }

    .payment-summary,
    .payment-form-card,
    .success-card {
        padding: 22px;
        border-radius: 24px;
    }

    .grid,
    .form-grid,
    .grid-three {
        grid-template-columns: 1fr;
    }

    .form-actions .btn,
    .success-actions .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 21px;
    }
}

@media (max-width: 460px) {
    .payment-page {
        padding: 18px 0 28px;
    }

    .upload-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-card-mockup {
        border-radius: 24px;
    }

    .mock-identity h2 {
        font-size: 21px;
        letter-spacing: 0.08em;
    }

    .mock-actions span {
        width: 42px;
        height: 42px;
    }

    .fake-qr {
        width: 118px;
        height: 118px;
    }

    .final-cta-card {
        padding: 24px;
        border-radius: 26px;
    }

    .final-cta-actions {
        grid-template-columns: 1fr;
    }
}