/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #a150fb;
    --secondary-color: #0F0C1E;
    --accent-color: #a150fb;
    --text-color: #FFFFFF;
    --text-secondary: #C4C4C4;
    --dark-bg: #0B1124;
    --border-color: #2B2B2B;
    --success-color: #61CE70;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #000000C4 50%, #97979700 100%);
    padding: 15px 0;
    z-index: 1000;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

/* Logo na esquerda */
.logo {
    justify-self: start;
}

.logo img {
    width: 140px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Menu no centro */
.main-nav {
    justify-self: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav .current a {
    color: #a150fb;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav .current a::after {
    width: 100%;
}

/* Espaço vazio na direita */
.header-content > :last-child {
    justify-self: end;
}

/* Botão do menu mobile - ESCOLIDO PELO USUÁRIO */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    max-width: 100%;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    border-radius: 40px;
}

.hero h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
}

.hero h1 span {
    font-weight: 900;
    color: #a150fb;
    text-shadow: 0 2px 10px rgba(161, 80, 251, 0.5);
}

/* Animação para o logo */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Botão limpo */
.hero .btn-primary {
    background-color: #a150fb;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(161, 80, 251, 0.4);
    text-decoration: none;
    display: inline-block;
    border: 2px solid #a150fb;
}

.hero .btn-primary:hover {
    background-color: #8a40e0;
    border-color: #8a40e0;
    box-shadow: 0 5px 20px rgba(161, 80, 251, 0.4);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #8a40e0;
    border-color: #8a40e0;
}

.btn-secondary {
    background-color: #a150fb;
    color: #ffffff;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #a150fb;
    color: #ffffff;
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
}

