:root {
    --vp-bg: #060d1b;
    --vp-bg-2: #091426;
    --vp-panel: #0d1a2c;
    --vp-panel-2: #10223a;
    --vp-line: rgba(115, 190, 255, .16);
    --vp-text: #f5f8ff;
    --vp-muted: #95a7c2;
    --vp-cyan: #20bfff;
    --vp-green: #69e527;
    --vp-green-2: #4fd49a;
    --vp-radius: 24px;
    --vp-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at 14% 0%, rgba(30, 146, 255, .10), transparent 34rem),
        radial-gradient(circle at 90% 12%, rgba(48, 219, 105, .07), transparent 32rem),
        var(--vp-bg);
    color: var(--vp-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.vp-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: minmax(160px, 260px) minmax(280px, 560px) auto;
    align-items: center;
    gap: 22px;
    padding: 14px max(22px, calc((100vw - 1380px) / 2));
    background: rgba(6, 13, 27, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.vp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.vp-brand strong { letter-spacing: -.02em; font-size: 1.06rem; }
.vp-brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(145deg, #071126, #10233d);
    border: 1px solid rgba(112, 201, 255, .18);
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(23, 162, 255, .10);
    font-weight: 900;
    color: var(--vp-cyan);
}
.vp-brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.vp-brand-mark img + span { display: none; }
.vp-search {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 17px;
    border-radius: 999px;
    background: rgba(20, 32, 51, .78);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 0 0 1px rgba(80, 175, 255, .035);
}
.vp-search span { color: #8293ad; font-size: 1.28rem; }
.vp-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--vp-text);
}
.vp-search input::placeholder { color: #71839e; }
.vp-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.vp-action {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(14, 29, 48, .78);
    color: #e8eff9;
    cursor: pointer;
    white-space: nowrap;
}
.vp-action:hover { border-color: rgba(82,190,255,.38); background: rgba(18, 39, 65, .92); }
.vp-install.is-installed { color: #d7f8ca; border-color: rgba(105,229,39,.25); }
.vp-icon-action { width: 44px; padding: 0; }

.vp-main {
    width: min(1380px, calc(100% - 44px));
    margin: 0 auto;
    padding: 44px 0 76px;
}
.vp-hero {
    min-height: 410px;
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    overflow: hidden;
    border: 1px solid var(--vp-line);
    border-radius: 34px;
    background:
        linear-gradient(100deg, rgba(17, 48, 77, .78), rgba(7, 20, 37, .96) 64%),
        radial-gradient(circle at 10% 25%, rgba(30, 185, 255, .09), transparent 32rem);
    box-shadow: var(--vp-shadow);
}
.vp-hero-copy {
    align-self: center;
    padding: clamp(36px, 5.4vw, 76px);
}
.vp-kicker,
.vp-section-kicker {
    margin: 0 0 18px;
    font-weight: 800;
    letter-spacing: .055em;
    color: #f4f7fb;
}
.vp-hero h1 {
    margin: 0;
    font-size: clamp(4rem, 7.4vw, 7.4rem);
    line-height: .86;
    letter-spacing: -.055em;
    font-weight: 900;
}
.vp-tagline {
    margin: 22px 0 30px;
    font-size: clamp(1.35rem, 2.15vw, 2.25rem);
    font-weight: 850;
    letter-spacing: -.03em;
}
.vp-tagline span { color: var(--vp-cyan); }
.vp-tagline strong { color: var(--vp-green); }
.vp-hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.vp-hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 15px;
    background: #f7f9fc;
    color: #08111f;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.vp-hero-buttons a:hover,
.vp-hero-buttons a.is-active {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(32,191,255,.15);
}
.vp-hero-buttons a.is-active { outline: 3px solid rgba(105,229,39,.34); }
.vp-hero-art {
    min-height: 410px;
    padding: 24px 34px 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vp-hero-art img {
    width: min(100%, 430px);
    max-height: 390px;
    object-fit: cover;
    border-radius: 31px;
    box-shadow: 0 22px 70px rgba(0,0,0,.42), 0 0 45px rgba(52,157,255,.08);
    transform: rotate(1.7deg);
}

.vp-catalog { margin-top: 58px; }
.vp-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}
.vp-section-kicker { margin-bottom: 6px; font-size: .76rem; color: var(--vp-cyan); }
.vp-section-head h2,
.vp-publishers-cta h2,
.vp-page-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -.04em;
}
.vp-section-head p { margin: 9px 0 0; color: var(--vp-muted); }
.vp-section-links { display: flex; align-items: center; gap: 18px; color: var(--vp-muted); }
.vp-section-links a { color: #d8e7f7; font-weight: 750; }
.vp-section-links a:hover { color: var(--vp-cyan); }

.vp-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 22px;
}
.vp-tabs a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(14, 28, 47, .82);
    border: 1px solid rgba(255,255,255,.08);
    color: #bdc9d9;
    font-weight: 740;
}
.vp-tabs a span {
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    font-size: .75rem;
}
.vp-tabs a:hover,
.vp-tabs a.is-active {
    color: #fff;
    border-color: rgba(32,191,255,.30);
    background: rgba(19, 43, 70, .95);
}
.vp-tabs a.is-active span { color: #bdf89e; background: rgba(105,229,39,.10); }

.vp-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.vp-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(17,31,50,.95), rgba(10,20,36,.98));
    box-shadow: 0 14px 40px rgba(0,0,0,.18);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.vp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56,177,255,.25);
    box-shadow: 0 20px 48px rgba(0,0,0,.28);
}
.vp-cover {
    position: relative;
    display: block;
    aspect-ratio: 1.62 / 1;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 5%, rgba(255,255,255,.13), transparent 32%),
        linear-gradient(135deg, #1c7ed6, #3bc9db);
}
.vp-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vp-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(transparent, rgba(4,11,23,.38));
}
.vp-cover-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 24px;
    font-size: 1.8rem;
}
.vp-cover-fallback strong { font-size: 1.65rem; letter-spacing: -.04em; }
.vp-card-type {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(5,12,24,.68);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    font-size: .70rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.vp-play {
    position: absolute;
    right: 16px;
    bottom: 14px;
    z-index: 2;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #09111f;
    box-shadow: 0 8px 20px rgba(0,0,0,.24);
}
.vp-card-body { padding: 17px 17px 16px; }
.vp-card-title-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.vp-card h3 { margin: 0 0 4px; font-size: 1.12rem; letter-spacing: -.02em; }
.vp-card p { margin: 0; color: var(--vp-muted); font-size: .87rem; }
.vp-card-cta {
    min-width: 59px;
    min-height: 30px;
    display: inline-grid;
    place-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--vp-green-2);
    color: #062116;
    font-size: .76rem;
    font-weight: 900;
}
.vp-publisher-mini {
    display: inline-block;
    margin-top: 12px;
    color: #7890ad;
    font-size: .76rem;
}
.vp-publisher-mini:hover { color: var(--vp-cyan); }

