/* ============================================
   BragaTeam Store Theme — main.css
   ============================================ */

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

:root {
    --bg: #08080F;
    --bg-card: #15151F;
    --bg-card-2: #1A1A2A;
    --stroke: #2A2A44;
    --text: #FFFFFF;
    --text-sec: #A0A0B0;
    --text-mute: #707080;
    --accent: #22D3EE;
    --accent-2: #2563EB;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}

#bg-orbs {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(8, 8, 15, 0.75);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo-circle {
    position: relative;
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, #2563EB, #7C3AED, #EC4899);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Black Ops One', cursive;
    color: white; font-size: 17px; letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
    overflow: visible;
    /* texto BT precisa ficar acima do plano dos planetas que vao atras */
    z-index: 1;
}
/* texto BT no centro - z-index intermediario pra ficar entre planetas atras/frente */
.logo-circle::after {
    content: 'BT';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Black Ops One', cursive;
    font-size: 17px;
    letter-spacing: 1px;
    z-index: 5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
/* esconde o texto BT original do <div> (substituido pelo ::after) */
.logo-circle { color: transparent !important; }

/* 3 planetas orbitando ao redor do BT */
.logo-circle .orb {
    position: absolute;
    width: 7px; height: 7px;
    border-radius: 50%;
    top: 50%; left: 50%;
    margin: -3.5px 0 0 -3.5px;
    transform-origin: center;
    pointer-events: none;
    will-change: transform, opacity;
}
.logo-circle .orb::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: inherit;
    filter: blur(4px);
    opacity: 0.6;
}
/* Ciano */
.logo-circle .orb.o1 {
    background: radial-gradient(circle at 30% 30%, #fff 0%, #22D3EE 45%, #0E7490 100%);
    box-shadow: 0 0 8px #22D3EE;
    animation: bt-orbit-1 2.0s linear infinite, bt-depth-1 2.0s linear infinite;
}
/* Magenta */
.logo-circle .orb.o2 {
    background: radial-gradient(circle at 30% 30%, #fff 0%, #EC4899 45%, #831843 100%);
    box-shadow: 0 0 8px #EC4899;
    animation: bt-orbit-2 2.7s linear infinite, bt-depth-2 2.7s linear infinite;
}
/* Amarelo */
.logo-circle .orb.o3 {
    background: radial-gradient(circle at 30% 30%, #fff 0%, #FACC15 45%, #854D0E 100%);
    box-shadow: 0 0 8px #FACC15;
    animation: bt-orbit-3 3.4s linear infinite, bt-depth-3 3.4s linear infinite;
}

/* === Orbita 1: elipse horizontal larga === */
@keyframes bt-orbit-1 {
    0%   { transform: translate(28px, 0)    scale(1); }
    25%  { transform: translate(0, 9px)     scale(1.15); }
    50%  { transform: translate(-28px, 0)   scale(1); }
    75%  { transform: translate(0, -9px)    scale(0.6); }
    100% { transform: translate(28px, 0)    scale(1); }
}
/* z-index muda no meio do ciclo pra simular passar atras do BT */
@keyframes bt-depth-1 {
    0%, 49%  { z-index: 6; opacity: 1; }     /* na frente */
    50%, 99% { z-index: 0; opacity: 0.6; }   /* atras */
    100%     { z-index: 6; opacity: 1; }
}

/* === Orbita 2: elipse 45 graus === */
@keyframes bt-orbit-2 {
    0%   { transform: translate(20px, -20px)   scale(1); }
    25%  { transform: translate(20px, 20px)    scale(0.6); }
    50%  { transform: translate(-20px, 20px)   scale(1); }
    75%  { transform: translate(-20px, -20px)  scale(1.15); }
    100% { transform: translate(20px, -20px)   scale(1); }
}
@keyframes bt-depth-2 {
    0%, 24%  { z-index: 6; opacity: 1; }
    25%, 74% { z-index: 0; opacity: 0.6; }
    75%, 100%{ z-index: 6; opacity: 1; }
}

/* === Orbita 3: elipse -45 graus === */
@keyframes bt-orbit-3 {
    0%   { transform: translate(-22px, -18px) scale(0.6); }
    25%  { transform: translate(22px, -18px)  scale(1); }
    50%  { transform: translate(22px, 18px)   scale(1.15); }
    75%  { transform: translate(-22px, 18px)  scale(1); }
    100% { transform: translate(-22px, -18px) scale(0.6); }
}
@keyframes bt-depth-3 {
    0%, 49%  { z-index: 0; opacity: 0.6; }
    50%, 99% { z-index: 6; opacity: 1; }
    100%     { z-index: 0; opacity: 0.6; }
}
.brand-title {
    font-family: 'Black Ops One', cursive;
    font-size: 18px; letter-spacing: 1px; color: var(--text);
}
.brand-sub { font-size: 11px; color: var(--text-sec); font-weight: 300; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
    color: var(--text-sec); text-decoration: none;
    font-weight: 500; font-size: 14px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* HERO */
.hero {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 40px; align-items: center;
    padding: 60px 40px 80px;
    max-width: 1300px; margin: 0 auto;
}
.hero-content { animation: slideUp 0.8s ease; }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.badge {
    display: inline-block;
    background: rgba(57, 255, 20, 0.10);
    border: 1px solid #39FF14;
    color: #39FF14;
    padding: 6px 14px; border-radius: 30px;
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.65);
    box-shadow:
        0 0 14px rgba(57, 255, 20, 0.35),
        inset 0 0 12px rgba(57, 255, 20, 0.08);
}
.hero h1 {
    font-family: 'Black Ops One', cursive;
    font-size: 56px; line-height: 1.1;
    letter-spacing: 1px; margin-bottom: 18px;
}
.gradient-text {
    background: linear-gradient(135deg, #22D3EE, #7C3AED, #EC4899);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-sub {
    font-size: 16px; color: var(--text-sec);
    margin-bottom: 30px; max-width: 540px;
}
.hero-sub b { color: var(--text); font-weight: 600; }
.cta-row { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.cta-primary, .cta-secondary {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 24px; border-radius: 14px;
    text-decoration: none; color: white; font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta-primary {
    background: linear-gradient(135deg, #2563EB, #22D3EE);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.5);
}
.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.7);
}
.cta-secondary {
    background: var(--bg-card);
    border: 1px solid var(--stroke);
}
.cta-secondary:hover { border-color: var(--accent); transform: translateY(-2px); }
.cta-icon { font-size: 28px; }
.cta-label { font-size: 14px; letter-spacing: 1px; }
.cta-sub { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 400; }

.hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
    background: var(--bg-card); border: 1px solid var(--stroke);
    border-radius: 16px; padding: 20px;
}
.stat { text-align: center; }
.stat-num {
    font-family: 'Black Ops One', cursive;
    font-size: 28px; color: var(--accent); line-height: 1;
}
.stat-label {
    font-size: 10px; color: var(--text-mute);
    letter-spacing: 1.5px; margin-top: 4px; font-weight: 600;
}

/* AO VIVO indicator */
.live-indicator {
    display: flex; align-items: center; gap: 8px;
    margin-top: 14px;
    font-size: 10px;
    color: var(--text-mute);
    font-weight: 600;
    letter-spacing: 0.5px;
}
.live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);   }
    100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0);   }
}

