:root {
    --mc-bg: #f4f7fb;
    --mc-surface: #ffffff;
    --mc-surface-soft: #f7f9fc;
    --mc-text: #101828;
    --mc-muted: #667085;
    --mc-primary: #2463ff;
    --mc-primary-dark: #1748db;
    --mc-secondary: #071426;
    --mc-border: #e2e8f0;
    --mc-green: #16a34a;
    --mc-purple: #6d43ff;
    --mc-orange: #f59e0b;
    --mc-radius-xl: 30px;
    --mc-radius-lg: 20px;
    --mc-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
            Inter,
            system-ui,
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            sans-serif;
    color: var(--mc-text);
    background: var(--mc-bg);
}

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

button {
    font: inherit;
}

.mc-landing-container {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

/* =========================
   HERO
   ========================= */

.mc-video-hero {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    color: #ffffff;
    background:
            radial-gradient(
                    circle at 12% 22%,
                    rgba(37, 99, 235, 0.30),
                    transparent 28%
            ),
            radial-gradient(
                    circle at 78% 18%,
                    rgba(99, 102, 241, 0.22),
                    transparent 24%
            ),
            radial-gradient(
                    circle at 88% 72%,
                    rgba(245, 158, 11, 0.12),
                    transparent 20%
            ),
            linear-gradient(
                    115deg,
                    #071224 0%,
                    #061425 32%,
                    #04111f 62%,
                    #0a1330 100%
            );
}

.mc-video-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 110px;
    background:
            linear-gradient(
                    180deg,
                    rgba(244, 247, 251, 0) 0%,
                    rgba(244, 247, 251, 0.22) 54%,
                    rgba(244, 247, 251, 1) 100%
            );
    pointer-events: none;
    z-index: 2;
}

.mc-hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.mc-hero-background-gradient {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    90deg,
                    rgba(3, 10, 20, 0.92) 0%,
                    rgba(4, 16, 30, 0.82) 34%,
                    rgba(3, 15, 28, 0.40) 64%,
                    rgba(4, 13, 25, 0.58) 100%
            ),
            linear-gradient(
                    180deg,
                    rgba(5, 12, 23, 0.24) 0%,
                    rgba(6, 13, 24, 0.04) 40%,
                    rgba(5, 11, 21, 0.88) 100%
            );
}

.mc-hero-background-grid {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
            linear-gradient(
                    rgba(255, 255, 255, 0.08) 1px,
                    transparent 1px
            ),
            linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.08) 1px,
                    transparent 1px
            );
    background-size: 46px 46px;
    mask-image:
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.85),
                    rgba(0, 0, 0, 0.18)
            );
    -webkit-mask-image:
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.85),
                    rgba(0, 0, 0, 0.18)
            );
}

.mc-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.75;
}

.mc-hero-orb-one {
    width: 360px;
    height: 360px;
    left: -80px;
    top: 120px;
    background: rgba(37, 99, 235, 0.22);
}

.mc-hero-orb-two {
    width: 280px;
    height: 280px;
    right: 10%;
    top: 90px;
    background: rgba(99, 102, 241, 0.18);
}

.mc-hero-orb-three {
    width: 220px;
    height: 220px;
    right: 18%;
    bottom: 120px;
    background: rgba(245, 158, 11, 0.08);
}

.mc-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
            radial-gradient(
                    rgba(255, 255, 255, 0.7) 0.7px,
                    transparent 0.7px
            );
    background-size: 18px 18px;
}

/* =========================
   HEADER
   ========================= */

.mc-landing-header {
    position: relative;
    z-index: 10;
    padding-top: 16px;
}

