/* 
 * VMAlbino Contabilidade Digital - Estilos da Seu00e7u00e3o de Aplicativo
 */

.app-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 60%);
    z-index: 1;
}

.app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.app-info {
    flex: 1;
    padding-right: 50px;
}

.app-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.app-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.app-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 30px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.app-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.app-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.app-button.apple {
    background-color: #000;
}

.app-button.android {
    background-color: #3DDC84;
    color: #000;
}

.app-button i {
    font-size: 1.3rem;
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.smartphone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background-color: var(--primary);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.smartphone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--accent-gradient);
    padding: 20px;
    text-align: center;
}

.app-logo {
    max-width: 150px;
    margin: 0 auto;
}

.app-content-mockup {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.app-feature i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 15px;
}

.app-feature-text {
    font-size: 0.9rem;
    color: var(--secondary);
}

/* Responsividade */
@media (max-width: 992px) {
    .app-content {
        flex-direction: column;
    }
    
    .app-info {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .app-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .app-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .smartphone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .app-title {
        font-size: 2rem;
    }
}