.btn-icon:hover {
    background-color: var(--primary-color);
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Sections */
section {
    padding: 80px 0;
}

.download-section {
    background-color: var(--dark-bg);
}

.download-section .download-btn {
    margin-top: 30px;
    display: inline-block;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.device-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.device-card:hover {
    transform: translateY(-10px);
    border-color: #a150fb;
    box-shadow: 0 10px 30px rgba(161, 80, 251, 0.2);
}

.device-icon {
    font-size: 48px;
    color: #a150fb;
    margin-bottom: 20px;
}

.device-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.device-card p {
    color: var(--text-secondary);
}

/* Features Section */
.features-section {
    background-color: var(--dark-bg);
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Download Page */
.download-page {
    padding: 150px 0 80px;
}

.download-page h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 10px;
}

.page-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 18px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.download-card:hover {
    transform: translateY(-10px);
    border-color: #a150fb;
    box-shadow: 0 15px 35px rgba(161, 80, 251, 0.2);
}

.download-icon {
    font-size: 64px;
    color: #a150fb;
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.btn-download {
    background-color: #a150fb;
    color: var(--text-color);
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #a150fb;
    transition: all 0.3s;
}

.btn-download:hover {
    background-color: #8a40e0;
    border-color: #8a40e0;
    transform: translateY(-2px);
}

.file-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.file-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.device-list {
    text-align: left;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.device-list p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.device-list i {
    color: var(--success-color);
}

/* Installation Guide */
.installation-guide {
    margin: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
}

.installation-guide h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background-color: #a150fb;
    color: var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-secondary);
}

/* Device Instructions */
.device-instructions {
    margin: 80px 0;
}

.device-instructions h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.instruction-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.instruction-tab {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.instruction-tab:hover,
.instruction-tab.active {
    background-color: #a150fb;
    border-color: #a150fb;
}

.instruction-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    display: none;
}

.instruction-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.instruction-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #a150fb;
}

.instruction-content ol {
    margin-left: 20px;
    color: var(--text-secondary);
}

.instruction-content li {
    margin-bottom: 10px;
    padding-left: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 2px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 90px;
    height: 39px;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #a150fb;
}

.footer-links i {
    color: #a150fb;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-footer {
    background-color: #a150fb;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid var(--primary-color);
    border-color: #a150fb;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-footer:hover {
    background-color: transparent;
    color: #a150fb;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* ============================
   RESPONSIVIDADE PARA SMARTPHONE
   ============================ */

@media (max-width: 1024px) {
    .header-content {
        grid-template-columns: auto 1fr auto;
        gap: 15px;
    }
    
    .main-nav ul {
        gap: 25px;
    }
    
    .logo img {
        width: 120px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-logo {
        width: 150px;
        height: 150px;
    }
    
    .download-page h1 {
        font-size: 36px;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    /* HEADER MOBILE */
    .header {
        background: linear-gradient(180deg, #000000 50%, rgba(0, 0, 0, 0.8) 100%);
        padding: 10px 0;
    }
    
    .header-content {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .logo img {
        width: 100px !important;
        height: auto;
    }
    
    /* BOTÃO DO MENU MOBILE */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(161, 80, 251, 0.1);
        border: 1px solid rgba(161, 80, 251, 0.3);
        border-radius: 8px;
        color: white;
        font-size: 20px;
        cursor: pointer;
        z-index: 1001;
        order: 2;
    }
    
    /* MENU MOBILE - VERSÃO FUNCIONAL */
    .main-nav {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(15, 12, 30, 0.98) !important;
        backdrop-filter: blur(10px);
        padding-top: 80px !important;
        z-index: 999 !important;
        display: none !important;
        overflow-y: auto;
        transition: transform 0.3s ease;
    }
    
    .main-nav.active {
        display: block !important;
    }
    
    .main-nav ul {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100%;
        padding: 0 20px;
    }
    
    .main-nav li {
        width: 100%;
        margin: 5px 0;
        list-style: none;
    }
    
    .main-nav a {
        display: block !important;
        padding: 15px 20px !important;
        text-align: center !important;
        font-size: 18px !important;
        color: white !important;
        background: rgba(161, 80, 251, 0.1);
        border-radius: 8px;
        margin: 5px 0;
        text-decoration: none;
    }
    
    .main-nav a:hover {
        background: rgba(161, 80, 251, 0.2) !important;
        color: #a150fb !important;
    }
    
    .main-nav .current a {
        background: rgba(161, 80, 251, 0.2) !important;
        color: #a150fb !important;
        font-weight: 600;
    }
    
    /* HERO SECTION */
    .hero {
        padding: 100px 0 40px !important;
        min-height: auto !important;
    }
    
    .hero-logo {
        width: 120px !important;
        height: 120px !important;
        margin-bottom: 20px;
    }
    
    .hero h1 {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .hero .btn-primary {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    /* SECTIONS */
    section {
        padding: 60px 0 !important;
    }
    
    /* DOWNLOAD SECTION */
    .download-section .download-btn {
        display: block;
        margin: 20px auto 0 !important;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .grid-2 .image img {
        width: 100%;
        max-width: 300px;
        display: block;
        margin: 0 auto;
    }
    
    /* DEVICES SECTION */
    .devices-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .device-card {
        padding: 20px;
        margin: 0 auto;
        max-width: 300px;
    }
    
    /* FEATURES SECTION */
    .features-section .content h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .features-section .content p {
        text-align: center;
    }
    
    .button-group {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .button-group .btn {
        padding: 10px 15px;
        font-size: 14px;
        min-width: 120px;
    }
    
    /* DOWNLOAD PAGE */
    .download-page {
        padding: 100px 0 40px !important;
    }
    
    .download-page h1 {
        font-size: 28px !important;
    }
    
    .page-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .download-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin: 30px 0;
    }
    
    .download-card {
        padding: 20px;
        margin: 0 auto;
        max-width: 300px;
    }
    
    /* INSTALLATION GUIDE */
    .installation-guide {
        margin: 40px 0;
        padding: 20px;
    }
    
    .installation-guide h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step {
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    /* DEVICE INSTRUCTIONS */
    .device-instructions {
        margin: 40px 0;
    }
    
    .device-instructions h2 {
        font-size: 24px;
    }
    
    .instruction-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .instruction-tab {
        width: 100%;
        padding: 12px;
        text-align: center;
    }
    
    /* FOOTER */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-buttons {
        max-width: 250px;
        margin: 0 auto 20px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
}

/* Para telas muito pequenas (smartphones pequenos) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 22px !important;
    }
    
    .hero-logo {
        width: 100px !important;
        height: 100px !important;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .button-group .btn {
        width: 100%;
        max-width: 200px;
    }
}
/* Classes específicas para centralização em mobile */
@media (max-width: 768px) {
    .mobile-center {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-center-title {
        text-align: center !important;
        margin-bottom: 25px !important;
        width: 100%;
    }
    
    .mobile-center-text {
        text-align: center !important;
        margin-bottom: 20px !important;
        width: 100%;
        max-width: 600px;
    }
    
    .mobile-center-btn {
        display: block !important;
        margin: 20px auto 0 !important;
    }
    
    .mobile-center-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }
}

/* ============================
   ESTILOS PARA OS DOIS BOTÕES ANDROID
   ============================ */

/* Container dos botões */
.android-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
}

/* Botão de download APK (mantém estilo original com algumas melhorias) */
.btn-download.apk-btn {
    background: linear-gradient(135deg, #a150fb 0%, #8a40e0 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    flex: 1;
    min-height: 50px;
    box-shadow: 0 4px 15px rgba(161, 80, 251, 0.3);
}

.btn-download.apk-btn:hover {
    background: linear-gradient(135deg, #8a40e0 0%, #7234c5 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(161, 80, 251, 0.4);
}

.btn-download.apk-btn:active {
    transform: translateY(0);
}

/* Botão da Play Store */
.btn-playstore {
    background: linear-gradient(135deg, #8a40e0 0%, #7234c5 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    flex: 1;
    min-height: 50px;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-playstore:hover {
    background: linear-gradient(135deg, #3367D6 0%, #2a56b8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.btn-playstore:active {
    transform: translateY(0);
}

/* Nota de instalação */
.installation-note {
    margin-top: 15px;
    padding: 12px;
    background: rgba(161, 80, 251, 0.1);
    border-radius: 6px;
    border-left: 4px solid #a150fb;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.installation-note i {
    color: #a150fb;
    margin-right: 8px;
}

.installation-note strong {
    color: #a150fb;
}

/* ============================
   RESPONSIVIDADE PARA OS BOTÕES
   ============================ */

@media (max-width: 768px) {
    /* Em mobile, os botões ficam um abaixo do outro */
    .android-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-download.apk-btn,
    .btn-playstore {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
    }
    
    /* Ajuste para tablets */
    @media (min-width: 481px) and (max-width: 768px) {
        .android-buttons {
            flex-direction: row;
        }
    }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
    .android-buttons {
        gap: 10px;
    }
    
    .btn-download.apk-btn,
    .btn-playstore {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* Para desktop grande */
@media (min-width: 1200px) {
    .android-buttons {
        gap: 15px;
    }
    
    .btn-download.apk-btn,
    .btn-playstore {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* ============================
   apagar daqui para baixo  ao fazer os apps
   ============================ */
/* Classe para desabilitar botões */
.btn.disabled {
    opacity: 0.5;
    background-color: #cccccc !important;
    color: #666666 !important;
    pointer-events: none;
    cursor: not-allowed;
    border-color: #999999 !important;
}

/* Para botões específicos que podem ter cores diferentes */
.btn-download.disabled,
.btn-playstore.disabled {
    background-color: #cccccc !important;
    color: #666666 !important;
    border-color: #999999 !important;
}

/* Para hover em botões desabilitados */
.btn.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    background-color: #cccccc !important;
}

/* ESTILOS ESPECÍFICOS PARA BOTÕES DESABILITADOS */
.btn.disabled,
.btn-download.disabled,
.btn-playstore.disabled,
.apk-btn.disabled {
    opacity: 0.6 !important;
    background: #cccccc !important;
    background-color: #cccccc !important;
    color: #666666 !important;
    border-color: #999999 !important;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none !important;
    background-image: none !important;
}

/* Remover gradientes dos botões desabilitados */
.btn.disabled,
.btn-download.disabled,
.btn-playstore.disabled {
    background: #cccccc !important;
    background-color: #cccccc !important;
}

/* Remover efeitos de hover para botões desabilitados */
.btn.disabled:hover,
.btn-download.disabled:hover,
.btn-playstore.disabled:hover,
.apk-btn.disabled:hover {
    opacity: 0.6 !important;
    background: #cccccc !important;
    background-color: #cccccc !important;
    color: #666666 !important;
    border-color: #999999 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Especificar para os botões Android com mais detalhe */
.android-buttons .btn.disabled,
.android-buttons .btn-download.disabled,
.android-buttons .btn-playstore.disabled,
.android-buttons .apk-btn.disabled {
    opacity: 0.6 !important;
    background: #cccccc !important;
    background-color: #cccccc !important;
    color: #666666 !important;
    border-color: #999999 !important;
    cursor: not-allowed;
    pointer-events: none;
}