.mc-header-inner {
    min-height: 66px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    background:
            linear-gradient(
                    135deg,
                    rgba(10, 25, 45, 0.88),
                    rgba(7, 18, 34, 0.82)
            );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mc-brand {
    min-height: 50px;
    padding: 5px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background:
            linear-gradient(
                    135deg,
                    rgba(255, 255, 255, 0.96),
                    rgba(241, 245, 249, 0.92)
            );
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
            0 10px 28px rgba(0, 0, 0, 0.20),
            inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

.mc-brand-logo {
    height: 43px;
    width: auto;
    display: block;
    filter: none;
}

.mc-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 750;
}

.mc-nav a {
    transition:
            color 0.16s ease,
            transform 0.16s ease;
}

.mc-nav a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.mc-nav-login {
    margin-left: 12px;
}

.mc-nav-cta {
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 999px;
    background:
            linear-gradient(
                    135deg,
                    #2463ff,
                    #315cff
            );
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
            0 12px 28px rgba(36, 99, 255, 0.32),
            inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* =========================
   HERO CONTENT
   ========================= */

.mc-video-hero-content {
    position: relative;
    z-index: 4;
    min-height: 708px;
    padding-top: 54px;
    padding-bottom: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mc-video-hero-copy {
    position: relative;
    z-index: 3;
    max-width: 660px;
}

.mc-hero-dashboard-visual {
    position: absolute;
    z-index: 1;
    top: 112px;
    right: max(-110px, calc((100vw - 1380px) / 2 - 120px));
    width: min(830px, 58vw);
    pointer-events: none;
    opacity: 0.96;
    filter: drop-shadow(0 34px 80px rgba(17, 74, 180, 0.32));
}

.mc-hero-dashboard-visual::before {
    content: "";
    position: absolute;
    inset: -6% 0 -2% -15%;
    z-index: 1;
    background:
            linear-gradient(
                    90deg,
                    rgba(5, 13, 25, 0.50) 0%,
                    rgba(5, 13, 25, 0.12) 38%,
                    rgba(5, 13, 25, 0) 72%
            );
}

.mc-hero-dashboard-visual img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
}

.mc-video-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(73, 133, 255, 0.56);
    background: rgba(7, 20, 37, 0.62);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 750;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mc-video-pill span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3d7cff;
    box-shadow: 0 0 14px rgba(61, 124, 255, 0.9);
}

.mc-video-hero-copy h1 {
    margin: 22px 0 0;
    max-width: 650px;
    font-size: clamp(50px, 5.2vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #ffffff;
}

.mc-video-hero-copy h1 strong {
    font-weight: inherit;
    background:
            linear-gradient(
                    90deg,
                    #2681ff,
                    #4966ff,
                    #8047ff
            );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mc-video-hero-copy p {
    max-width: 580px;
    margin: 25px 0 0;
    color: rgba(229, 237, 248, 0.84);
    font-size: 18px;
    line-height: 1.62;
    font-weight: 480;
}

.mc-hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.mc-btn {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
    transition:
            transform 0.18s ease,
            box-shadow 0.18s ease,
            background 0.18s ease;
}

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

.mc-btn-primary {
    color: #ffffff;
    background:
            linear-gradient(
                    135deg,
                    #2463ff,
                    #315cff
            );
    box-shadow: 0 16px 35px rgba(36, 99, 255, 0.34);
}

.mc-btn-primary:hover {
    box-shadow: 0 21px 42px rgba(36, 99, 255, 0.42);
}

.mc-btn-hero-secondary {
    color: #ffffff;
    background: rgba(7, 19, 35, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* =========================
   HERO FEATURE CARDS
   ========================= */

.mc-hero-features {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mc-hero-feature-card {
    min-height: 118px;
    padding: 17px;
    display: grid;
    grid-template-columns: 46px 1fr 32px;
    gap: 13px;
    align-items: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
            linear-gradient(
                    135deg,
                    rgba(16, 35, 61, 0.82),
                    rgba(7, 23, 43, 0.74)
            );
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    transition:
            transform 0.2s ease,
            border-color 0.2s ease,
            background 0.2s ease;
}

.mc-hero-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.24);
    background:
            linear-gradient(
                    135deg,
                    rgba(21, 45, 77, 0.94),
                    rgba(8, 29, 53, 0.88)
            );
}

.mc-hero-feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 950;
}

.mc-hero-feature-icon.is-blue {
    background: #2463ff;
}

.mc-hero-feature-icon.is-green {
    background: #16b968;
}

.mc-hero-feature-icon.is-purple {
    background: #7147ff;
}

.mc-hero-feature-icon.is-orange {
    background: #ff9f0a;
}

.mc-hero-feature-card strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.mc-hero-feature-card p {
    margin: 5px 0 0;
    color: rgba(218, 228, 241, 0.72);
    font-size: 12px;
    line-height: 1.45;
}

.mc-hero-feature-arrow {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
}

/* =========================
   TRUST STRIP
   ========================= */

.mc-trust-strip-section {
    position: relative;
    z-index: 8;
    margin-top: -1px;
    background: #f4f7fb;
}

.mc-trust-strip {
    position: relative;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--mc-border);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.13);
}

.mc-trust-item {
    position: relative;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mc-trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    width: 1px;
    height: 50%;
    background: var(--mc-border);
}

.mc-trust-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 950;
}

