/* Correções para a seção APP em dispositivos móveis */

/* Exibir a imagem do celular em dispositivos móveis */
@media (max-width: 767px) {
    /* Mostrar a imagem do celular que está oculta em mobile */
    #download .d-none.d-md-block.wow.fadeInRight {
        display: block !important;
        visibility: visible !important;
        animation-name: fadeIn !important;
        text-align: center;
        margin-top: 20px;
        min-height: auto !important;
        padding-bottom: 20px;
    }
    
    /* Ajustar o tamanho da imagem do celular para mobile */
    #download .d-none.d-md-block.wow.fadeInRight img {
        height: 150px !important;
        padding-top: 0 !important;
    }
    
    /* Garantir que o texto da seção APP seja visível */
    #download .col-md-6.text-black.wow.fadeIn {
        visibility: visible !important;
        animation-name: fadeIn !important;
    }
    
    /* Adicionar botão de download do APP */
    #download .app-download-button {
        display: block;
        text-align: center;
        margin: 20px auto;
        padding: 12px 20px;
        background-color: #007bff;
        color: white;
        border-radius: 5px;
        font-weight: bold;
        text-decoration: none;
        max-width: 250px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    #download .app-download-button:hover {
        background-color: #0056b3;
    }
    
    /* Ajustar o espaçamento da seção */
    #download {
        padding-top: 70px;
        padding-bottom: 30px;
    }
    
    /* Ajustar o layout para mobile */
    #download .container .row {
        display: flex;
        flex-direction: column;
    }
    
    #download .col-md-6 {
        width: 100%;
        text-align: center;
    }
    
    /* Ajustar o tamanho do texto */
    #download h1 {
        font-size: 24px;
        margin-top: 10px;
    }
    
    #download .lead {
        font-size: 16px !important;
    }
}