.vp-empty {
    padding: 54px 24px;
    text-align: center;
    border: 1px dashed rgba(255,255,255,.12);
    border-radius: 24px;
    color: var(--vp-muted);
    background: rgba(13,26,44,.54);
}
.vp-empty h3 { margin: 8px 0 7px; color: #f2f6fb; }
.vp-empty p { margin: 0 auto; max-width: 620px; }
.vp-empty-icon { font-size: 2.3rem; }
.vp-search-empty { margin-top: 22px; }

.vp-publishers-cta {
    margin-top: 64px;
    padding: 32px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-radius: 26px;
    border: 1px solid rgba(105,229,39,.14);
    background:
        linear-gradient(100deg, rgba(15,35,58,.94), rgba(8,24,35,.95)),
        radial-gradient(circle at 85% 30%, rgba(105,229,39,.12), transparent 25rem);
}
.vp-publishers-cta p { max-width: 720px; color: var(--vp-muted); }
.vp-publishers-cta > a,
.vp-publisher-open {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 14px;
    background: #f4f7fb;
    color: #09111f;
    font-weight: 850;
    white-space: nowrap;
}

.vp-page-hero {
    padding: 52px 52px;
    border-radius: 30px;
    border: 1px solid var(--vp-line);
    background:
        radial-gradient(circle at 90% 50%, rgba(105,229,39,.08), transparent 30rem),
        linear-gradient(100deg, #102b48, #091426 68%);
}
.vp-page-hero > p:not(.vp-kicker) {
    max-width: 760px;
    color: #b1c0d4;
    font-size: 1.06rem;
    line-height: 1.6;
}
.vp-page-hero .vp-hero-buttons { margin-top: 24px; }

.vp-publisher-detail { margin-top: 48px; }
.vp-publisher-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
}
.vp-publisher-card {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(13,27,46,.88);
    border: 1px solid rgba(255,255,255,.075);
}
.vp-publisher-card:hover { border-color: rgba(32,191,255,.24); }
.vp-publisher-avatar {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(32,191,255,.18), rgba(105,229,39,.12));
    color: #eaf7ff;
    font-size: 1.4rem;
    font-weight: 950;
    letter-spacing: -.04em;
}
.vp-publisher-card h3 { margin: 0 0 4px; }
.vp-publisher-card p { margin: 0; color: var(--vp-muted); }
.vp-publisher-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.vp-publisher-tags span {
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    color: #a7b8cd;
    font-size: .72rem;
}
.vp-publisher-open { min-height: 39px; font-size: .82rem; }