.mc-trust-icon.is-blue {
    color: #2463ff;
    background: #eaf1ff;
}

.mc-trust-icon.is-green {
    color: #16a34a;
    background: #eafbf2;
}

.mc-trust-icon.is-purple {
    color: #7147ff;
    background: #f0ecff;
}

.mc-trust-icon.is-orange {
    color: #f59e0b;
    background: #fff5dd;
}

.mc-trust-item strong {
    display: block;
    color: #101828;
    font-size: 14px;
}

.mc-trust-item span:not(.mc-trust-icon) {
    display: block;
    margin-top: 4px;
    color: var(--mc-muted);
    font-size: 12px;
}

/* =========================
   TRUSTED CLUBS CAROUSEL
   ========================= */

.mc-club-trust-section {
    padding: 38px 0 30px;
    overflow: hidden;
    background:
            radial-gradient(
                    circle at 12% 20%,
                    rgba(36, 99, 255, 0.10),
                    transparent 28%
            ),
            #f4f7fb;
}

.mc-club-trust-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.mc-club-trust-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 13px;
    border: 1px solid rgba(36, 99, 255, 0.18);
    border-radius: 999px;
    color: var(--mc-primary);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mc-club-trust-heading > span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mc-primary);
    box-shadow: 0 0 16px rgba(36, 99, 255, 0.72);
}

.mc-club-trust-heading h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(29px, 3.4vw, 43px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.mc-club-trust-heading p {
    max-width: 650px;
    margin: 16px auto 0;
    color: var(--mc-muted);
    font-size: 16px;
    line-height: 1.65;
}

.mc-club-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    background:
            linear-gradient(
                    135deg,
                    rgba(255, 255, 255, 0.95),
                    rgba(248, 250, 252, 0.88)
            );
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.10);
}

.mc-club-carousel::before,
.mc-club-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.mc-club-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.mc-club-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.mc-club-carousel-track {
    width: max-content;
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 24px;
    animation: mcClubLogoMarquee 34s linear infinite;
}

.mc-club-carousel:hover .mc-club-carousel-track {
    animation-play-state: paused;
}

.mc-club-logo-card {
    width: 210px;
    min-height: 148px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 22px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background:
            linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 0.98),
                    rgba(248, 250, 252, 0.94)
            );
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    transition:
            transform 0.18s ease,
            box-shadow 0.18s ease,
            border-color 0.18s ease;
}

.mc-club-logo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(36, 99, 255, 0.22);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.11);
}