.hero-side {
    display: flex; align-items: center; justify-content: center;
    gap: 24px; flex-direction: column;
}
.phone-mock {
    width: 260px; height: 540px;
    background: #1a1a2a; border-radius: 36px;
    border: 4px solid #2a2a44; padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 80px rgba(34, 211, 238, 0.15);
    position: relative; overflow: hidden;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.phone-screen {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #0F0F18 0%, #1a1a2a 100%);
    border-radius: 28px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.phone-fallback { text-align: center; }

/* ====== MOCK DA HOME DA LOJA — !important pra blindar contra reset do WP ====== */
.mock-app {
    position: absolute !important; inset: 0 !important; overflow: hidden !important;
    border-radius: 28px !important; padding-top: 30px !important;
    background: #0a0a14 !important; display: flex !important; flex-direction: column !important;
}
.mock-app * { box-sizing: border-box !important; }
.mock-header {
    background: linear-gradient(135deg, #2563EB, #7C3AED, #EC4899) !important;
    padding: 10px 12px 14px !important;
    border-radius: 0 0 14px 14px !important;
}
.mock-header-row {
    display: flex !important; align-items: center !important;
    gap: 8px !important; margin-bottom: 8px !important;
}
.mock-burger { color: white; font-size: 14px; width: 22px; }
.mock-brand { flex: 1; }
.mock-greeting { font-size: 7px; color: rgba(255,255,255,0.75); }
.mock-title {
    font-family: 'Black Ops One', cursive;
    font-size: 11px; color: white; letter-spacing: 0.5px;
}
.mock-logo {
    width: 22px; height: 22px; border-radius: 6px;
    background: white; color: #2563EB;
    font-family: 'Black Ops One', cursive;
    font-size: 9px;
    display: flex; align-items: center; justify-content: center;
}
.mock-search {
    background: rgba(255,255,255,0.18);
    border: 0.5px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    padding: 6px 10px;
    color: rgba(255,255,255,0.75);
    font-size: 8px;
}
.mock-banner {
    margin: 10px 10px 0 !important; height: 80px !important;
    background: linear-gradient(135deg, #1a1a2a, #4c1d95, #be185d) !important;
    border-radius: 10px !important;
    position: relative !important; overflow: hidden !important;
    padding: 8px 10px !important;
    display: flex !important; align-items: flex-end !important; gap: 8px !important;
}

/* ===== CARROSSEL DE DESTAQUES ===== */
.mock-banner-carousel {
    margin: 10px 18px 0;
    position: relative;
}
.mock-banner-track {
    display: flex !important;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.mock-banner-slide {
    flex: 0 0 100% !important;
    height: 90px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    padding: 8px 10px;
    display: flex !important;
    align-items: flex-end !important;
    gap: 8px;
    box-sizing: border-box;
    cursor: pointer;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.mock-banner-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.65) 70%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}
.mock-banner-slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--slide-color, linear-gradient(135deg, #1a1a2a, #4c1d95));
}
.mock-banner-badge {
    position: absolute !important; top: 6px !important; left: 6px !important;
    background: #F97316 !important; color: white !important;
    font-size: 6px !important; padding: 2px 5px !important;
    border-radius: 3px !important; font-weight: bold !important; letter-spacing: 0.5px !important;
    z-index: 2;
}
.mock-banner-slide .mock-banner-icon {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.15);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    z-index: 2;
    overflow: hidden;
}
.mock-banner-slide .mock-banner-icon img {
    width: 100%; height: 100%; object-fit: cover;
}
.mock-banner-slide .mock-banner-info { flex: 1; z-index: 2; position: relative; }
.mock-banner-slide .mock-banner-title {
    font-size: 9px; font-weight: bold; color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-banner-slide .mock-banner-dev {
    font-size: 7px; color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.mock-banner-dots {
    display: flex !important;
    justify-content: center;
    gap: 4px;
    margin-top: 6px;
}
.mock-banner-dots span {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: all 0.3s;
    cursor: pointer;
}
.mock-banner-dots span.active {
    background: #22D3EE;
    width: 14px;
    border-radius: 2px;
}
.mock-banner-badge {
    position: absolute; top: 6px; left: 6px;
    background: #F97316; color: white;
    font-size: 6px; padding: 2px 5px;
    border-radius: 3px; font-weight: bold; letter-spacing: 0.5px;
}
.mock-banner-icon {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.15);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.mock-banner-info { flex: 1; }
.mock-banner-title { font-size: 9px; font-weight: bold; color: white; }
.mock-banner-dev   { font-size: 7px; color: rgba(255,255,255,0.8); }
.mock-section-label {
    margin: 12px 10px 4px;
    font-size: 7px; font-weight: bold;
    letter-spacing: 1px; color: #707080;
}
.mock-chips {
    display: flex !important; gap: 4px !important;
    padding: 0 10px !important; overflow: hidden !important;
}
.mock-chip {
    background: rgba(255,255,255,0.05);
    border: 0.5px solid rgba(255,255,255,0.12);
    padding: 3px 8px; border-radius: 12px;
    font-size: 7px; color: #a0a0b0; white-space: nowrap;
}
.mock-chip-active {
    background: #2563EB; border-color: #22D3EE; color: white;
}
.mock-section-title {
    font-family: 'Black Ops One', cursive;
    font-size: 11px; color: white;
    margin: 12px 10px 6px; letter-spacing: 0.5px;
}
.mock-mod {
    display: flex !important; align-items: center !important; gap: 8px !important;
    background: #15151F !important; border: 0.5px solid #2A2A44 !important;
    border-radius: 8px !important; padding: 6px 8px !important; margin: 0 10px 5px !important;
}
.mock-mod-icon {
    width: 26px; height: 26px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: 'Black Ops One', cursive;
    font-size: 11px; flex-shrink: 0;
}
.mock-mod-info { flex: 1; min-width: 0; }
.mock-mod-name {
    font-size: 8px; font-weight: 600; color: white;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-mod-meta { font-size: 6.5px; color: #707080; }

/* Chips no mock celular - mostra tipo suportado x64/x32/Zygisk/Mod APK */
.mock-mod-chips {
    display: flex;
    gap: 2px;
    margin-top: 2px;
    flex-wrap: wrap;
}
.mock-chip {
    font-size: 5.5px;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 2.5px;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-shadow: 0 1px 1px rgba(0,0,0,0.5);
}
.mock-chip.arch64 { background: linear-gradient(135deg, #10B981, #059669); }
.mock-chip.arch32 { background: linear-gradient(135deg, #F97316, #C2410C); }
.mock-chip.zygisk { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.mock-chip.apkmod { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.mock-mod-badge {
    background: linear-gradient(135deg, #10B981, #84CC16);
    color: white; font-size: 6px; font-weight: bold;
    padding: 2px 5px; border-radius: 3px; letter-spacing: 0.3px;
}
.mock-mod-badge.mock-vip {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
}

/* ===== VIEWS ANIMADAS ===== */
.mock-views {
    position: absolute !important;
    top: 30px !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    overflow: hidden !important;
}
.mock-view {
    position: absolute !important; inset: 0 !important;
    display: flex !important; flex-direction: column !important;
    background: #0a0a14 !important;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.mock-view-active { transform: translateX(0) !important; }
.mock-view-prev   { transform: translateX(-100%) !important; }

.mock-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}
.mock-scroll::-webkit-scrollbar { display: none; }

.mock-mod-list {
    max-height: 240px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 6px;
    scrollbar-width: none;
    scroll-behavior: auto;
}
.mock-mod-list::-webkit-scrollbar { display: none; }
.mock-loading {
    text-align: center;
    padding: 16px;
    color: #555;
    font-size: 8px;
}
.mock-hint {
    text-align: center;
    color: #4a4a55;
    font-size: 6.5px;
    padding: 6px 10px 16px;
    letter-spacing: 0.3px;
}
.mock-mod { cursor: pointer; transition: background 0.15s; }
.mock-mod:active { background: #22223a !important; }
.mock-chip { cursor: pointer; transition: all 0.15s; }
.mock-chip:active { transform: scale(0.95); }

/* ===== DETAIL VIEW ===== */
.mock-detail-header {
    display: flex !important;
    align-items: center !important;
    padding: 8px 10px !important;
    background: linear-gradient(135deg, #1a1a2a, #15151F) !important;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.mock-back {
    color: white;
    font-size: 16px;
    width: 24px;
    cursor: pointer;
    transition: transform 0.15s;
}
.mock-back:active { transform: translateX(-3px); }
.mock-detail-title {
    flex: 1;
    color: white;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
}
.mock-detail-menu { color: white; font-size: 14px; width: 24px; text-align: right; }

.mock-detail-hero {
    display: flex !important;
    gap: 10px;
    padding: 14px 10px;
    align-items: flex-start;
}
.mock-detail-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: 'Black Ops One', cursive;
    font-size: 22px;
    flex-shrink: 0;
    overflow: hidden;
}
.mock-detail-icon img { width: 100%; height: 100%; object-fit: cover; }
.mock-detail-info { flex: 1; min-width: 0; }
.mock-detail-name {
    color: white;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 2px;
}
.mock-detail-dev {
    color: #22D3EE;
    font-size: 8px;
    font-weight: 600;
    margin-bottom: 5px;
}
.mock-detail-badges {
    display: flex !important;
    gap: 4px;
    flex-wrap: wrap;
}
.mock-det-badge {
    font-size: 6.5px;
    padding: 2px 5px;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    letter-spacing: 0.3px;
}
.mock-det-badge.free { background: linear-gradient(135deg, #10B981, #84CC16); }
.mock-det-badge.vip  { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.mock-det-badge.new  { background: linear-gradient(135deg, #EF4444, #F97316); }

.mock-detail-stats {
    display: flex !important;
    margin: 0 10px;
    padding: 8px 4px;
    background: #15151F;
    border-radius: 8px;
    border: 0.5px solid #2A2A44;
}
.mock-detail-stats > div {
    flex: 1;
    text-align: center;
    color: #707080;
    font-size: 7px;
}
.mock-detail-stats b {
    display: block;
    color: white;
    font-size: 10px;
    margin-bottom: 1px;
}
.mock-install-btn {
    margin: 10px;
    background: linear-gradient(135deg, #2563EB, #22D3EE);
    color: white;
    border: none;
    width: calc(100% - 20px);
    padding: 8px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: bold;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.15s;
}
.mock-install-btn:active { transform: scale(0.97); }
.mock-detail-section {
    color: white;
    font-size: 8px;
    font-weight: bold;
    margin: 12px 10px 4px;
    padding: 6px 8px;
    background: linear-gradient(90deg, #22D3EE 0%, transparent 4px) #15151F;
    border-radius: 6px 6px 0 0;
    border: 0.5px solid #2A2A44;
    border-bottom: none;
    letter-spacing: 0.5px;
}
.mock-detail-desc, .mock-detail-features {
    margin: 0 10px;
    padding: 8px;
    background: #10101A;
    border: 0.5px solid #2A2A44;
    border-radius: 0 0 6px 6px;
    color: #C0C0D0;
    font-size: 7.5px;
    line-height: 1.5;
}
.mock-detail-features {
    margin-bottom: 12px;
}
.mock-feat {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 3px;
}
.mock-feat-check { color: #22D3EE; font-weight: bold; }
.phone-notch {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 22px; background: #000;
    border-radius: 14px; z-index: 2;
}
.phone-status {
    position: absolute; top: 16px; right: 28px;
    font-size: 10px; color: #aaa;
}
.qr-box {
    background: var(--bg-card); border: 1px solid var(--stroke);
    border-radius: 14px; padding: 14px; text-align: center;
}
#qr-code {
    width: 130px; height: 130px; background: white;
    padding: 8px; border-radius: 8px;
}
#qr-code img, #qr-code canvas { width: 100%; height: 100%; }
.qr-label {
    font-size: 10px; color: var(--text-sec);
    margin-top: 8px; letter-spacing: 1px; font-weight: 600;
}

/* SECTIONS */
section { max-width: 1300px; margin: 0 auto; padding: 80px 40px; }
.section-title {
    font-family: 'Black Ops One', cursive;
    font-size: 36px; text-align: center;
    margin-bottom: 8px; letter-spacing: 1px;
}
.section-sub {
    text-align: center; color: var(--text-sec);
    margin-bottom: 50px; font-size: 14px;
}

/* MODDERS */
.modders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.modder-card {
    background: var(--bg-card); border: 1px solid var(--stroke);
    border-radius: 16px; padding: 24px;
    text-align: center; text-decoration: none; color: var(--text);
    transition: all 0.3s;
}
.modder-card:hover {
    transform: translateY(-6px); border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.modder-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Black Ops One', cursive;
    color: white; font-size: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px currentColor;
    position: relative;
}
.modder-avatar-img { padding: 0; }
.modder-avatar-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.modder-name {
    font-family: 'Black Ops One', cursive;
    font-size: 16px; letter-spacing: 1px; margin-bottom: 4px;
}
.modder-role { font-size: 11px; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
.modder-spec { font-size: 10px; color: var(--text-mute); }

/* MODS — Play Store style */
.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.mod-card {
    background: var(--bg-card);
    border: 1px solid var(--stroke);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    cursor: pointer;
}
.mod-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 32px var(--mod-glow, rgba(34,211,238,0.3));
    border-color: var(--accent);
}
.mod-rank {
    position: absolute; top: 14px; left: 14px;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: white; font-family: 'Black Ops One', cursive;
    font-size: 13px; width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(245,158,11,0.5);
    z-index: 4;
    border: 2px solid #0a0a14;
}

/* Chips de suporte (x64/x32/Zygisk/Mod APK) — abaixo do rank */
.mod-support {
    position: absolute;
    top: 54px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    z-index: 4;
    max-width: calc(100% - 28px);
}
.support-chip {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 3px 7px;
    border-radius: 5px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 2px 8px rgba(0,0,0,0.45);
    line-height: 1.1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.support-chip.arch64  { background: linear-gradient(135deg, #10B981, #059669); }
.support-chip.arch32  { background: linear-gradient(135deg, #F97316, #C2410C); }
.support-chip.zygisk  { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.support-chip.apkmod  { background: linear-gradient(135deg, #2563EB, #1D4ED8); }

/* Fallback elegante: mods sem screenshot (ex CrisisX) — icone grande + bg borrado */
.mod-banner.has-iconfallback {
    background: #0a0a14;
    position: relative;
    overflow: hidden;
}
.mod-banner.has-iconfallback::before { display: none; }
.mod-banner-blurbg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(28px) saturate(1.4) brightness(0.55);
    transform: scale(1.15);
    z-index: 0;
}
.mod-banner-iconcenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border-radius: 18px;
    object-fit: cover;
    z-index: 3;
    box-shadow:
        0 12px 32px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.08),
        0 0 24px rgba(34,211,238,0.18);
}
.mod-banner {
    height: 130px;
    background: var(--mod-gradient, linear-gradient(135deg, #2563EB, #7C3AED, #EC4899));
    position: relative;
    overflow: hidden;
}
.mod-banner::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.mod-banner-letter {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Black Ops One', cursive;
    font-size: 80px;
    color: rgba(255,255,255,0.18);
    text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

/* Carrossel de screenshots no banner */
.mod-banner.has-slides {
    background: #0a0a14;
}
.mod-banner.has-slides::before {
    display: none;
}
.mod-banner-slides {
    position: absolute;
    inset: 0;
}
.mod-banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 800ms ease, transform 4500ms ease;
    pointer-events: none;
}
.mod-banner-slide.active {
    opacity: 1;
    transform: scale(1);
}
.mod-banner-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(10,10,20,0.55) 100%),
        linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
    z-index: 2;
}
.mod-banner-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
    pointer-events: none;
}
.mod-banner-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: background 250ms ease, width 250ms ease;
}
.mod-banner-dots .dot.active {
    background: #22D3EE;
    width: 16px;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(34,211,238,0.6);
}
.mod-badges {
    position: absolute; top: 14px; right: 14px;
    display: flex; gap: 6px; z-index: 3;
}
.mod-badge {
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.mod-badge.free { background: linear-gradient(135deg, #10B981, #84CC16); }
.mod-badge.vip  { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.mod-badge.new  { background: linear-gradient(135deg, #EF4444, #F97316); }

.mod-bottom {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    padding: 0 16px;
    margin-top: -32px;
    position: relative;
    z-index: 2;
}
.mod-icon-card {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--bg-card-2);
    border: 3px solid var(--bg-card);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mod-icon-card img {
    width: 100%; height: 100%; object-fit: cover;
}
.mod-icon-fallback {
    width: 100%; height: 100%;
    background: var(--mod-gradient, linear-gradient(135deg, #2563EB, #7C3AED));
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: 'Black Ops One', cursive; font-size: 26px;
}
.mod-body { padding: 14px 16px 16px; }
.mod-name {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 4px;
    color: var(--text);
}
.mod-dev {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.mod-genre {
    color: var(--text-mute);
    font-size: 11px;
    margin-bottom: 12px;
}
.mod-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-sec);
    border-top: 1px solid var(--stroke);
    padding-top: 10px;
}
.mod-stats span {
    display: flex; align-items: center; gap: 5px;
    font-weight: 600;
}
.mod-stats span.dl { color: #22D3EE; }
.mod-stats span.lk { color: #FF4D4D; }
.loading {
    grid-column: 1 / -1; text-align: center;
    color: var(--text-mute); padding: 40px;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.feature {
    background: var(--bg-card); border: 1px solid var(--stroke);
    border-radius: 16px; padding: 28px;
    transition: transform 0.3s;
}
.feature:hover { transform: translateY(-4px); }
.feat-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 16px;
}
.feature h3 { font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.feature p { color: var(--text-sec); font-size: 13px; }
.feature b { color: var(--text); }

/* COMMUNITY */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.community-card {
    background: var(--bg-card); border: 1px solid var(--stroke);
    border-radius: 16px; padding: 28px;
    text-align: center; text-decoration: none; color: var(--text);
    transition: all 0.3s;
}
.community-card.discord:hover { border-color: #5865F2; box-shadow: 0 12px 40px rgba(88,101,242,0.3); }
.community-card.telegram:hover { border-color: #22D3EE; box-shadow: 0 12px 40px rgba(34,211,238,0.3); }
.community-card.whatsapp:hover { border-color: #22C55E; box-shadow: 0 12px 40px rgba(34,197,94,0.3); }
.community-card.youtube:hover { border-color: #EF4444; box-shadow: 0 12px 40px rgba(239,68,68,0.3); }
.community-card:hover { transform: translateY(-6px); }
.community-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    transition: transform 220ms ease, background 220ms ease;
}
.community-icon svg {
    width: 38px;
    height: 38px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.community-card:hover .community-icon { transform: scale(1.08); }
.community-card.discord:hover  .community-icon { background: rgba(88,101,242,0.12); }
.community-card.telegram:hover .community-icon { background: rgba(34,158,217,0.12); }
.community-card.whatsapp:hover .community-icon { background: rgba(37,211,102,0.12); }
.community-card.youtube:hover  .community-icon { background: rgba(255,0,51,0.12); }
.community-name {
    font-family: 'Black Ops One', cursive;
    font-size: 17px; letter-spacing: 1px; margin-bottom: 6px;
}
.community-desc { color: var(--text-mute); font-size: 12px; }

/* FOOTER */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--stroke);
    padding: 40px 0 0; margin-top: 40px;
}
.footer-content {
    max-width: 1300px; margin: 0 auto;
    padding: 0 40px 30px;
    display: grid; grid-template-columns: 1fr 2fr; gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-disclaimer {
    color: var(--text-mute); font-size: 11px;
    line-height: 1.7; align-self: center;
}
.footer-bottom {
    text-align: center; padding: 18px 40px;
    border-top: 1px solid var(--stroke);
    color: var(--text-mute); font-size: 11px;
}

/* ============================================
   RESPONSIVE — 6 BREAKPOINTS
   📱 mobile-sm   < 480px
   📱 mobile      481-768px
   📊 tablet      769-1024px
   💻 desktop    1025-1440px  (default)
   🖥  wide       1441-1920px
   📺 tv / 4K    > 1920px
   ============================================ */

/* ========== 📱 MOBILE PEQUENO (até 480px) ========== */
@media (max-width: 480px) {
    .nav { padding: 12px 14px; }
    .nav-links { display: none; }
    .brand-title { font-size: 14px; }
    .brand-sub { font-size: 9px; }
    .logo-circle { width: 36px; height: 36px; font-size: 14px; }

    .hero {
        grid-template-columns: 1fr;
        padding: 24px 16px 40px;
        text-align: center;
        gap: 24px;
    }
    .badge { font-size: 9px; padding: 5px 10px; }
    .hero h1 { font-size: 32px; line-height: 1.05; }
    .hero-sub { font-size: 13px; }
    .cta-row { flex-direction: column; gap: 10px; }
    .cta-primary, .cta-secondary { width: 100%; padding: 12px 16px; }
    .cta-icon { font-size: 22px; }
    .cta-label { font-size: 12px; }
    .cta-sub { font-size: 10px; }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; padding: 14px;
    }
    .stat-num { font-size: 22px; }
    .stat-label { font-size: 8px; }
    .hero-side { order: -1; flex-direction: column; gap: 14px; }
    .phone-mock {
        width: 200px; height: 420px;
        border-radius: 28px; border-width: 3px;
    }
    .phone-screen { border-radius: 22px; }
    .qr-box { padding: 10px; }
    #qr-code { width: 100px; height: 100px; }

    section { padding: 40px 16px; }
    .section-title { font-size: 24px; }
    .section-sub { font-size: 12px; margin-bottom: 32px; }

    .modders-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .modder-card { padding: 16px; }
    .modder-avatar { width: 48px; height: 48px; font-size: 20px; margin-bottom: 10px; }
    .modder-name { font-size: 13px; }
    .modder-role { font-size: 10px; }
    .modder-spec { font-size: 9px; }

    .mods-grid { grid-template-columns: 1fr; gap: 14px; }
    .mod-rank { width: 28px; height: 28px; font-size: 11px; top: 10px; left: 10px; }
    .mod-banner { height: 110px; }
    .mod-banner-letter { font-size: 64px; }
    .mod-icon-card { width: 56px; height: 56px; border-width: 2px; border-radius: 14px; }
    .mod-bottom { gap: 10px; padding: 0 14px; margin-top: -28px; }
    .mod-name { font-size: 15px; }

    .features-grid { grid-template-columns: 1fr; gap: 14px; }
    .feature { padding: 22px; }
    .feature h3 { font-size: 16px; }
    .feature p { font-size: 12px; }
    .feat-icon { width: 48px; height: 48px; font-size: 24px; }

    .community-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .community-card { padding: 20px 14px; }
    .community-icon { width: 48px; height: 48px; }
    .community-icon svg { width: 30px; height: 30px; }
    .community-name { font-size: 14px; }
    .community-desc { font-size: 11px; }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 16px 24px;
        gap: 20px; text-align: center;
    }
    .footer-brand { justify-content: center; }
    .footer-bottom { padding: 14px 16px; font-size: 10px; }
}

/* ========== 📱 MOBILE PADRÃO (481-768px) ========== */
@media (min-width: 481px) and (max-width: 768px) {
    .nav { padding: 14px 20px; }
    .nav-links { display: none; }

    .hero {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        text-align: center;
    }
    .hero h1 { font-size: 42px; }
    .hero-sub { font-size: 14px; }
    .cta-row { justify-content: center; flex-wrap: wrap; }
    .hero-stats { grid-template-columns: repeat(4, 1fr); }
    .hero-side { order: -1; flex-direction: row; gap: 20px; justify-content: center; }
    .phone-mock { width: 220px; height: 460px; }

    section { padding: 60px 24px; }
    .section-title { font-size: 30px; }

    .modders-grid { grid-template-columns: repeat(3, 1fr); }
    .mods-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .community-grid { grid-template-columns: repeat(2, 1fr); }

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

/* ========== 📊 TABLET (769-1024px) ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav { padding: 18px 28px; }
    .nav-links { gap: 22px; }
    .nav-links a { font-size: 13px; }

    .hero {
        padding: 50px 28px 70px;
        gap: 32px;
    }
    .hero h1 { font-size: 48px; }
    .hero-sub { font-size: 15px; }
    .phone-mock { width: 240px; height: 500px; }
    .hero-stats { padding: 18px; }
    .stat-num { font-size: 26px; }

    section { padding: 70px 28px; }
    .section-title { font-size: 32px; }

    .modders-grid { grid-template-columns: repeat(5, 1fr); }
    .mods-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .community-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ========== 💻 DESKTOP PADRÃO (1025-1440px) — default, sem media query ========== */

/* ========== 🖥 WIDE / DESKTOP GRANDE (1441-1920px) ========== */
@media (min-width: 1441px) and (max-width: 1920px) {
    .nav { padding: 22px 48px; max-width: 1500px; margin: 0 auto; }
    section { max-width: 1500px; padding: 90px 48px; }
    .hero { max-width: 1500px; padding: 70px 48px 90px; }
    .hero h1 { font-size: 64px; }
    .hero-sub { font-size: 18px; max-width: 600px; }
    .section-title { font-size: 42px; }
    .section-sub { font-size: 15px; }

    .phone-mock { width: 280px; height: 580px; }

    .modders-grid { grid-template-columns: repeat(5, 1fr); gap: 24px; }
    .mods-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .features-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .community-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }

    .footer-content { max-width: 1500px; padding: 0 48px 40px; }
}

/* ========== 📺 TV / 4K (acima de 1920px) ========== */
@media (min-width: 1921px) {
    html { font-size: 18px; }
    .nav { padding: 30px 60px; max-width: 1800px; margin: 0 auto; }
    .nav-links { gap: 36px; }
    .nav-links a { font-size: 16px; }
    .brand-title { font-size: 22px; }
    .brand-sub { font-size: 13px; }
    .logo-circle { width: 52px; height: 52px; font-size: 20px; }

    section { max-width: 1800px; padding: 120px 60px; }
    .hero {
        max-width: 1800px;
        padding: 100px 60px 120px;
        gap: 60px;
    }
    .hero h1 { font-size: 80px; line-height: 1.05; }
    .hero-sub { font-size: 22px; max-width: 700px; }
    .badge { font-size: 14px; padding: 8px 18px; }
    .cta-primary, .cta-secondary { padding: 20px 30px; }
    .cta-icon { font-size: 34px; }
    .cta-label { font-size: 18px; }
    .cta-sub { font-size: 14px; }
    .hero-stats { padding: 28px; gap: 20px; }
    .stat-num { font-size: 40px; }
    .stat-label { font-size: 13px; }

    .phone-mock { width: 340px; height: 700px; border-width: 5px; }

    .section-title { font-size: 52px; }
    .section-sub { font-size: 18px; margin-bottom: 60px; }

    .modders-grid { grid-template-columns: repeat(5, 1fr); gap: 30px; }
    .modder-card { padding: 32px; }
    .modder-avatar { width: 80px; height: 80px; font-size: 30px; }
    .modder-name { font-size: 20px; }
    .modder-role { font-size: 14px; }
    .modder-spec { font-size: 12px; }

    .mods-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .mod-banner { height: 170px; }
    .mod-banner-letter { font-size: 110px; }
    .mod-icon-card { width: 84px; height: 84px; border-radius: 20px; }
    .mod-bottom { gap: 18px; padding: 0 22px; margin-top: -42px; }
    .mod-name { font-size: 20px; }
    .mod-dev { font-size: 14px; }
    .mod-genre { font-size: 13px; }
    .mod-stats { font-size: 14px; gap: 20px; padding-top: 14px; }

    .features-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .feature { padding: 36px; }
    .feature h3 { font-size: 22px; }
    .feature p { font-size: 16px; }
    .feat-icon { width: 70px; height: 70px; font-size: 36px; border-radius: 18px; }

    .community-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
    .community-card { padding: 40px; }
    .community-icon { width: 70px; height: 70px; }
    .community-icon svg { width: 48px; height: 48px; }
    .community-name { font-size: 22px; }
    .community-desc { font-size: 15px; }

    .footer-content { max-width: 1800px; padding: 0 60px 50px; }
    .footer-disclaimer { font-size: 14px; }
    .footer-bottom { font-size: 14px; padding: 24px 60px; }
}

/* ========== ORIENTAÇÃO LANDSCAPE EM MOBILE (rotação horizontal) ========== */
@media (max-width: 900px) and (orientation: landscape) {
    .hero { padding: 20px 24px 40px; }
    .hero h1 { font-size: 30px; }
    .phone-mock { width: 180px; height: 380px; }
}

/* ========== BOTAO MOBILE DE DOWNLOAD NO HEADER ========== */
.mobile-dl-btn {
    display: none; /* oculto por padrao - so aparece em mobile */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #22D3EE);
    color: #fff;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow:
        0 6px 18px rgba(34,211,238,0.5),
        0 0 0 2px rgba(34,211,238,0.15);
    transition: transform 200ms ease, box-shadow 200ms ease;
    flex-shrink: 0;
    position: relative;
    animation: dlPulse 2.2s ease-in-out infinite;
}
.mobile-dl-btn svg {
    width: 22px;
    height: 22px;
    display: block;
}
.mobile-dl-btn:active { transform: scale(0.92); }
.mobile-dl-btn:hover  { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(34,211,238,0.65); }
@keyframes dlPulse {
    0%, 100% { box-shadow: 0 6px 18px rgba(34,211,238,0.5), 0 0 0 0 rgba(34,211,238,0.5); }
    50%      { box-shadow: 0 6px 18px rgba(34,211,238,0.5), 0 0 0 10px rgba(34,211,238,0); }
}

/* Mostra so em telas <= 768px */
@media (max-width: 768px) {
    .mobile-dl-btn {
        display: flex;
    }
}

/* ========== PREFERS REDUCED MOTION (acessibilidade) ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .phone-mock { animation: none !important; }
}
