/* ============================
   DOWNLOAD PAGE – GTurbo
   ============================ */

body {
    background: radial-gradient(circle at top, #042821 0%, #020b09 45%, #010403 100%);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #e9f9f3;
}

/* WRAPPER GERAL */

.download-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 16px 60px;
    box-sizing: border-box;
}

.download-card {
    width: 100%;
    max-width: 1120px; /* AUMENTADO */
    background: radial-gradient(circle at top left, #073329 0%, #041814 40%, #020909 100%);
    border-radius: 22px; /* um pouco mais arredondado */
    border: 1px solid #09362F;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
    padding: 40px 42px; /* AUMENTADO */
    display: flex;
    gap: 40px; /* AUMENTADO */
    box-sizing: border-box;
}

/* LADO ESQUERDO */

.download-left {
    flex: 1.25;
}

.download-title {
    font-size: 28px;
    font-weight: 900;
    color: #00e6a0;
    margin-bottom: 12px;
    letter-spacing: 0.4px;
}

.download-subtitle {
    font-size: 15px;
    color: #9fc5ba;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 520px;
}

.download-features {
    list-style: none;
    margin-bottom: 22px;
    font-size: 14px;
    color: #d2f5ec;
    padding: 0;
}

.download-features li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
}

.download-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #00e6a0;
}

/* BOTÃO PRINCIPAL / CTA */

.download-cta-row {
    margin-top: 8px;
    margin-bottom: 20px;
}

.download-btn-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00e6a0, #00c88c);
    color: #03221A;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
    transition: 0.22s ease;
    border: none;
}

.download-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.95);
    filter: brightness(1.04);
}

.download-btn-main {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.download-btn-sub {
    font-size: 12px;
    margin-top: 2px;
    opacity: 0.9;
}

/* SELO DE SEGURANÇA */

.download-safe {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9bbfb7;
}

.download-safe i {
    color: #00e6a0;
}

/* ESPECIFICAÇÕES */

.download-specs {
    margin-top: 20px;
    font-size: 13px;
    color: #9fc5ba;
    line-height: 1.6;
}

.download-specs div + div {
    margin-top: 2px;
}

.download-specs span {
    color: #d2f5ec;
    font-weight: 600;
}

/* REQUISITOS MÍNIMOS */

.download-min-specs {
    margin-top: 24px;
}

.download-min-specs h2 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #dff4ee;
}

.download-min-specs ul {
    list-style: none;
    font-size: 13px;
    color: #c9e9e0;
    padding: 0;
}

.download-min-specs li {
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.download-min-specs li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #00e6a0;
}

/* LADO DIREITO – IMAGEM DO APP E JOGOS */

.download-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================
   SLIDER DA IMAGEM DO APP
   ============================ */

.download-app-box {
    position: relative;
    width: 100%;
    max-width: 430px; /* AUMENTADO */
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(circle at top, #083f31 0%, #031713 40%, #020909 100%);
    border: 1px solid #0a473a;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

/* cria proporção 16:9 */
.download-app-slider {
    position: relative;
    width: 100%;
    padding-top: 56%;
}

.download-app-slider .download-app-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* NÃO CORTAR A IMAGEM */
    background-color: #020909;
    border-radius: 0;
    opacity: 0;
    transform: scale(1.005);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
}

.download-app-slider .download-app-image.active {
    opacity: 1;
    transform: scale(1);
}

/* brilho suave no fundo da imagem */
.download-app-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(0, 230, 160, 0.25) 0%, transparent 55%);
    mix-blend-mode: screen;
}

/* hover na área do app */
.download-app-box:hover {
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.98);
    border-color: #00e6a0;
}

/* legenda da imagem */
.download-app-caption {
    margin-top: 12px;
    font-size: 12px;
    color: #9fc5ba;
    text-align: center;
    max-width: 430px;
}

/* FAIXA DE JOGOS */

.download-games-strip {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-game {
    width: 96px;
    text-align: center;
    font-size: 11px;
    color: #c7e6de;
}

.download-game img {
    width: 100%;
    height: 56px;
    object-fit: cover;
    border-radius: 9px;
    border: 1px solid #094137;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.9);
    transition: 0.2s;
}

.download-game span {
    display: block;
    margin-top: 5px;
}

/* hover nos cards de jogos */
.download-game img:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.95);
    border-color: #00e6a0;
}

/* NOTA FINAL */

.download-note {
    margin-top: 14px;
    font-size: 12px;
    color: #9bbfb7;
    text-align: center;
    max-width: 430px;
}

/* ============================
   RESPONSIVO
   ============================ */

@media (max-width: 900px) {
    .download-card {
        flex-direction: column;
        padding: 30px 22px;
        gap: 28px;
    }

    .download-left {
        order: 1;
    }

    .download-right {
        order: 2;
        align-items: center;
    }

    .download-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .download-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .download-title {
        font-size: 24px;
    }

    .download-wrapper {
        padding: 28px 12px 40px;
    }

    .download-app-box {
        max-width: 100%;
        height: 100%;
    }
}