.mc-club-logo-frame {
    width: 88px;
    height: 88px;
    padding: 12px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.mc-club-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.mc-club-logo-frame.is-initial {
    color: #ffffff;
    background:
            radial-gradient(
                    circle at 30% 20%,
                    rgba(255, 255, 255, 0.34),
                    transparent 28%
            ),
            linear-gradient(135deg, #2463ff, #7147ff);
    border-color: rgba(36, 99, 255, 0.16);
    box-shadow: 0 18px 36px rgba(36, 99, 255, 0.22);
}

.mc-club-logo-frame strong {
    font-size: 36px;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.mc-club-logo-name {
    max-width: 100%;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes mcClubLogoMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================
   SECTIONS
   ========================= */

.mc-section {
    padding: 86px 0;
}

.mc-section-soft {
    background: #ffffff;
}

.mc-section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.mc-section-heading > span,
.mc-section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--mc-primary);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.mc-section-heading h2,
.mc-feature-content h2,
.mc-portal-content h2,
.mc-dark-grid h2,
.mc-contact-card h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(31px, 4vw, 47px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.mc-section-heading p,
.mc-feature-content p,
.mc-portal-content p,
.mc-dark-grid p,
.mc-contact-card p {
    margin: 18px 0 0;
    color: var(--mc-muted);
    font-size: 17px;
    line-height: 1.7;
}

/* =========================
   BENEFITS
   ========================= */

.mc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mc-card {
    padding: 24px;
    border: 1px solid var(--mc-border);
    border-radius: var(--mc-radius-lg);
    background: var(--mc-surface);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.mc-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #eef4ff;
    font-size: 24px;
}

.mc-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 19px;
}

.mc-card p {
    margin: 0;
    color: var(--mc-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* =========================
   MERCADOPAGO HIGHLIGHT
   ========================= */

.mc-mercadopago-section {
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(
                    circle at 12% 20%,
                    rgba(0, 158, 227, 0.14),
                    transparent 30%
            ),
            radial-gradient(
                    circle at 88% 70%,
                    rgba(36, 99, 255, 0.11),
                    transparent 28%
            ),
            #eef6ff;
}

.mc-mercadopago-card {
    position: relative;
    padding: 46px;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 42px;
    align-items: center;
    border: 1px solid rgba(148, 197, 255, 0.58);
    border-radius: 42px;
    background:
            linear-gradient(
                    145deg,
                    rgba(255, 255, 255, 0.95),
                    rgba(244, 250, 255, 0.88) 56%,
                    rgba(229, 242, 255, 0.90)
            );
    box-shadow: 0 26px 72px rgba(15, 68, 130, 0.14);
}

.mc-mercadopago-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
            linear-gradient(
                    135deg,
                    rgba(0, 158, 227, 0.10),
                    transparent 38%,
                    rgba(36, 99, 255, 0.10)
            );
}

.mc-mercadopago-content,
.mc-mercadopago-highlight {
    position: relative;
    z-index: 1;
}

.mc-mercadopago-content h2 {
    max-width: 780px;
    margin: 0;
    color: #0f172a;
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.mc-mercadopago-content p {
    max-width: 720px;
    margin: 18px 0 0;
    color: #475467;
    font-size: 17px;
    line-height: 1.72;
}

.mc-mercadopago-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 11px 7px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(148, 197, 255, 0.46);
    box-shadow: 0 12px 30px rgba(15, 68, 130, 0.08);
}

.mc-mercadopago-kicker img {
    width: 32px;
    height: auto;
    display: block;
    border-radius: 7px;
}

.mc-mercadopago-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.mc-mercadopago-highlight {
    padding: 28px;
    border-radius: 34px;
    color: #ffffff;
    background:
            radial-gradient(
                    circle at 18% 18%,
                    rgba(255, 255, 255, 0.28),
                    transparent 25%
            ),
            linear-gradient(
                    135deg,
                    #009ee3,
                    #2463ff
            );
    box-shadow: 0 24px 60px rgba(0, 115, 190, 0.28);
}

.mc-mercadopago-payment-card {
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    box-shadow: 0 20px 45px rgba(2, 42, 87, 0.18);
}

.mc-mercadopago-payment-card span {
    display: block;
    color: var(--mc-primary);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mc-mercadopago-payment-card strong {
    display: block;
    margin-top: 8px;
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.mc-mercadopago-payment-card p {
    margin: 12px 0 0;
    color: var(--mc-muted);
    font-size: 15px;
    line-height: 1.6;
}

.mc-mercadopago-benefits {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.mc-mercadopago-benefits div {
    padding: 13px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14px;
    font-weight: 850;
}

.mc-mercadopago-benefits span {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #0475b7;
    background: #ffffff;
    font-size: 13px;
    font-weight: 950;
}

/* =========================
   DASHBOARD SHOWCASE
   ========================= */

.mc-feature-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 44px;
    align-items: center;
}

.mc-feature-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.mc-feature-list div {
    padding: 15px 17px;
    border: 1px solid var(--mc-border);
    border-radius: 17px;
    background: #f8fafc;
}

.mc-feature-list strong {
    display: block;
    margin-bottom: 5px;
    color: #111827;
}

.mc-feature-list span {
    color: var(--mc-muted);
    line-height: 1.5;
}

.mc-dashboard-showcase {
    min-height: 560px;
    padding: 16px;
    display: grid;
    grid-template-columns: 178px 1fr;
    gap: 10px;
    border: 1px solid var(--mc-border);
    border-radius: 28px;
    background: #f7f9fc;
    box-shadow: var(--mc-shadow);
}

.mc-product-window {
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(circle at top right, rgba(36, 99, 255, 0.10), transparent 30%),
            #f7f9fc;
}

.mc-product-window::before {
    content: "";
    position: absolute;
    left: 230px;
    right: 24px;
    top: 18px;
    height: 1px;
    background: linear-gradient(90deg, rgba(36, 99, 255, 0.26), transparent);
}

.mc-dashboard-sidebar-preview {
    position: relative;
    z-index: 1;
    padding: 16px 12px;
    border-radius: 20px;
    background:
            linear-gradient(
                    180deg,
                    #071426,
                    #0c1d33
            );
    color: rgba(255, 255, 255, 0.75);
}

.mc-product-sidebar-brand {
    min-height: 74px;
    margin-bottom: 16px;
    padding: 11px;
    display: grid;
    gap: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.mc-product-sidebar-brand img {
    width: 104px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.mc-product-sidebar-brand span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mc-dashboard-sidebar-preview div {
    margin-bottom: 8px;
    padding: 11px 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 750;
}

.mc-dashboard-sidebar-preview div.is-active {
    color: #ffffff;
    background: #2463ff;
    box-shadow: 0 8px 20px rgba(36, 99, 255, 0.32);
}

.mc-dashboard-content-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mc-admin-screen-preview {
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(106px, auto);
    padding: 4px;
}

.mc-admin-preview-topbar {
    grid-column: 1 / -1;
    min-height: 74px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--mc-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.mc-admin-preview-topbar span {
    display: block;
    color: var(--mc-primary);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mc-admin-preview-topbar strong {
    display: block;
    margin-top: 4px;
    color: #0f172a;
    font-size: 19px;
    letter-spacing: -0.04em;
}

.mc-admin-preview-topbar button {
    min-height: 38px;
    border: 0;
    border-radius: 999px;
    padding: 0 15px;
    color: #ffffff;
    background: var(--mc-primary);
    box-shadow: 0 12px 24px rgba(36, 99, 255, 0.26);
    font-size: 12px;
    font-weight: 900;
}

.mc-dashboard-preview-card {
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--mc-border);
    border-radius: 18px;
    background: #ffffff;
}

.mc-admin-screen-preview .mc-dashboard-preview-card {
    grid-column: span 1;
}

.mc-admin-screen-preview .mc-dashboard-preview-card.is-list {
    grid-column: span 2;
}

.mc-dashboard-preview-card > span {
    color: var(--mc-muted);
    font-size: 11px;
    font-weight: 800;
}

.mc-dashboard-preview-card > strong {
    display: block;
    margin-top: 12px;
    color: #101828;
    font-size: 26px;
    letter-spacing: -0.04em;
}

.mc-dashboard-preview-card > small {
    display: block;
    margin-top: 6px;
    color: var(--mc-green);
    font-size: 10px;
    font-weight: 800;
}

.mc-chart-line {
    height: 70px;
    margin-top: 16px;
    display: flex;
    align-items: flex-end;
    gap: 7px;
}

.mc-chart-line i {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: #eaf1ff;
    border-top: 2px solid #2463ff;
}

.mc-chart-line i:nth-child(1) {
    height: 20%;
}

.mc-chart-line i:nth-child(2) {
    height: 34%;
}

.mc-chart-line i:nth-child(3) {
    height: 29%;
}

.mc-chart-line i:nth-child(4) {
    height: 51%;
}

.mc-chart-line i:nth-child(5) {
    height: 46%;
}

.mc-chart-line i:nth-child(6) {
    height: 82%;
}

.mc-progress {
    height: 8px;
    margin-top: 36px;
    overflow: hidden;
    border-radius: 999px;
    background: #e5e7eb;
}

.mc-progress span {
    width: 82%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: #16b968;
}

.mc-dashboard-preview-card.is-list p {
    margin: 13px 0 0;
    padding-top: 11px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--mc-muted);
    border-top: 1px solid var(--mc-border);
    font-size: 11px;
}

.mc-dashboard-preview-card.is-list p strong {
    color: #101828;
}

.mc-preview-badge {
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 950;
}

.mc-preview-badge.is-warning {
    color: #92400e !important;
    background: #fef3c7;
}

.mc-preview-badge.is-success {
    color: #166534 !important;
    background: #dcfce7;
}

.mc-preview-badge.is-info {
    color: #1d4ed8 !important;
    background: #dbeafe;
}

.mc-admin-table-preview,
.mc-admin-payment-preview {
    grid-column: span 2;
    padding: 16px;
    border: 1px solid var(--mc-border);
    border-radius: 18px;
    background: #ffffff;
}

.mc-admin-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.mc-admin-table-header strong,
.mc-admin-payment-preview strong {
    color: #0f172a;
    font-size: 14px;
    font-weight: 950;
}

.mc-admin-table-header span,
.mc-admin-payment-preview span {
    color: var(--mc-primary);
    font-size: 11px;
    font-weight: 900;
}

.mc-admin-table-row {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 10px 0;
    border-top: 1px solid var(--mc-border);
}

.mc-admin-avatar {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: var(--mc-primary);
    font-size: 11px;
    font-weight: 950;
}

.mc-admin-avatar.is-purple {
    background: var(--mc-purple);
}

.mc-admin-table-row div {
    min-width: 0;
}

.mc-admin-table-row strong,
.mc-admin-table-row small {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mc-admin-table-row strong {
    color: #0f172a;
    font-size: 12px;
}

.mc-admin-table-row small {
    margin-top: 3px;
    color: var(--mc-muted);
    font-size: 10px;
    font-weight: 800;
}

.mc-admin-table-row b {
    color: #0f172a;
    font-size: 12px;
}

.mc-admin-payment-preview {
    background:
            radial-gradient(circle at top right, rgba(22, 185, 104, 0.14), transparent 38%),
            #ffffff;
}

.mc-admin-payment-preview strong,
.mc-admin-payment-preview small {
    display: block;
}

.mc-admin-payment-preview strong {
    margin-top: 10px;
}

.mc-admin-payment-preview small {
    margin-top: 8px;
    color: var(--mc-muted);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.45;
}

/* =========================
   PORTAL
   ========================= */

.mc-portal-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: center;
}

.mc-phone-card {
    display: flex;
    justify-content: center;
}

.mc-phone {
    width: 285px;
    min-height: 520px;
    padding: 14px;
    border-radius: 38px;
    background: #111827;
    box-shadow: var(--mc-shadow);
}

.mc-portal-phone-preview {
    width: 318px;
    min-height: 575px;
    background:
            linear-gradient(145deg, #0f172a, #020617);
}

.mc-phone-header {
    width: 90px;
    height: 6px;
    margin: 8px auto 18px;
    border-radius: 999px;
    background: #374151;
}

.mc-phone-content {
    min-height: 460px;
    padding: 22px;
    border-radius: 28px;
    background: #ffffff;
}

.mc-portal-phone-preview .mc-phone-content {
    min-height: 515px;
    background:
            radial-gradient(circle at top left, rgba(36, 99, 255, 0.14), transparent 34%),
            #f8fafc;
}

.mc-portal-app-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mc-portal-club-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #ffffff;
    background: var(--mc-primary);
    font-weight: 950;
    box-shadow: 0 14px 26px rgba(36, 99, 255, 0.24);
}

.mc-portal-app-header small {
    display: block;
    color: var(--mc-muted);
    font-size: 11px;
    font-weight: 900;
}

.mc-portal-app-header h4 {
    margin: 2px 0 0;
    font-size: 19px;
}

.mc-portal-status-card {
    margin-bottom: 13px;
    padding: 18px;
    border-radius: 22px;
    color: #ffffff;
    background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
            linear-gradient(135deg, #2463ff, #7147ff);
    box-shadow: 0 18px 34px rgba(36, 99, 255, 0.24);
}

.mc-portal-status-card span,
.mc-portal-status-card small,
.mc-portal-status-card strong {
    display: block;
}

.mc-portal-status-card span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mc-portal-status-card strong {
    margin-top: 8px;
    font-size: 28px;
    letter-spacing: -0.05em;
}

.mc-portal-status-card small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 800;
}

.mc-phone-content h4 {
    margin: 0 0 22px;
    color: #0f172a;
    font-size: 22px;
}

.mc-phone-item {
    margin-bottom: 12px;
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #f8fafc;
}

.mc-phone-item span {
    display: block;
    margin-bottom: 5px;
    color: var(--mc-muted);
    font-size: 12px;
}

.mc-phone-item strong {
    color: #111827;
}

.mc-phone-button {
    margin-top: 22px;
    padding: 13px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--mc-primary);
    text-align: center;
    font-weight: 900;
}

.mc-check-list {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 13px;
    list-style: none;
}

.mc-check-list li {
    position: relative;
    padding-left: 32px;
    color: #374151;
    font-weight: 650;
    line-height: 1.5;
}

.mc-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #15803d;
    background: #dcfce7;
    font-size: 13px;
    font-weight: 900;
}

/* =========================
   DARK SECTION
   ========================= */

.mc-section-dark {
    color: #ffffff;
    background:
            radial-gradient(
                    circle at 15% 20%,
                    rgba(36, 99, 255, 0.17),
                    transparent 30%
            ),
            #071426;
}

.mc-dark-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 44px;
    align-items: center;
}

.mc-dark-grid h2,
.mc-dark-grid p {
    color: #ffffff;
}

.mc-dark-grid p {
    color: #cbd5e1;
}

.mc-steps {
    display: grid;
    gap: 14px;
}

.mc-steps div {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.mc-steps span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--mc-primary);
    font-weight: 900;
}

.mc-steps p {
    margin: 0;
    color: #ffffff;
    font-weight: 800;
}

/* =========================
   CONTACT
   ========================= */

.mc-contact-section {
    background:
            radial-gradient(
                    circle at 15% 20%,
                    rgba(37, 99, 235, 0.12),
                    transparent 28%
            ),
            #f5f7fb;
}

.mc-contact-card {
    padding: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--mc-border);
    border-radius: var(--mc-radius-xl);
    background: #ffffff;
    box-shadow: var(--mc-shadow);
}

.mc-contact-card > div:first-child {
    max-width: 690px;
}

.mc-contact-actions {
    min-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =========================
   FOOTER
   ========================= */

.mc-footer {
    border-top: 1px solid var(--mc-border);
    background: #ffffff;
}

.mc-footer-inner {
    min-height: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--mc-muted);
    font-size: 14px;
    font-weight: 700;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {
    .mc-nav {
        display: none;
    }

    .mc-video-hero {
        min-height: auto;
    }

    .mc-video-hero-content {
        min-height: 760px;
    }

    .mc-hero-dashboard-visual {
        top: 145px;
        right: -230px;
        width: min(760px, 72vw);
        opacity: 0.62;
    }

    .mc-hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .mc-trust-strip {
        grid-template-columns: repeat(2, 1fr);
        transform: translateY(-34px);
    }

    .mc-trust-item:nth-child(2)::after {
        display: none;
    }

    .mc-club-logo-card {
        width: 185px;
    }

    .mc-feature-layout,
    .mc-portal-grid,
    .mc-mercadopago-card,
    .mc-dark-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .mc-landing-container {
        width: min(100% - 28px, 1380px);
    }

    .mc-landing-header {
        padding-top: 10px;
    }

    .mc-header-inner {
        min-height: 61px;
        padding: 0 17px;
        border-radius: 20px;
    }

    .mc-brand-logo {
        height: 37px;
    }

    .mc-video-hero-content {
        min-height: 930px;
        padding-top: 52px;
        padding-bottom: 28px;
    }

    .mc-hero-dashboard-visual {
        top: 212px;
        right: -410px;
        width: 760px;
        opacity: 0.20;
        filter: drop-shadow(0 24px 58px rgba(17, 74, 180, 0.24));
    }

    .mc-hero-dashboard-visual::before {
        inset: -8% 34% -6% -6%;
        background:
                linear-gradient(
                        90deg,
                        rgba(5, 13, 25, 0.70) 0%,
                        rgba(5, 13, 25, 0.22) 58%,
                        rgba(5, 13, 25, 0) 100%
                );
    }

    .mc-video-hero-copy h1 {
        font-size: clamp(45px, 15vw, 67px);
    }

    .mc-video-hero-copy p {
        font-size: 16px;
    }

    .mc-hero-actions {
        flex-direction: column;
    }

    .mc-btn {
        width: 100%;
    }

    .mc-hero-features {
        grid-template-columns: 1fr;
    }

    .mc-hero-feature-card {
        min-height: auto;
    }

    .mc-trust-strip {
        grid-template-columns: 1fr;
        transform: translateY(-20px);
    }

    .mc-trust-item::after {
        display: none;
    }

    .mc-trust-item:not(:last-child) {
        border-bottom: 1px solid var(--mc-border);
    }

    .mc-club-trust-section {
        padding: 30px 0 18px;
    }

    .mc-club-carousel {
        border-radius: 22px;
    }

    .mc-club-carousel::before,
    .mc-club-carousel::after {
        width: 58px;
    }

    .mc-club-carousel-track {
        gap: 12px;
        padding: 18px;
        animation-duration: 26s;
    }

    .mc-club-logo-card {
        width: 158px;
        min-height: 136px;
        padding: 15px;
        border-radius: 19px;
    }

    .mc-club-logo-frame {
        width: 74px;
        height: 74px;
        border-radius: 22px;
    }

    .mc-club-logo-frame strong {
        font-size: 30px;
    }

    .mc-section {
        padding: 62px 0;
    }

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

    .mc-mercadopago-card {
        padding: 26px;
        gap: 26px;
        border-radius: 30px;
    }

    .mc-mercadopago-highlight {
        padding: 20px;
        border-radius: 26px;
    }

    .mc-mercadopago-kicker {
        align-items: center;
        line-height: 1.25;
    }

    .mc-mercadopago-kicker img {
        width: 28px;
    }

    .mc-mercadopago-payment-card {
        padding: 20px;
        border-radius: 20px;
    }

    .mc-mercadopago-payment-card strong {
        font-size: 23px;
    }

    .mc-dashboard-showcase {
        grid-template-columns: 1fr;
    }

    .mc-dashboard-sidebar-preview {
        display: none;
    }

    .mc-dashboard-content-preview {
        grid-template-columns: 1fr;
    }

    .mc-portal-grid {
        gap: 34px;
    }

    .mc-phone {
        width: min(100%, 285px);
    }

    .mc-contact-card {
        padding: 26px;
        flex-direction: column;
        align-items: flex-start;
    }

    .mc-contact-actions {
        width: 100%;
    }

    .mc-contact-actions .mc-btn {
        width: 100%;
    }

    .mc-footer-inner {
        padding: 20px 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .mc-btn,
    .mc-nav a,
    .mc-hero-feature-card,
    .mc-club-logo-card {
        transition: none;
    }

    .mc-club-carousel-track {
        animation: none;
    }
}