.vp-footer {
    width: min(1380px, calc(100% - 44px));
    margin: 0 auto;
    padding: 32px 0 42px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: #8798b0;
}
.vp-footer-links { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.vp-footer-links a:hover, .vp-created a:hover { color: var(--vp-cyan); }
.vp-footer-donation {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 620px;
}
.vp-footer-donation img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 5px;
}
.vp-footer-donation strong { color: #edf4fc; }
.vp-footer-donation p { margin: 5px 0 0; }
.vp-created { margin: 26px 0 0; font-size: .86rem; }

@media (max-width: 1120px) {
    .vp-topbar { grid-template-columns: auto 1fr; }
    .vp-actions { grid-column: 1 / -1; justify-content: flex-end; margin-top: -4px; }
    .vp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .vp-hero { grid-template-columns: 1.25fr .75fr; }
}
@media (max-width: 820px) {
    .vp-main, .vp-footer { width: min(100% - 28px, 1380px); }
    .vp-topbar {
        position: relative;
        grid-template-columns: 1fr auto;
        padding: 12px 14px;
        gap: 12px;
    }
    .vp-search { grid-column: 1 / -1; grid-row: 2; order: 3; }
    .vp-actions { grid-column: auto; grid-row: 1; margin: 0; }
    .vp-install { display: none; }
    .vp-action { padding: 0 12px; }
    .vp-icon-action { display: none; }
    .vp-brand strong { font-size: .98rem; }
    .vp-hero { grid-template-columns: 1fr; min-height: 0; }
    .vp-hero-copy { padding: 38px 26px 28px; }
    .vp-hero h1 { font-size: clamp(3.1rem, 17vw, 5.4rem); }
    .vp-hero-art { min-height: 0; padding: 0 26px 28px; }
    .vp-hero-art img { width: min(86%, 390px); max-height: none; transform: none; }
    .vp-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
    .vp-section-head { align-items: flex-start; flex-direction: column; }
    .vp-section-links { width: 100%; justify-content: space-between; }
    .vp-publisher-grid { grid-template-columns: 1fr; }
    .vp-publisher-card { grid-template-columns: 60px 1fr; }
    .vp-publisher-avatar { width: 60px; height: 60px; border-radius: 18px; }
    .vp-publisher-open { grid-column: 1 / -1; }
    .vp-publishers-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
    .vp-main { padding-top: 20px; }
    .vp-hero { border-radius: 22px; }
    .vp-kicker { font-size: .83rem; }
    .vp-tagline { margin: 15px 0 22px; font-size: 1.25rem; }
    .vp-hero-buttons { gap: 9px; }
    .vp-hero-buttons a { min-height: 44px; padding: 0 14px; font-size: .84rem; }
    .vp-grid { grid-template-columns: 1fr; }
    .vp-card { border-radius: 20px; }
    .vp-tabs { display: grid; grid-template-columns: 1fr 1fr; }
    .vp-tabs a { justify-content: space-between; }
    .vp-page-hero { padding: 34px 24px; border-radius: 22px; }
    .vp-footer-donation { align-items: flex-start; }
}


/* ==========================================================
   VersaPlay v3.2.5 — correção responsiva desktop + celular
   ========================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.vp-topbar {
    grid-template-areas: "brand search actions";
    grid-template-columns: minmax(170px, 250px) minmax(300px, 1fr) auto;
}

.vp-brand {
    grid-area: brand;
    justify-self: start;
}

.vp-search {
    grid-area: search;
    min-width: 0;
}

.vp-actions {
    grid-area: actions;
    min-width: 0;
}

.vp-hero {
    grid-template-columns: minmax(0, 1.32fr) minmax(310px, .68fr);
}

.vp-hero-copy,
.vp-hero-art,
.vp-card,
.vp-publisher-card {
    min-width: 0;
}

.vp-hero h1 {
    max-width: 100%;
    font-size: clamp(3.65rem, 6.25vw, 6.85rem);
    line-height: .90;
    white-space: nowrap;
}

.vp-hero-art img {
    height: auto;
    object-fit: contain;
}

/* Notebook / desktop menor: mantém tudo em uma única barra. */
@media (max-width: 1180px) {
    .vp-topbar {
        grid-template-areas: "brand search actions";
        grid-template-columns: minmax(145px, 205px) minmax(260px, 1fr) auto;
        gap: 14px;
    }

    .vp-actions {
        grid-column: auto;
        margin-top: 0;
    }

    .vp-action {
        padding-inline: 13px;
    }

    .vp-hero {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    }

    .vp-hero-copy {
        padding: clamp(34px, 4.4vw, 58px);
    }

    .vp-hero h1 {
        font-size: clamp(3.4rem, 6.1vw, 5.8rem);
    }

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

/* Tablet: marca + ações na primeira linha e busca na segunda. */
@media (max-width: 900px) {
    .vp-topbar {
        position: sticky;
        grid-template-areas:
            "brand actions"
            "search search";
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 11px 12px;
        padding: 12px 16px;
    }

    .vp-brand {
        grid-area: brand;
        min-width: 0;
    }

    .vp-search {
        grid-area: search;
    }

    .vp-actions {
        grid-area: actions;
        grid-column: auto;
        grid-row: auto;
        justify-content: flex-end;
        margin: 0;
    }

    .vp-install {
        display: none;
    }

    .vp-icon-action {
        display: inline-flex;
    }

    .vp-main,
    .vp-footer {
        width: min(100% - 28px, 1380px);
    }

    .vp-hero {
        grid-template-columns: minmax(0, 1fr) minmax(270px, 320px);
    }

    .vp-hero-copy {
        padding: 34px 30px;
    }

    .vp-hero h1 {
        font-size: clamp(3.05rem, 7.5vw, 4.9rem);
    }

    .vp-hero-art {
        padding: 20px 24px 20px 0;
    }

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

/* Celular: hero empilhado e sem qualquer estouro horizontal. */
@media (max-width: 700px) {
    .vp-topbar {
        grid-template-areas:
            "brand actions"
            "search search";
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 11px 12px 13px;
    }

    .vp-brand {
        gap: 8px;
        overflow: hidden;
    }

    .vp-brand-mark {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .vp-brand strong {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: .96rem;
    }

    .vp-actions {
        gap: 7px;
    }

    .vp-action {
        min-height: 40px;
        padding: 0 11px;
        font-size: .88rem;
    }

    .vp-icon-action {
        width: 40px;
        padding: 0;
        flex: 0 0 40px;
    }

    .vp-search {
        min-height: 44px;
        padding-inline: 15px;
    }

    .vp-main {
        width: calc(100% - 24px);
        padding: 18px 0 52px;
    }

    .vp-footer {
        width: calc(100% - 24px);
    }

    .vp-hero {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
        border-radius: 23px;
    }

    .vp-hero-copy {
        min-width: 0;
        padding: 30px 22px 18px;
    }

    .vp-kicker {
        margin-bottom: 14px;
        font-size: .78rem;
        line-height: 1.35;
    }

    .vp-hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(2.5rem, 12.5vw, 3.45rem);
        line-height: .95;
        letter-spacing: -.058em;
        white-space: nowrap;
    }

    .vp-tagline {
        margin: 15px 0 22px;
        font-size: clamp(1.02rem, 4.9vw, 1.27rem);
        line-height: 1.15;
    }

    .vp-hero-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 9px;
    }

    .vp-hero-buttons a {
        min-width: 0;
        min-height: 45px;
        padding: 0 10px;
        border-radius: 14px;
        font-size: .85rem;
        white-space: nowrap;
    }

    .vp-hero-buttons a:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: start;
        width: auto;
        min-width: min(190px, 100%);
    }

    .vp-hero-art {
        min-height: 0;
        padding: 6px 20px 22px;
    }

    .vp-hero-art img {
        width: min(100%, 295px);
        max-width: 100%;
        max-height: 285px;
        height: auto;
        object-fit: contain;
        transform: none;
        border-radius: 24px;
    }

    .vp-catalog {
        margin-top: 38px;
    }

    .vp-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .vp-section-links {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        font-size: .86rem;
    }

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

    .vp-tabs a {
        min-width: 0;
        justify-content: space-between;
        padding-inline: 12px;
        font-size: .84rem;
    }

    .vp-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vp-card {
        border-radius: 20px;
    }

    .vp-publisher-grid {
        grid-template-columns: 1fr;
    }

    .vp-publisher-card {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .vp-publisher-avatar {
        width: 56px;
        height: 56px;
        border-radius: 17px;
    }

    .vp-publisher-open {
        grid-column: 1 / -1;
    }

    .vp-publishers-cta {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 42px;
        padding: 25px 22px;
    }

    .vp-page-hero {
        padding: 32px 22px;
        border-radius: 23px;
    }

    .vp-footer-donation {
        align-items: flex-start;
    }
}

/* Celulares estreitos. */
@media (max-width: 390px) {
    .vp-topbar {
        padding-inline: 10px;
        gap: 10px 7px;
    }

    .vp-brand strong {
        font-size: .90rem;
    }

    .vp-action {
        padding-inline: 9px;
        font-size: .82rem;
    }

    .vp-hero-copy {
        padding: 27px 18px 17px;
    }

    .vp-hero h1 {
        font-size: clamp(2.35rem, 12.1vw, 2.95rem);
    }

    .vp-tagline {
        font-size: .98rem;
    }

    .vp-hero-buttons a {
        font-size: .80rem;
        padding-inline: 8px;
    }

    .vp-hero-art {
        padding-inline: 18px;
    }

    .vp-hero-art img {
        width: min(100%, 270px);
        max-height: 260px;
    }
}


/* ==========================================================
   VersaPlay v3.4.0 — home preparada para novas opções
   Referência visual: banner com 5 áreas principais.
   ========================================================== */

.vp-hero {
    grid-template-columns: minmax(0, 1.48fr) minmax(330px, .72fr);
    min-height: 440px;
}

.vp-hero-copy {
    padding: clamp(38px, 5vw, 70px);
}

.vp-hero h1 {
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: .90;
    white-space: nowrap;
}

.vp-tagline {
    margin-top: 24px;
    margin-bottom: 32px;
}

/* 3 opções na primeira linha e 2 na segunda. */
.vp-hero-buttons {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 13px;
    width: min(100%, 880px);
}

.vp-hero-buttons a {
    min-width: 0;
    min-height: 60px;
    padding: 0 16px;
    gap: 9px;
    border-radius: 17px;
    font-size: clamp(.90rem, 1.15vw, 1.08rem);
    white-space: nowrap;
}

.vp-hero-buttons a:nth-child(-n+3) {
    grid-column: span 2;
}

.vp-hero-buttons a:nth-child(n+4) {
    grid-column: span 3;
}

.vp-hero-buttons .vp-option-icon {
    font-size: 1.28em;
    line-height: 1;
}

.vp-hero-art {
    min-width: 0;
    padding: 30px 38px 30px 8px;
}

.vp-hero-art img {
    width: min(100%, 470px);
    max-height: 405px;
    object-fit: cover;
    border-radius: 32px;
    transform: none;
}

/* Novos tipos no catálogo. */
.vp-card[data-type="musica"] .vp-card-type {
    border-color: rgba(32,191,255,.32);
}

.vp-card[data-type="premium"] .vp-card-type {
    border-color: rgba(255,209,102,.40);
}

.vp-card[data-type="premium"] .vp-card-cta {
    background: #ffd166;
    color: #201400;
}

.vp-tabs {
    gap: 8px;
}

@media (max-width: 1180px) {
    .vp-hero {
        grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    }

    .vp-hero-buttons a {
        font-size: .90rem;
        padding-inline: 12px;
    }
}

@media (max-width: 900px) {
    .vp-hero {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 305px);
    }

    .vp-hero-copy {
        padding: 32px 27px;
    }

    .vp-hero-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vp-hero-buttons a,
    .vp-hero-buttons a:nth-child(-n+3),
    .vp-hero-buttons a:nth-child(n+4) {
        grid-column: auto;
    }

    .vp-hero-buttons a:nth-child(5) {
        grid-column: 1 / -1;
        width: min(100%, 360px);
    }

    .vp-hero-art {
        padding: 24px 22px 24px 0;
    }
}

@media (max-width: 700px) {
    .vp-hero {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    .vp-hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.45rem);
        white-space: nowrap;
    }

    .vp-hero-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .vp-hero-buttons a,
    .vp-hero-buttons a:nth-child(-n+3),
    .vp-hero-buttons a:nth-child(n+4) {
        grid-column: auto !important;
        width: 100%;
        min-height: 47px;
        font-size: .82rem;
        padding-inline: 9px;
    }

    .vp-hero-buttons a:nth-child(5) {
        grid-column: 1 / -1 !important;
        width: min(100%, 220px);
        justify-self: start;
    }

    .vp-hero-art {
        padding: 8px 18px 22px;
    }

    .vp-hero-art img {
        width: min(100%, 305px);
        max-height: 290px;
    }

    .vp-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vp-tabs a {
        min-width: 0;
        justify-content: space-between;
    }
}

@media (max-width: 390px) {
    .vp-hero-copy {
        padding-inline: 17px;
    }

    .vp-hero-buttons a {
        font-size: .77rem;
    }

    .vp-hero-buttons .vp-option-icon {
        font-size: 1.15em;
    }
}
